dump: [json] pakchunk0
dump: [json] [pak] pakchunk0 dump: [json] [utoc] pakchunk0 track large files with lfs
This commit is contained in:
parent
a0202f19ac
commit
6c5b2d22ac
5983 changed files with 1839706 additions and 0 deletions
19
Engine/Plugins/Online/OnlineBase/OnlineBase.json
Normal file
19
Engine/Plugins/Online/OnlineBase/OnlineBase.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
|
||||
"FriendlyName": "Online Base",
|
||||
"Version": 1,
|
||||
"VersionName": "1.0",
|
||||
"Description": "Shared code online subsystem (OSSv1) and online service (OSSv2) interfaces.",
|
||||
"Category": "Online Platform",
|
||||
"CreatedBy": "Epic Games, Inc.",
|
||||
"CreatedByURL": "https://epicgames.com",
|
||||
"EnabledByDefault": true,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineBase",
|
||||
"Type": "Runtime"
|
||||
}
|
||||
]
|
||||
}
|
36
Engine/Plugins/Online/OnlineServices/OnlineServices.json
Normal file
36
Engine/Plugins/Online/OnlineServices/OnlineServices.json
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
|
||||
"FriendlyName": "Online Services",
|
||||
"Version": 1,
|
||||
"VersionName": "1.0",
|
||||
"Description": "Shared code for interacting with online services implementations.",
|
||||
"Category": "Online Platform",
|
||||
"CreatedBy": "Epic Games, Inc.",
|
||||
"CreatedByURL": "https://epicgames.com",
|
||||
"EnabledByDefault": false,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineServicesInterface",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
},
|
||||
{
|
||||
"Name": "OnlineServicesCommon",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
},
|
||||
{
|
||||
"Name": "OnlineServicesCommonEngineUtils",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "OnlineBase",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
[CommonSettings]
|
||||
SourcePath=Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem
|
||||
DestinationPath=Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem
|
||||
ManifestName=OnlineSubsystem.manifest
|
||||
ArchiveName=OnlineSubsystem.archive
|
||||
PortableObjectName=OnlineSubsystem.po
|
||||
ResourceName=OnlineSubsystem.locres
|
||||
NativeCulture=en
|
||||
CulturesToGenerate=en
|
||||
CulturesToGenerate=fr
|
||||
CulturesToGenerate=de
|
||||
CulturesToGenerate=es
|
||||
CulturesToGenerate=es-419
|
||||
CulturesToGenerate=it
|
||||
CulturesToGenerate=ja
|
||||
CulturesToGenerate=ko
|
||||
CulturesToGenerate=ru
|
||||
CulturesToGenerate=zh-Hans
|
||||
CulturesToGenerate=ar
|
||||
CulturesToGenerate=pl
|
||||
CulturesToGenerate=pt-BR
|
||||
|
||||
[GatherTextStep0]
|
||||
CommandletClass=GatherTextFromSource
|
||||
SearchDirectoryPaths=Plugins/Online/OnlineSubsystem/Source/
|
||||
FileNameFilters=*.cpp
|
||||
FileNameFilters=*.h
|
||||
FileNameFilters=*.c
|
||||
FileNameFilters=*.inl
|
||||
FileNameFilters=*.mm
|
||||
FileNameFilters=*.ini
|
||||
ShouldGatherFromEditorOnlyData=false
|
||||
|
||||
[GatherTextStep1]
|
||||
CommandletClass=GenerateGatherManifest
|
||||
|
||||
[GatherTextStep2]
|
||||
CommandletClass=GenerateGatherArchive
|
||||
|
||||
[GatherTextStep3]
|
||||
CommandletClass=InternationalizationExport
|
||||
bImportLoc=true
|
||||
|
||||
[GatherTextStep4]
|
||||
CommandletClass=GenerateTextLocalizationResource
|
||||
|
||||
[GatherTextStep5]
|
||||
CommandletClass=InternationalizationExport
|
||||
bExportLoc=true
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"NativeCulture": "en",
|
||||
"NativeLocRes": "en/OnlineSubsystem.locres",
|
||||
"CompiledCultures": null
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"OnlineError": {
|
||||
"AccessDenied": "Access denied",
|
||||
"CantParse": "Cannot parse results",
|
||||
"FailExtended": "Extended error",
|
||||
"RequestFailure": "Failed to send request",
|
||||
"IncompatibleVersion": "Incompatible client version",
|
||||
"MissingInterface": "Interface not found",
|
||||
"InvalidCreds": "Invalid credentials",
|
||||
"InvalidParams": "Invalid params specified",
|
||||
"InvalidAuth": "No valid auth",
|
||||
"NotConfigured": "No valid configuration",
|
||||
"NotConnected": "No valid connection",
|
||||
"InvalidUser": "No valid user",
|
||||
"NotImplemented": "Not implemented",
|
||||
"Canceled": "Operation was canceled",
|
||||
"AlreadyPending": "Request already pending",
|
||||
"InvalidResults": "Results were invalid",
|
||||
"TooManyRequests": "Too many requests",
|
||||
"Unknown": "Unknown error"
|
||||
},
|
||||
"OnlinePresence": {
|
||||
"Away": "Away",
|
||||
"Chat": "Chat",
|
||||
"DoNotDisturb": "Do Not Disturb",
|
||||
"ExtendedAway": "Extended Away",
|
||||
"Offline": "Offline",
|
||||
"Online": "Online"
|
||||
}
|
||||
}
|
32
Engine/Plugins/Online/OnlineSubsystem/OnlineSubsystem.json
Normal file
32
Engine/Plugins/Online/OnlineSubsystem/OnlineSubsystem.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
|
||||
"FriendlyName": "Online Subsystem",
|
||||
"Version": 1,
|
||||
"VersionName": "1.0",
|
||||
"Description": "Shared code for interacting online subsystem implementations.",
|
||||
"Category": "Online Platform",
|
||||
"CreatedBy": "Epic Games, Inc.",
|
||||
"CreatedByURL": "https://epicgames.com",
|
||||
"EnabledByDefault": true,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineSubsystem",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
}
|
||||
],
|
||||
"LocalizationTargets": [
|
||||
{
|
||||
"Name": "OnlineSubsystem",
|
||||
"LoadingPolicy": "Always"
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "OnlineBase",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"FileVersion" : 3,
|
||||
|
||||
"FriendlyName" : "Online Subsystem NULL",
|
||||
"Version" : 1,
|
||||
"VersionName" : "1.0",
|
||||
"Description" : "Access to NULL platform",
|
||||
"Category" : "Online Platform",
|
||||
"CreatedBy" : "Epic Games, Inc.",
|
||||
"CreatedByURL" : "https://epicgames.com",
|
||||
"EnabledByDefault" : true,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineSubsystemNull",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase" : "Default"
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "OnlineSubsystem",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "OnlineSubsystemUtils",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
[CommonSettings]
|
||||
SourcePath=Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam
|
||||
DestinationPath=Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam
|
||||
ManifestName=OnlineSubsystemSteam.manifest
|
||||
ArchiveName=OnlineSubsystemSteam.archive
|
||||
PortableObjectName=OnlineSubsystemSteam.po
|
||||
ResourceName=OnlineSubsystemSteam.locres
|
||||
NativeCulture=en
|
||||
CulturesToGenerate=en
|
||||
CulturesToGenerate=fr
|
||||
CulturesToGenerate=de
|
||||
CulturesToGenerate=es
|
||||
CulturesToGenerate=es-419
|
||||
CulturesToGenerate=it
|
||||
CulturesToGenerate=ja
|
||||
CulturesToGenerate=ko
|
||||
CulturesToGenerate=ru
|
||||
CulturesToGenerate=zh-Hans
|
||||
CulturesToGenerate=ar
|
||||
CulturesToGenerate=pl
|
||||
CulturesToGenerate=pt-BR
|
||||
|
||||
[GatherTextStep0]
|
||||
CommandletClass=GatherTextFromSource
|
||||
SearchDirectoryPaths=Plugins/Online/OnlineSubsystemSteam/Source/
|
||||
FileNameFilters=*.cpp
|
||||
FileNameFilters=*.h
|
||||
FileNameFilters=*.c
|
||||
FileNameFilters=*.inl
|
||||
FileNameFilters=*.mm
|
||||
FileNameFilters=*.ini
|
||||
ShouldGatherFromEditorOnlyData=false
|
||||
|
||||
[GatherTextStep1]
|
||||
CommandletClass=GenerateGatherManifest
|
||||
|
||||
[GatherTextStep2]
|
||||
CommandletClass=GenerateGatherArchive
|
||||
|
||||
[GatherTextStep3]
|
||||
CommandletClass=InternationalizationExport
|
||||
bImportLoc=true
|
||||
|
||||
[GatherTextStep4]
|
||||
CommandletClass=GenerateTextLocalizationResource
|
||||
|
||||
[GatherTextStep5]
|
||||
CommandletClass=InternationalizationExport
|
||||
bExportLoc=true
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"NativeCulture": "en",
|
||||
"NativeLocRes": "en/OnlineSubsystemSteam.locres",
|
||||
"CompiledCultures": null
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"NetworkErrors": {
|
||||
"HostClosedConnection": "Host closed the connection."
|
||||
},
|
||||
"OnlineSubsystemSteam": {
|
||||
"OnlineServiceName": "Steam"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"FileVersion" : 3,
|
||||
|
||||
"FriendlyName" : "Online Subsystem Steam",
|
||||
"Version" : 1.1,
|
||||
"VersionName" : "1.1",
|
||||
"Description" : "Access to Steam platform",
|
||||
"Category" : "Online Platform",
|
||||
"CreatedBy" : "Epic Games, Inc.",
|
||||
"CreatedByURL" : "https://epicgames.com",
|
||||
"EnabledByDefault" : false,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineSubsystemSteam",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "Default",
|
||||
"PlatformAllowList" :
|
||||
[
|
||||
"Win64",
|
||||
"Mac",
|
||||
"Linux"
|
||||
]
|
||||
}
|
||||
],
|
||||
"LocalizationTargets": [
|
||||
{
|
||||
"Name": "OnlineSubsystemSteam",
|
||||
"LoadingPolicy": "Always"
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "OnlineSubsystem",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "OnlineSubsystemUtils",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "SteamShared",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
[CommonSettings]
|
||||
SourcePath=Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils
|
||||
DestinationPath=Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils
|
||||
ManifestName=OnlineSubsystemUtils.manifest
|
||||
ArchiveName=OnlineSubsystemUtils.archive
|
||||
PortableObjectName=OnlineSubsystemUtils.po
|
||||
ResourceName=OnlineSubsystemUtils.locres
|
||||
NativeCulture=en
|
||||
CulturesToGenerate=en
|
||||
CulturesToGenerate=fr
|
||||
CulturesToGenerate=de
|
||||
CulturesToGenerate=es
|
||||
CulturesToGenerate=es-419
|
||||
CulturesToGenerate=it
|
||||
CulturesToGenerate=ja
|
||||
CulturesToGenerate=ko
|
||||
CulturesToGenerate=ru
|
||||
CulturesToGenerate=zh-Hans
|
||||
CulturesToGenerate=ar
|
||||
CulturesToGenerate=pl
|
||||
CulturesToGenerate=pt-BR
|
||||
|
||||
[GatherTextStep0]
|
||||
CommandletClass=GatherTextFromSource
|
||||
SearchDirectoryPaths=Plugins/Online/OnlineSubsystemUtils/Source/
|
||||
FileNameFilters=*.cpp
|
||||
FileNameFilters=*.h
|
||||
FileNameFilters=*.c
|
||||
FileNameFilters=*.inl
|
||||
FileNameFilters=*.mm
|
||||
FileNameFilters=*.ini
|
||||
ShouldGatherFromEditorOnlyData=false
|
||||
|
||||
[GatherTextStep1]
|
||||
CommandletClass=GenerateGatherManifest
|
||||
|
||||
[GatherTextStep2]
|
||||
CommandletClass=GenerateGatherArchive
|
||||
|
||||
[GatherTextStep3]
|
||||
CommandletClass=InternationalizationExport
|
||||
bImportLoc=true
|
||||
|
||||
[GatherTextStep4]
|
||||
CommandletClass=GenerateTextLocalizationResource
|
||||
|
||||
[GatherTextStep5]
|
||||
CommandletClass=InternationalizationExport
|
||||
bExportLoc=true
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"NativeCulture": "en",
|
||||
"NativeLocRes": "en/OnlineSubsystemUtils.locres",
|
||||
"CompiledCultures": null
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"EPartyReservationResult": {
|
||||
"Accepted": "Accepted",
|
||||
"InvalidReservation": "Bad reservation request",
|
||||
"DuplicateReservation": "Duplicate reservation detected",
|
||||
"FullGame": "Game full",
|
||||
"ReservationNotFound": "No Reservation",
|
||||
"NoResponse": "No response",
|
||||
"DeniedResponse": "Not accepting connections",
|
||||
"ContainsExistingPlayers": "Party members already in session",
|
||||
"BannedResponse": "Player Banned",
|
||||
"GeneralError": "Unknown Error"
|
||||
},
|
||||
"K2Node": {
|
||||
"FlushLeaderboards": "Flush Leaderboards",
|
||||
"K2Node_LeaderboardFlush_Tooltip": "Flushes leaderboards for a session",
|
||||
"LeaderboardFlushCategory": "Online|Leaderboard"
|
||||
},
|
||||
"NetworkErrors": {
|
||||
"GenericBeaconConnectionFailed": "Beacon Connection Failed.",
|
||||
"BeaconSpawnFailureError": "Join failure, Couldn't spawn beacon.",
|
||||
"BeaconSpawnClientWorldPackageNameError": "Join failure, existing ClientWorldPackageName.",
|
||||
"BeaconSpawnExistingActorError": "Join failure, existing beacon actor.",
|
||||
"BeaconSpawnNetGUIDAckError2": "Join failure, no actor at NetGUIDAck.",
|
||||
"BeaconSpawnNetGUIDAckError1": "Join failure, no host object at NetGUIDAck.",
|
||||
"BeaconSpawnUnexpectedError": "Join failure, unexpected control message."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"FileVersion" : 3,
|
||||
|
||||
"FriendlyName" : "Online Subsystem Utils",
|
||||
"Version" : 1,
|
||||
"VersionName" : "1.0",
|
||||
"Description" : "Shared code for interacting online service and online subsystem implementations.",
|
||||
"Category" : "Online Platform",
|
||||
"CreatedBy" : "Epic Games, Inc.",
|
||||
"CreatedByURL" : "https://epicgames.com",
|
||||
"EnabledByDefault" : true,
|
||||
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "OnlineSubsystemUtils",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
},
|
||||
{
|
||||
"Name": "OnlineBlueprintSupport",
|
||||
"Type": "UncookedOnly",
|
||||
"LoadingPhase": "PostConfigInit"
|
||||
}
|
||||
],
|
||||
"LocalizationTargets":
|
||||
[
|
||||
{
|
||||
"Name": "OnlineSubsystemUtils",
|
||||
"LoadingPolicy": "Always"
|
||||
}
|
||||
],
|
||||
"Plugins":
|
||||
[
|
||||
{
|
||||
"Name": "OnlineSubsystem",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "OnlineServices",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue