@rlsdk/steam 1.0.1 → 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 +18 -10
- package/classes/Engine.ts +3 -2
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +1 -11
- package/classes/OnlineSubsystemEOS.ts +4 -34
- package/classes/OnlineSubsystemSteamworks.ts +1 -9
- package/classes/ProjectX.ts +91 -67
- package/classes/TAGame.ts +2897 -2209
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +34 -0
- package/enums/Engine.ts +2 -1
- package/enums/TAGame.ts +27 -4
- package/offsets/Core.ts +18 -10
- package/offsets/ProjectX.ts +73 -46
- package/offsets/TAGame.ts +2659 -2140
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +2 -27
- package/parameters/Engine.ts +16 -30
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +7 -29
- package/parameters/ProjectX.ts +317 -274
- package/parameters/TAGame.ts +3260 -1464
- package/structs/Core.ts +1 -7
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +100 -60
package/offsets/globals.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlsdk/steam",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "TypeScript SDK for RocketLeague (Steam) - Auto-generated type definitions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -107,12 +107,13 @@
|
|
|
107
107
|
"license": "MIT",
|
|
108
108
|
"repository": {
|
|
109
109
|
"type": "git",
|
|
110
|
-
"url": "git+https://github.com/ObscuritySRL/rlsdk
|
|
110
|
+
"url": "git+https://github.com/ObscuritySRL/rlsdk.git",
|
|
111
|
+
"directory": "packages/steam"
|
|
111
112
|
},
|
|
112
113
|
"bugs": {
|
|
113
|
-
"url": "https://github.com/ObscuritySRL/rlsdk
|
|
114
|
+
"url": "https://github.com/ObscuritySRL/rlsdk/issues"
|
|
114
115
|
},
|
|
115
|
-
"homepage": "https://github.com/ObscuritySRL/rlsdk
|
|
116
|
+
"homepage": "https://github.com/ObscuritySRL/rlsdk/tree/main/packages/steam#readme",
|
|
116
117
|
"engines": {
|
|
117
118
|
"bun": ">=1.0.0"
|
|
118
119
|
},
|
package/parameters/AkAudio.ts
CHANGED
|
@@ -4,26 +4,10 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAkEnvironments,
|
|
9
|
-
UAkMusicAnalysis,
|
|
10
|
-
UAkRevPhysicsSimulation,
|
|
11
|
-
UAkSoundBanksInfo,
|
|
12
|
-
UAkSoundCue,
|
|
13
|
-
UAkSoundSource,
|
|
14
|
-
USeqEvent_AkMusicCue,
|
|
15
|
-
} from '../classes/AkAudio';
|
|
7
|
+
import type { UAkEnvironments, UAkMusicAnalysis, UAkRevPhysicsSimulation, UAkSoundBanksInfo, UAkSoundCue, UAkSoundSource, USeqEvent_AkMusicCue } from '../classes/AkAudio';
|
|
16
8
|
import type { UDebugDrawer, UObject } from '../classes/Core';
|
|
17
9
|
import type { UActor, ULocalPlayer, USeqAct_Toggle, UWorldInfo } from '../classes/Engine';
|
|
18
|
-
import type {
|
|
19
|
-
EAkDynamicRangeType,
|
|
20
|
-
EAkEnvironmentType,
|
|
21
|
-
EAkListenerSpacialization,
|
|
22
|
-
EAkOutputType,
|
|
23
|
-
EAttenuationType,
|
|
24
|
-
EBusEmitterType,
|
|
25
|
-
EPinnedAxisType,
|
|
26
|
-
} from '../enums/AkAudio';
|
|
10
|
+
import type { EAkDynamicRangeType, EAkEnvironmentType, EAkListenerSpacialization, EAkOutputType, EAttenuationType, EBusEmitterType, EPinnedAxisType } from '../enums/AkAudio';
|
|
27
11
|
import type { FAkEnvironment, FAkRevSimFrame, FAkRevSimUpdateParams, FMusicAnalysisInfo } from '../structs/AkAudio';
|
|
28
12
|
import type { FLinearColor, FRotator, FVector } from '../structs/Core';
|
|
29
13
|
|
package/parameters/Core.ts
CHANGED
|
@@ -4,34 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAsyncTask,
|
|
9
|
-
UDebugDrawer,
|
|
10
|
-
UError,
|
|
11
|
-
UErrorType,
|
|
12
|
-
UInterface,
|
|
13
|
-
UObject,
|
|
14
|
-
UObjectProvider,
|
|
15
|
-
UStringMap,
|
|
16
|
-
USubscription,
|
|
17
|
-
U__AsyncTask__All_0x1,
|
|
18
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UAsyncTask, UDebugDrawer, UError, UErrorType, UInterface, UObject, UObjectProvider, UStringMap, USubscription, U__AsyncTask__All_0x1 } from '../classes/Core';
|
|
19
8
|
import type { EAxis, EDebugBreakType } from '../enums/Core';
|
|
20
|
-
import type {
|
|
21
|
-
FColor,
|
|
22
|
-
FGuid,
|
|
23
|
-
FInterpCurveFloat,
|
|
24
|
-
FInterpCurveVector,
|
|
25
|
-
FInterpCurveVector2D,
|
|
26
|
-
FLinearColor,
|
|
27
|
-
FMatrix,
|
|
28
|
-
FQuat,
|
|
29
|
-
FRotator,
|
|
30
|
-
FRotatorDegrees,
|
|
31
|
-
FRotatorRadians,
|
|
32
|
-
FVector,
|
|
33
|
-
FVector2D,
|
|
34
|
-
} from '../structs/Core';
|
|
9
|
+
import type { FColor, FGuid, FInterpCurveFloat, FInterpCurveVector, FInterpCurveVector2D, FLinearColor, FMatrix, FQuat, FRotator, FRotatorDegrees, FRotatorRadians, FVector, FVector2D } from '../structs/Core';
|
|
35
10
|
|
|
36
11
|
/**
|
|
37
12
|
* Function Core.__AsyncTask__All_0x1.__AsyncTask__All_0x1
|
package/parameters/Engine.ts
CHANGED
|
@@ -4,17 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAsyncTask,
|
|
9
|
-
UComponent,
|
|
10
|
-
UDebugDrawer,
|
|
11
|
-
UError,
|
|
12
|
-
UErrorType,
|
|
13
|
-
UFeatureSystem,
|
|
14
|
-
UInterface,
|
|
15
|
-
UObject,
|
|
16
|
-
UProperty,
|
|
17
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UAsyncTask, UComponent, UDebugDrawer, UError, UErrorType, UFeatureSystem, UInterface, UObject, UProperty } from '../classes/Core';
|
|
18
8
|
import type {
|
|
19
9
|
UAIController,
|
|
20
10
|
UActor,
|
|
@@ -378,25 +368,7 @@ import type {
|
|
|
378
368
|
ParticleSystemLODMethod,
|
|
379
369
|
SaveDataVersionSupport,
|
|
380
370
|
} from '../enums/Engine';
|
|
381
|
-
import type {
|
|
382
|
-
FBoneAtom,
|
|
383
|
-
FBox,
|
|
384
|
-
FColor,
|
|
385
|
-
FCylinder,
|
|
386
|
-
FGuid,
|
|
387
|
-
FInterpCurveFloat,
|
|
388
|
-
FInterpCurveLinearColor,
|
|
389
|
-
FInterpCurveVector,
|
|
390
|
-
FIpAddr,
|
|
391
|
-
FLinearColor,
|
|
392
|
-
FMatrix,
|
|
393
|
-
FQuat,
|
|
394
|
-
FRotator,
|
|
395
|
-
FTPOV,
|
|
396
|
-
FUniqueNetId,
|
|
397
|
-
FVector,
|
|
398
|
-
FVector2D,
|
|
399
|
-
} from '../structs/Core';
|
|
371
|
+
import type { FBoneAtom, FBox, FColor, FCylinder, FGuid, FInterpCurveFloat, FInterpCurveLinearColor, FInterpCurveVector, FIpAddr, FLinearColor, FMatrix, FQuat, FRotator, FTPOV, FUniqueNetId, FVector, FVector2D } from '../structs/Core';
|
|
400
372
|
import type {
|
|
401
373
|
FAchievementDetails,
|
|
402
374
|
FActiveDecalInfo,
|
|
@@ -23592,6 +23564,13 @@ export type OnlineSubsystem_GetOnlinePlatformFromName_Params = {
|
|
|
23592
23564
|
Index: number; // 0x0014 (0x0004) [int32]
|
|
23593
23565
|
};
|
|
23594
23566
|
|
|
23567
|
+
/**
|
|
23568
|
+
* Function Engine.OnlineSubsystem.GetOSVersionString
|
|
23569
|
+
*/
|
|
23570
|
+
export type OnlineSubsystem_GetOSVersionString_Params = {
|
|
23571
|
+
ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23572
|
+
};
|
|
23573
|
+
|
|
23595
23574
|
/**
|
|
23596
23575
|
* Function Engine.OnlineSubsystem.GetPlatformName
|
|
23597
23576
|
*/
|
|
@@ -37771,6 +37750,13 @@ export type WorldInfo_IsRecordingDemo_Params = {
|
|
|
37771
37750
|
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
37772
37751
|
};
|
|
37773
37752
|
|
|
37753
|
+
/**
|
|
37754
|
+
* Function Engine.WorldInfo.IsSteamDeck
|
|
37755
|
+
*/
|
|
37756
|
+
export type WorldInfo_IsSteamDeck_Params = {
|
|
37757
|
+
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
37758
|
+
};
|
|
37759
|
+
|
|
37774
37760
|
/**
|
|
37775
37761
|
* Function Engine.WorldInfo.IsWithGFx
|
|
37776
37762
|
*/
|
package/parameters/GFxUI.ts
CHANGED
|
@@ -5,15 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { UObject } from '../classes/Core';
|
|
8
|
-
import type {
|
|
9
|
-
UEngine,
|
|
10
|
-
UGameViewportClient,
|
|
11
|
-
ULocalPlayer,
|
|
12
|
-
UPlayerController,
|
|
13
|
-
UTexture,
|
|
14
|
-
UTranslationContext,
|
|
15
|
-
UUISoundTheme,
|
|
16
|
-
} from '../classes/Engine';
|
|
8
|
+
import type { UEngine, UGameViewportClient, ULocalPlayer, UPlayerController, UTexture, UTranslationContext, UUISoundTheme } from '../classes/Engine';
|
|
17
9
|
import type { UGFxEvent_FSCommand, UGFxMoviePlayer, UGFxObject, USwfMovie } from '../classes/GFxUI';
|
|
18
10
|
import type { EInputEvent } from '../enums/Core';
|
|
19
11
|
import type { GFxAlign, GFxCollectionMode, GFxScaleMode, GFxTimingMode } from '../enums/GFxUI';
|
package/parameters/IpDrv.ts
CHANGED
|
@@ -43,25 +43,8 @@ import type {
|
|
|
43
43
|
UWebResponse,
|
|
44
44
|
} from '../classes/IpDrv';
|
|
45
45
|
import type { EImageType } from '../enums/Core';
|
|
46
|
-
import type {
|
|
47
|
-
|
|
48
|
-
ELobbyDistance,
|
|
49
|
-
ELobbyKickReason,
|
|
50
|
-
ELobbyVisibility,
|
|
51
|
-
EOnlineEnumerationReadState,
|
|
52
|
-
EOnlineFileType,
|
|
53
|
-
EOnlineNewsType,
|
|
54
|
-
EPinGrantResult,
|
|
55
|
-
} from '../enums/Engine';
|
|
56
|
-
import type {
|
|
57
|
-
EMcpFileCompressionType,
|
|
58
|
-
EMcpGroupAcceptState,
|
|
59
|
-
EMcpMessageCompressionType,
|
|
60
|
-
EMeshBeaconBandwidthTestResult,
|
|
61
|
-
EMeshBeaconBandwidthTestType,
|
|
62
|
-
EMeshBeaconConnectionResult,
|
|
63
|
-
EPartyReservationResult,
|
|
64
|
-
} from '../enums/IpDrv';
|
|
46
|
+
import type { AvatarSize, ELobbyDistance, ELobbyKickReason, ELobbyVisibility, EOnlineEnumerationReadState, EOnlineFileType, EOnlineNewsType, EPinGrantResult } from '../enums/Engine';
|
|
47
|
+
import type { EMcpFileCompressionType, EMcpGroupAcceptState, EMcpMessageCompressionType, EMeshBeaconBandwidthTestResult, EMeshBeaconBandwidthTestType, EMeshBeaconConnectionResult, EPartyReservationResult } from '../enums/IpDrv';
|
|
65
48
|
import type { FIpAddr, FUniqueNetId } from '../structs/Core';
|
|
66
49
|
import type {
|
|
67
50
|
FActiveLobbyInfo,
|
|
@@ -5,30 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { UError, UErrorType } from '../classes/Core';
|
|
8
|
-
import type {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
UOnlineGameSettings,
|
|
12
|
-
UOnlinePlayerStorage,
|
|
13
|
-
UOnlineProfileSettings,
|
|
14
|
-
UOnlineStatsRead,
|
|
15
|
-
UOnlineStatsWrite,
|
|
16
|
-
UOnlineSubsystem,
|
|
17
|
-
USpeechRecognition,
|
|
18
|
-
} from '../classes/Engine';
|
|
19
|
-
import type {
|
|
20
|
-
U__OnlinePlayerInterfaceEOS__LinkedAccount_0x1,
|
|
21
|
-
U__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1,
|
|
22
|
-
} from '../classes/OnlineSubsystemEOS';
|
|
23
|
-
import type {
|
|
24
|
-
EClientActionCode,
|
|
25
|
-
EClientActionReason,
|
|
26
|
-
EClientAuthStatus,
|
|
27
|
-
EClientIntegrityViolation,
|
|
28
|
-
EInputAPI,
|
|
29
|
-
EVoiceResultCode,
|
|
30
|
-
OnlinePlatform,
|
|
31
|
-
} from '../enums/Core';
|
|
8
|
+
import type { UDateTime, UOnlineGameSearch, UOnlineGameSettings, UOnlinePlayerStorage, UOnlineProfileSettings, UOnlineStatsRead, UOnlineStatsWrite, UOnlineSubsystem, USpeechRecognition } from '../classes/Engine';
|
|
9
|
+
import type { U__OnlinePlayerInterfaceEOS__LinkedAccount_0x1, U__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 } from '../classes/OnlineSubsystemEOS';
|
|
10
|
+
import type { EClientActionCode, EClientActionReason, EClientAuthStatus, EClientIntegrityViolation, EInputAPI, EVoiceResultCode, OnlinePlatform } from '../enums/Core';
|
|
32
11
|
import type {
|
|
33
12
|
ECommunicationMethod,
|
|
34
13
|
EFeaturePrivilege,
|
|
@@ -77,11 +56,10 @@ export type __OnlinePlayerInterfaceEOS__LinkedAccount_0x1___OnlinePlayerInterfac
|
|
|
77
56
|
/**
|
|
78
57
|
* Function OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1
|
|
79
58
|
*/
|
|
80
|
-
export type __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1___OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1_Params =
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
};
|
|
59
|
+
export type __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1___OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1_Params = {
|
|
60
|
+
bSuccess: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
61
|
+
Code: string; // 0x0008 (0x0010) [FString] [CPF_Parm]
|
|
62
|
+
};
|
|
85
63
|
|
|
86
64
|
/**
|
|
87
65
|
* Function OnlineSubsystemEOS.OnlineAntiCheatClientInterfaceEOS.BeginSession
|