@rlsdk/steam 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/classes/AkAudio.ts +1 -12
- package/classes/Core.ts +65 -34
- package/classes/Engine.ts +4 -2
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +1 -11
- package/classes/OnlineSubsystemEOS.ts +114 -74
- package/classes/OnlineSubsystemSteamworks.ts +1 -9
- package/classes/ProjectX.ts +241 -96
- package/classes/TAGame.ts +3516 -2322
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +56 -0
- package/enums/Engine.ts +4 -2
- package/enums/TAGame.ts +66 -7
- package/offsets/Core.ts +53 -34
- package/offsets/OnlineSubsystemEOS.ts +86 -48
- package/offsets/ProjectX.ts +227 -101
- package/offsets/TAGame.ts +3318 -2296
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +84 -27
- package/parameters/Engine.ts +24 -30
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +168 -21
- package/parameters/ProjectX.ts +505 -263
- package/parameters/TAGame.ts +4742 -1449
- package/structs/Core.ts +1 -7
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +26 -34
- package/structs/TAGame.ts +300 -54
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ This SDK was generated for a specific version of Rocket League (Steam). Game upd
|
|
|
159
159
|
- Class sizes
|
|
160
160
|
- New/removed properties
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
When the game updates, use the release that matches your client build.
|
|
163
163
|
|
|
164
164
|
## License
|
|
165
165
|
|
package/classes/AkAudio.ts
CHANGED
|
@@ -17,18 +17,7 @@ import type {
|
|
|
17
17
|
EPinnedAxisType,
|
|
18
18
|
EReflectionSendType,
|
|
19
19
|
} from '../enums/AkAudio';
|
|
20
|
-
import type {
|
|
21
|
-
FActiveSound,
|
|
22
|
-
FAkActorEnvironment,
|
|
23
|
-
FAkEnvironment,
|
|
24
|
-
FAkEventTrackKey,
|
|
25
|
-
FAkParamSet,
|
|
26
|
-
FAkRevSimFrame,
|
|
27
|
-
FAkRevSimUpdateParams,
|
|
28
|
-
FMusicAnalysisInfo,
|
|
29
|
-
FMusicSyncEvent,
|
|
30
|
-
FSoundBankInfo,
|
|
31
|
-
} from '../structs/AkAudio';
|
|
20
|
+
import type { FActiveSound, FAkActorEnvironment, FAkEnvironment, FAkEventTrackKey, FAkParamSet, FAkRevSimFrame, FAkRevSimUpdateParams, FMusicAnalysisInfo, FMusicSyncEvent, FSoundBankInfo } from '../structs/AkAudio';
|
|
32
21
|
import type { FInterpCurveFloat, FLinearColor, FMatrix, FPointer, FRotator, FVector } from '../structs/Core';
|
|
33
22
|
import type { UDebugDrawer, UObject, UStringMap, USubsystem } from './Core';
|
|
34
23
|
import type {
|
package/classes/Core.ts
CHANGED
|
@@ -412,6 +412,20 @@ export type UObject = {
|
|
|
412
412
|
// static Rand(Max: number): number
|
|
413
413
|
// static FromHexColor(Hex: string): FColor
|
|
414
414
|
// static FromHex(Hex: string): number
|
|
415
|
+
// static SQWordMin(): void
|
|
416
|
+
// static SQWordMax(): void
|
|
417
|
+
// static SubtractEqual_SQWordSQWord(): void
|
|
418
|
+
// static AddEqual_SQWordSQWord(): void
|
|
419
|
+
// static NotEqual_SQWordSQWord(): boolean
|
|
420
|
+
// static EqualEqual_SQWordSQWord(): boolean
|
|
421
|
+
// static GreaterEqual_SQWordSQWord(): boolean
|
|
422
|
+
// static LessEqual_SQWordSQWord(): boolean
|
|
423
|
+
// static Greater_SQWordSQWord(): boolean
|
|
424
|
+
// static Less_SQWordSQWord(): boolean
|
|
425
|
+
// static Subtract_SQWordSQWord(): void
|
|
426
|
+
// static Add_SQWordSQWord(): void
|
|
427
|
+
// static Divide_SQWordSQWord(): void
|
|
428
|
+
// static Multiply_SQWordSQWord(): void
|
|
415
429
|
// static QMin(A: bigint, B: bigint): bigint
|
|
416
430
|
// static QMax(A: bigint, B: bigint): bigint
|
|
417
431
|
// static QSubtractNoUnderflow(A: bigint, B: bigint): bigint
|
|
@@ -1026,40 +1040,50 @@ export type UFeatureSystem = UObject & {
|
|
|
1026
1040
|
DynamicLogos: boolean; // 0x0074 (0x0004) [bool : 0x4000000]
|
|
1027
1041
|
XETagging: boolean; // 0x0074 (0x0004) [bool : 0x8000000]
|
|
1028
1042
|
PlayMenuV4: boolean; // 0x0074 (0x0004) [bool : 0x10000000]
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1043
|
+
QuickChatTimeStamp: boolean; // 0x0074 (0x0004) [bool : 0x20000000]
|
|
1044
|
+
SoccarPong: boolean; // 0x0074 (0x0004) [bool : 0x40000000]
|
|
1045
|
+
OnlineFreeplay: boolean; // 0x0074 (0x0004) [bool : 0x80000000]
|
|
1046
|
+
MatchmakingSubRegion: boolean; // 0x0078 (0x0004) [bool : 0x2]
|
|
1047
|
+
CrossbarSFX: boolean; // 0x0078 (0x0004) [bool : 0x4]
|
|
1048
|
+
RugbyIteration: boolean; // 0x0078 (0x0004) [bool : 0x8]
|
|
1049
|
+
ChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x20]
|
|
1050
|
+
PossessionExpanded: boolean; // 0x0078 (0x0004) [bool : 0x40]
|
|
1051
|
+
TargetFind: boolean; // 0x0078 (0x0004) [bool : 0x80]
|
|
1052
|
+
KeepUp: boolean; // 0x0078 (0x0004) [bool : 0x200]
|
|
1053
|
+
RocketPassUpgrades: boolean; // 0x0078 (0x0004) [bool : 0x800]
|
|
1054
|
+
PentathlonTournaments: boolean; // 0x0078 (0x0004) [bool : 0x1000]
|
|
1055
|
+
DemolishUpdates: boolean; // 0x0078 (0x0004) [bool : 0x2000]
|
|
1056
|
+
ViralItem: boolean; // 0x0078 (0x0004) [bool : 0x4000]
|
|
1057
|
+
ThankYouMessage: boolean; // 0x0078 (0x0004) [bool : 0x8000]
|
|
1058
|
+
AttackerDemoFX: boolean; // 0x0078 (0x0004) [bool : 0x10000]
|
|
1059
|
+
NewDriverChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x20000]
|
|
1060
|
+
TextModeration: boolean; // 0x0078 (0x0004) [bool : 0x100000]
|
|
1061
|
+
FilterToggle: boolean; // 0x0078 (0x0004) [bool : 0x200000]
|
|
1062
|
+
DdosPrevention: boolean; // 0x0078 (0x0004) [bool : 0x400000]
|
|
1063
|
+
OunceEnhancements: boolean; // 0x0078 (0x0004) [bool : 0x800000]
|
|
1064
|
+
FastFreeplay: boolean; // 0x0078 (0x0004) [bool : 0x1000000]
|
|
1065
|
+
MatchAdminMutator: boolean; // 0x0078 (0x0004) [bool : 0x2000000]
|
|
1066
|
+
Thistle: boolean; // 0x0078 (0x0004) [bool : 0x4000000]
|
|
1067
|
+
DemoFXMutator: boolean; // 0x0078 (0x0004) [bool : 0x8000000]
|
|
1068
|
+
OffProdHandling: boolean; // 0x0078 (0x0004) [bool : 0x10000000]
|
|
1069
|
+
FlipResetIndicator: boolean; // 0x0078 (0x0004) [bool : 0x40000000]
|
|
1070
|
+
NewsOverhaul: boolean; // 0x0078 (0x0004) [bool : 0x80000000]
|
|
1071
|
+
QueueMenuChanges: boolean; // 0x007c (0x0004) [bool : 0x1]
|
|
1072
|
+
VisibleMMR: boolean; // 0x007c (0x0004) [bool : 0x2]
|
|
1073
|
+
EasyAntiCheat: boolean; // 0x007c (0x0004) [bool : 0x4]
|
|
1074
|
+
OverrideBoostSound: boolean; // 0x007c (0x0004) [bool : 0x8]
|
|
1075
|
+
SettingsExport: boolean; // 0x007c (0x0004) [bool : 0x10]
|
|
1076
|
+
RBActorStatGraphs: boolean; // 0x007c (0x0004) [bool : 0x80]
|
|
1077
|
+
DemoSpawnSelection: boolean; // 0x007c (0x0004) [bool : 0x100]
|
|
1078
|
+
FreeplayTeamColors: boolean; // 0x007c (0x0004) [bool : 0x200]
|
|
1079
|
+
HitboxVisualizer: boolean; // 0x007c (0x0004) [bool : 0x400]
|
|
1080
|
+
StatsAPI: boolean; // 0x007c (0x0004) [bool : 0x800]
|
|
1081
|
+
TrainingAdditions: boolean; // 0x007c (0x0004) [bool : 0x1000]
|
|
1082
|
+
ScorerGoalViewToggle: boolean; // 0x007c (0x0004) [bool : 0x2000]
|
|
1083
|
+
StreamerSafe: boolean; // 0x007c (0x0004) [bool : 0x4000]
|
|
1084
|
+
WorldCup: boolean; // 0x007c (0x0004) [bool : 0x8000]
|
|
1085
|
+
ImprovedPresence: boolean; // 0x007c (0x0004) [bool : 0x40000]
|
|
1086
|
+
AutoSkipGoalReplay: boolean; // 0x007c (0x0004) [bool : 0x80000]
|
|
1063
1087
|
};
|
|
1064
1088
|
|
|
1065
1089
|
/**
|
|
@@ -1340,6 +1364,13 @@ export type URotatorConversions = UObject & {};
|
|
|
1340
1364
|
*/
|
|
1341
1365
|
export type UScriptStruct = UStruct & {};
|
|
1342
1366
|
|
|
1367
|
+
/**
|
|
1368
|
+
* Class Core.SQWordProperty
|
|
1369
|
+
* Size: 0x00C8
|
|
1370
|
+
* Extends: UProperty
|
|
1371
|
+
*/
|
|
1372
|
+
export type USQWordProperty = UProperty & {};
|
|
1373
|
+
|
|
1343
1374
|
/**
|
|
1344
1375
|
* Class Core.StringMap
|
|
1345
1376
|
* Size: 0x00D8
|
package/classes/Engine.ts
CHANGED
|
@@ -3354,6 +3354,7 @@ export type UPrimitiveComponent = UActorComponent & {
|
|
|
3354
3354
|
};
|
|
3355
3355
|
|
|
3356
3356
|
// PrimitiveComponent Functions
|
|
3357
|
+
// SetHighContrastRenderingID(InRenderingID: EHighContrastRenderingID): void
|
|
3357
3358
|
// SetCastShadow(bNewCastShadow: boolean, bNewCastDynamicShadow: boolean): void
|
|
3358
3359
|
// ClosestPointOnComponentToComponent(OtherComponent: UPrimitiveComponent, PointOnComponentA: FVector, PointOnComponentB: FVector): GJKResult
|
|
3359
3360
|
// ClosestPointOnComponentToPoint(POI: FVector, Extent: FVector, OutPointA: FVector, OutPointB: FVector): GJKResult
|
|
@@ -12159,8 +12160,7 @@ export type UMaterialExpressionTextureSampleParameterMeshSubUV = UMaterialExpres
|
|
|
12159
12160
|
* Size: 0x0158
|
|
12160
12161
|
* Extends: UMaterialExpressionTextureSampleParameterMeshSubUV
|
|
12161
12162
|
*/
|
|
12162
|
-
export type UMaterialExpressionTextureSampleParameterMeshSubUVBlend =
|
|
12163
|
-
UMaterialExpressionTextureSampleParameterMeshSubUV & {};
|
|
12163
|
+
export type UMaterialExpressionTextureSampleParameterMeshSubUVBlend = UMaterialExpressionTextureSampleParameterMeshSubUV & {};
|
|
12164
12164
|
|
|
12165
12165
|
/**
|
|
12166
12166
|
* Class Engine.MaterialExpressionTextureSampleParameterMovie
|
|
@@ -15265,6 +15265,7 @@ export type UOnlineSubsystem = UObject & {
|
|
|
15265
15265
|
// SetSessionGameplayMode(GameplayMode: number): void
|
|
15266
15266
|
// PrintDebugInfo(Drawer: UDebugDrawer): void
|
|
15267
15267
|
// static GetOnlinePlatformFromName(PlatformName: string): OnlinePlatform
|
|
15268
|
+
// static GetOSVersionString(): string
|
|
15268
15269
|
// static GetNativePlatformName(): string
|
|
15269
15270
|
// static GetPlatformName(PlatformType: OnlinePlatform): string
|
|
15270
15271
|
// static ReplacePlatformServiceName(ReplString: string): string
|
|
@@ -25484,6 +25485,7 @@ export type UWorldInfo = UZoneInfo & {
|
|
|
25484
25485
|
// static IsPlayInPreview(): boolean
|
|
25485
25486
|
// static IsPlayInEditor(): boolean
|
|
25486
25487
|
// static IsWithGFx(): boolean
|
|
25488
|
+
// static IsSteamDeck(): boolean
|
|
25487
25489
|
// static IsEpicGamesStoreBuild(): boolean
|
|
25488
25490
|
// static GetConsoleTypeName(ConsoleType: EConsoleType): string
|
|
25489
25491
|
// static GetConsoleType(): EConsoleType
|
package/classes/GFxUI.ts
CHANGED
|
@@ -5,39 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { EInputEvent } from '../enums/Core';
|
|
8
|
-
import type {
|
|
9
|
-
EEdition,
|
|
10
|
-
FlashTextureRescale,
|
|
11
|
-
GFxAlign,
|
|
12
|
-
GFxCollectionMode,
|
|
13
|
-
GFxRenderTextureMode,
|
|
14
|
-
GFxScaleMode,
|
|
15
|
-
GFxTimingMode,
|
|
16
|
-
} from '../enums/GFxUI';
|
|
8
|
+
import type { EEdition, FlashTextureRescale, GFxAlign, GFxCollectionMode, GFxRenderTextureMode, GFxScaleMode, GFxTimingMode } from '../enums/GFxUI';
|
|
17
9
|
import type { FMap_Mirror, FMatrix, FPointer } from '../structs/Core';
|
|
18
|
-
import type {
|
|
19
|
-
FASColorTransform,
|
|
20
|
-
FASDisplayInfo,
|
|
21
|
-
FASValue,
|
|
22
|
-
FEventData,
|
|
23
|
-
FExternalTexture,
|
|
24
|
-
FGCReference,
|
|
25
|
-
FGFxWidgetBinding,
|
|
26
|
-
FLoadingMovieMapInfo,
|
|
27
|
-
FSoundThemeBinding,
|
|
28
|
-
} from '../structs/GFxUI';
|
|
10
|
+
import type { FASColorTransform, FASDisplayInfo, FASValue, FEventData, FExternalTexture, FGCReference, FGFxWidgetBinding, FLoadingMovieMapInfo, FSoundThemeBinding } from '../structs/GFxUI';
|
|
29
11
|
import type { UObject } from './Core';
|
|
30
|
-
import type {
|
|
31
|
-
UGameViewportClient,
|
|
32
|
-
UInteraction,
|
|
33
|
-
ULocalPlayer,
|
|
34
|
-
UPlayerController,
|
|
35
|
-
USequenceAction,
|
|
36
|
-
USequenceEvent,
|
|
37
|
-
UTexture,
|
|
38
|
-
UTextureRenderTarget2D,
|
|
39
|
-
UTranslationContext,
|
|
40
|
-
} from './Engine';
|
|
12
|
+
import type { UGameViewportClient, UInteraction, ULocalPlayer, UPlayerController, USequenceAction, USequenceEvent, UTexture, UTextureRenderTarget2D, UTranslationContext } from './Engine';
|
|
41
13
|
|
|
42
14
|
/**
|
|
43
15
|
* Class GFxUI.GFxRawData
|
package/classes/IpDrv.ts
CHANGED
|
@@ -5,17 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { EImageType } from '../enums/Core';
|
|
8
|
-
import type {
|
|
9
|
-
AvatarSize,
|
|
10
|
-
ELanBeaconState,
|
|
11
|
-
ELobbyDistance,
|
|
12
|
-
ELobbyKickReason,
|
|
13
|
-
ELobbyVisibility,
|
|
14
|
-
EOnlineEnumerationReadState,
|
|
15
|
-
EOnlineFileType,
|
|
16
|
-
EOnlineNewsType,
|
|
17
|
-
EPinGrantResult,
|
|
18
|
-
} from '../enums/Engine';
|
|
8
|
+
import type { AvatarSize, ELanBeaconState, ELobbyDistance, ELobbyKickReason, ELobbyVisibility, EOnlineEnumerationReadState, EOnlineFileType, EOnlineNewsType, EPinGrantResult } from '../enums/Engine';
|
|
19
9
|
import type {
|
|
20
10
|
EEventUploadType,
|
|
21
11
|
ELineMode,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type { EInputAPI, EVoiceResultCode, OnlinePlatform } from '../enums/Core';
|
|
7
|
+
import type { EClientActionCode, EClientActionReason, EClientAuthStatus, EClientIntegrityViolation, EInputAPI, EVoiceResultCode, OnlinePlatform } from '../enums/Core';
|
|
8
8
|
import type {
|
|
9
9
|
ECommunicationMethod,
|
|
10
10
|
EFeaturePrivilege,
|
|
@@ -26,14 +26,7 @@ import type {
|
|
|
26
26
|
EPinGrantResult,
|
|
27
27
|
} from '../enums/Engine';
|
|
28
28
|
import type { EPlayerVoiceAgreementStatus, EPlayerVoiceTransitionState } from '../enums/OnlineSubsystemEOS';
|
|
29
|
-
import type {
|
|
30
|
-
FColor,
|
|
31
|
-
FMap_Mirror,
|
|
32
|
-
FPointer,
|
|
33
|
-
FUniqueNetId,
|
|
34
|
-
FVoiceAudioDevice,
|
|
35
|
-
FVoiceRoomMemberStatus,
|
|
36
|
-
} from '../structs/Core';
|
|
29
|
+
import type { FColor, FMap_Mirror, FPointer, FUniqueNetId, FVoiceAudioDevice, FVoiceRoomMemberStatus } from '../structs/Core';
|
|
37
30
|
import type {
|
|
38
31
|
FAchievementDetails,
|
|
39
32
|
FEmsFile,
|
|
@@ -51,23 +44,8 @@ import type {
|
|
|
51
44
|
} from '../structs/Engine';
|
|
52
45
|
import type { FOnlineStatusMappingEOS } from '../structs/OnlineSubsystemEOS';
|
|
53
46
|
import type { UError, UErrorList, UErrorType, UObject } from './Core';
|
|
54
|
-
import type {
|
|
55
|
-
|
|
56
|
-
UOnlineGameSearch,
|
|
57
|
-
UOnlineGameSettings,
|
|
58
|
-
UOnlinePlayerStorage,
|
|
59
|
-
UOnlineProfileSettings,
|
|
60
|
-
UOnlineStatsRead,
|
|
61
|
-
UOnlineStatsWrite,
|
|
62
|
-
USpeechRecognition,
|
|
63
|
-
} from './Engine';
|
|
64
|
-
import type {
|
|
65
|
-
UOnlineAuthInterfaceImpl,
|
|
66
|
-
UOnlineFriendsInterfaceImpl,
|
|
67
|
-
UOnlineGameInterfaceImpl,
|
|
68
|
-
UOnlinePersistentAuthInterfaceImpl,
|
|
69
|
-
UOnlineSubsystemCommonImpl,
|
|
70
|
-
} from './IpDrv';
|
|
47
|
+
import type { UDateTime, UOnlineGameSearch, UOnlineGameSettings, UOnlinePlayerStorage, UOnlineProfileSettings, UOnlineStatsRead, UOnlineStatsWrite, USpeechRecognition } from './Engine';
|
|
48
|
+
import type { UOnlineAuthInterfaceImpl, UOnlineFriendsInterfaceImpl, UOnlineGameInterfaceImpl, UOnlinePersistentAuthInterfaceImpl, UOnlineSubsystemCommonImpl } from './IpDrv';
|
|
71
49
|
|
|
72
50
|
/**
|
|
73
51
|
* Class OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__LinkedAccount_0x1
|
|
@@ -124,6 +102,67 @@ export type UEOSErrors = UErrorList & {
|
|
|
124
102
|
GameClipsUploadLimitReached: UErrorType; // 0x00f0 (0x0008) [UErrorType*]
|
|
125
103
|
};
|
|
126
104
|
|
|
105
|
+
/**
|
|
106
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatInterfaceEOS
|
|
107
|
+
* Size: 0x0088
|
|
108
|
+
* Extends: UObject
|
|
109
|
+
*/
|
|
110
|
+
export type UOnlineAntiCheatInterfaceEOS = UObject & {
|
|
111
|
+
PlatformHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
112
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0068 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
113
|
+
__EventMessageGenerated__Delegate: FScriptDelegate; // 0x0070 (0x0018) [FScriptDelegate]
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
// OnlineAntiCheatInterfaceEOS Functions
|
|
117
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
118
|
+
// EndSession(): boolean
|
|
119
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
120
|
+
// Init(): void
|
|
121
|
+
// EventMessageGenerated(EncodedMessage: string, PlayerID: FUniqueNetId): void
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatClientInterfaceEOS
|
|
125
|
+
* Size: 0x00C8
|
|
126
|
+
* Extends: UOnlineAntiCheatInterfaceEOS
|
|
127
|
+
*/
|
|
128
|
+
export type UOnlineAntiCheatClientInterfaceEOS = UOnlineAntiCheatInterfaceEOS & {
|
|
129
|
+
ClientHandle: FPointer; // 0x0088 (0x0008) [FPointer]
|
|
130
|
+
ReportHandle: FPointer; // 0x0090 (0x0008) [FPointer]
|
|
131
|
+
__EventClientIntegrityViolation__Delegate: FScriptDelegate; // 0x0098 (0x0018) [FScriptDelegate]
|
|
132
|
+
__EventPlayerReportComplete__Delegate: FScriptDelegate; // 0x00b0 (0x0018) [FScriptDelegate]
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
// OnlineAntiCheatClientInterfaceEOS Functions
|
|
136
|
+
// ReportPlayer(ProductUserId: string): void
|
|
137
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
138
|
+
// IsAntiCheatEnabled(): boolean
|
|
139
|
+
// EndSession(): boolean
|
|
140
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
141
|
+
// Init(): void
|
|
142
|
+
// EventPlayerReportComplete(ProductUserId: string, bSuccess: boolean): void
|
|
143
|
+
// EventClientIntegrityViolation(Violation: EClientIntegrityViolation, Message: string): void
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatServerInterfaceEOS
|
|
147
|
+
* Size: 0x00C0
|
|
148
|
+
* Extends: UOnlineAntiCheatInterfaceEOS
|
|
149
|
+
*/
|
|
150
|
+
export type UOnlineAntiCheatServerInterfaceEOS = UOnlineAntiCheatInterfaceEOS & {
|
|
151
|
+
ServerHandle: FPointer; // 0x0088 (0x0008) [FPointer]
|
|
152
|
+
__EventClientActionRequired__Delegate: FScriptDelegate; // 0x0090 (0x0018) [FScriptDelegate]
|
|
153
|
+
__EventClientAuthStatusChanged__Delegate: FScriptDelegate; // 0x00a8 (0x0018) [FScriptDelegate]
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
// OnlineAntiCheatServerInterfaceEOS Functions
|
|
157
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
158
|
+
// UnregisterClient(PlayerID: FUniqueNetId): boolean
|
|
159
|
+
// RegisterClient(PlayerID: FUniqueNetId, ProductUserId: string, bProtected: boolean): boolean
|
|
160
|
+
// EndSession(): boolean
|
|
161
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
162
|
+
// Init(): void
|
|
163
|
+
// EventClientAuthStatusChanged(PlayerID: FUniqueNetId, AuthStatus: EClientAuthStatus): void
|
|
164
|
+
// EventClientActionRequired(PlayerID: FUniqueNetId, ActionCode: EClientActionCode, ActionReason: EClientActionReason, Message: string): void
|
|
165
|
+
|
|
127
166
|
/**
|
|
128
167
|
* Class OnlineSubsystemEOS.OnlineAuthInterfaceEOS
|
|
129
168
|
* Size: 0x03D0
|
|
@@ -613,7 +652,7 @@ export type UOnlineStatsInterfaceEOS = UObject & {
|
|
|
613
652
|
|
|
614
653
|
/**
|
|
615
654
|
* Class OnlineSubsystemEOS.OnlineSubsystemEOS
|
|
616
|
-
* Size:
|
|
655
|
+
* Size: 0x0748
|
|
617
656
|
* Extends: UOnlineSubsystemCommonImpl
|
|
618
657
|
*/
|
|
619
658
|
export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
@@ -626,53 +665,54 @@ export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
|
626
665
|
UserCloudFileInterfaceEOS: UOnlineUserCloudFileInterfaceEOS; // 0x03f0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
627
666
|
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; // 0x03f8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
628
667
|
GameClipsInterfaceEOS: UOnlineGameClipsInterfaceEOS; // 0x0400 (0x0008) [UOnlineGameClipsInterfaceEOS*]
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
668
|
+
AntiCheatInterfaceEOS: UOnlineAntiCheatInterfaceEOS; // 0x0408 (0x0008) [UOnlineAntiCheatInterfaceEOS*]
|
|
669
|
+
SpeechRecognitionCompleteDelegates: FScriptDelegate[]; // 0x0410 (0x0010) [TArray<FScriptDelegate>]
|
|
670
|
+
AuthHandle: FPointer; // 0x0420 (0x0008) [FPointer]
|
|
671
|
+
FriendsHandle: FPointer; // 0x0428 (0x0008) [FPointer]
|
|
672
|
+
UserInfoHandle: FPointer; // 0x0430 (0x0008) [FPointer]
|
|
673
|
+
PresenceHandle: FPointer; // 0x0438 (0x0008) [FPointer]
|
|
674
|
+
ConnectHandle: FPointer; // 0x0440 (0x0008) [FPointer]
|
|
675
|
+
SessionsHandle: FPointer; // 0x0448 (0x0008) [FPointer]
|
|
676
|
+
PDSHandle: FPointer; // 0x0450 (0x0008) [FPointer]
|
|
677
|
+
StatsHandle: FPointer; // 0x0458 (0x0008) [FPointer]
|
|
678
|
+
AchievementsHandle: FPointer; // 0x0460 (0x0008) [FPointer]
|
|
679
|
+
EcomHandle: FPointer; // 0x0468 (0x0008) [FPointer]
|
|
680
|
+
UIHandle: FPointer; // 0x0470 (0x0008) [FPointer]
|
|
681
|
+
RTCHandle: FPointer; // 0x0478 (0x0008) [FPointer]
|
|
682
|
+
RTCAudioHandle: FPointer; // 0x0480 (0x0008) [FPointer]
|
|
683
|
+
RTCAdminHandle: FPointer; // 0x0488 (0x0008) [FPointer]
|
|
684
|
+
GameClipsHandle: FPointer; // 0x0490 (0x0008) [FPointer]
|
|
685
|
+
EULATrackingHandle: FPointer; // 0x0498 (0x0008) [FPointer]
|
|
686
|
+
bLastTickShouldRecordAudioVal: boolean; // 0x04a0 (0x0004) [bool : 0x1]
|
|
687
|
+
UnlockedDLC: FName[]; // 0x04a8 (0x0010) [TArray<FName>]
|
|
688
|
+
UnlockedDLCDelegates: FScriptDelegate[]; // 0x04b8 (0x0010) [TArray<FScriptDelegate>]
|
|
689
|
+
ExternalUIChangeDelegates: FScriptDelegate[]; // 0x04c8 (0x0010) [TArray<FScriptDelegate>]
|
|
690
|
+
__OnMicroTxnResponse__Delegate: FScriptDelegate; // 0x04d8 (0x0018) [FScriptDelegate]
|
|
691
|
+
__EventGetAppPriceInfoComplete__Delegate: FScriptDelegate; // 0x04f0 (0x0018) [FScriptDelegate]
|
|
692
|
+
__OnPlayerTalking__Delegate: FScriptDelegate; // 0x0508 (0x0018) [FScriptDelegate]
|
|
693
|
+
__OnRecognitionComplete__Delegate: FScriptDelegate; // 0x0520 (0x0018) [FScriptDelegate]
|
|
694
|
+
__OnReadOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0538 (0x0018) [FScriptDelegate]
|
|
695
|
+
__OnRegisterHostStatGuidComplete__Delegate: FScriptDelegate; // 0x0550 (0x0018) [FScriptDelegate]
|
|
696
|
+
__OnFlushOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0568 (0x0018) [FScriptDelegate]
|
|
697
|
+
__OnLinkStatusChange__Delegate: FScriptDelegate; // 0x0580 (0x0018) [FScriptDelegate]
|
|
698
|
+
__OnExternalUIChange__Delegate: FScriptDelegate; // 0x0598 (0x0018) [FScriptDelegate]
|
|
699
|
+
__OnControllerChange__Delegate: FScriptDelegate; // 0x05b0 (0x0018) [FScriptDelegate]
|
|
700
|
+
__OnConnectionStatusChange__Delegate: FScriptDelegate; // 0x05c8 (0x0018) [FScriptDelegate]
|
|
701
|
+
__OnStorageDeviceChange__Delegate: FScriptDelegate; // 0x05e0 (0x0018) [FScriptDelegate]
|
|
702
|
+
__OnCreateOnlineAccountCompleted__Delegate: FScriptDelegate; // 0x05f8 (0x0018) [FScriptDelegate]
|
|
703
|
+
__OnPlayerTalkingStateChange__Delegate: FScriptDelegate; // 0x0610 (0x0018) [FScriptDelegate]
|
|
704
|
+
__OnCloseKickPlayerDialog__Delegate: FScriptDelegate; // 0x0628 (0x0018) [FScriptDelegate]
|
|
705
|
+
__OnCommerceDialogClosed__Delegate: FScriptDelegate; // 0x0640 (0x0018) [FScriptDelegate]
|
|
706
|
+
__OnErrorDialogClosed__Delegate: FScriptDelegate; // 0x0658 (0x0018) [FScriptDelegate]
|
|
707
|
+
__OnUnlockedDLCChange__Delegate: FScriptDelegate; // 0x0670 (0x0018) [FScriptDelegate]
|
|
708
|
+
__OnStorePurchaseCompleteDelegate__Delegate: FScriptDelegate; // 0x0688 (0x0018) [FScriptDelegate]
|
|
709
|
+
__OnUserOrphaned__Delegate: FScriptDelegate; // 0x06a0 (0x0018) [FScriptDelegate]
|
|
710
|
+
__OnUserRestored__Delegate: FScriptDelegate; // 0x06b8 (0x0018) [FScriptDelegate]
|
|
711
|
+
__OnPlayerSigningOut__Delegate: FScriptDelegate; // 0x06d0 (0x0018) [FScriptDelegate]
|
|
712
|
+
__EventCryptoKeyCreated__Delegate: FScriptDelegate; // 0x06e8 (0x0018) [FScriptDelegate]
|
|
713
|
+
__EventTextMessageSigned__Delegate: FScriptDelegate; // 0x0700 (0x0018) [FScriptDelegate]
|
|
714
|
+
__EventTextMessageValidated__Delegate: FScriptDelegate; // 0x0718 (0x0018) [FScriptDelegate]
|
|
715
|
+
__OnCaptureAvailabilityChange__Delegate: FScriptDelegate; // 0x0730 (0x0018) [FScriptDelegate]
|
|
676
716
|
};
|
|
677
717
|
|
|
678
718
|
// OnlineSubsystemEOS Functions
|
|
@@ -85,15 +85,7 @@ import type {
|
|
|
85
85
|
UPlayer,
|
|
86
86
|
USpeechRecognition,
|
|
87
87
|
} from './Engine';
|
|
88
|
-
import type {
|
|
89
|
-
UOnlineAuthInterfaceImpl,
|
|
90
|
-
UOnlineGameInterfaceImpl,
|
|
91
|
-
UOnlineLobbyInterfaceImpl,
|
|
92
|
-
UOnlinePurchaseInterfaceImpl,
|
|
93
|
-
UOnlineSubsystemCommonImpl,
|
|
94
|
-
UTcpNetDriver,
|
|
95
|
-
UTcpipConnection,
|
|
96
|
-
} from './IpDrv';
|
|
88
|
+
import type { UOnlineAuthInterfaceImpl, UOnlineGameInterfaceImpl, UOnlineLobbyInterfaceImpl, UOnlinePurchaseInterfaceImpl, UOnlineSubsystemCommonImpl, UTcpNetDriver, UTcpipConnection } from './IpDrv';
|
|
97
89
|
|
|
98
90
|
/**
|
|
99
91
|
* Class OnlineSubsystemSteamworks.IpNetConnectionSteamworks
|