rocketleaguesdk 1.0.0

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.
Files changed (53) hide show
  1. package/README.md +152 -0
  2. package/classes/AkAudio.ts +577 -0
  3. package/classes/Core.ts +1559 -0
  4. package/classes/Engine.ts +23515 -0
  5. package/classes/GFxUI.ts +425 -0
  6. package/classes/IpDrv.ts +1902 -0
  7. package/classes/OnlineSubsystemEOS.ts +800 -0
  8. package/classes/ProjectX.ts +13294 -0
  9. package/classes/TAGame.ts +49959 -0
  10. package/classes/WinDrv.ts +110 -0
  11. package/classes/XAudio2.ts +15 -0
  12. package/classes/index.ts +19 -0
  13. package/constants/Core.ts +27 -0
  14. package/constants/Engine.ts +109 -0
  15. package/constants/IpDrv.ts +13 -0
  16. package/constants/ProjectX.ts +19 -0
  17. package/constants/TAGame.ts +78 -0
  18. package/constants/index.ts +14 -0
  19. package/enums/AkAudio.ts +121 -0
  20. package/enums/Core.ts +1528 -0
  21. package/enums/Engine.ts +3761 -0
  22. package/enums/GFxUI.ts +111 -0
  23. package/enums/IpDrv.ts +321 -0
  24. package/enums/OnlineSubsystemEOS.ts +25 -0
  25. package/enums/ProjectX.ts +593 -0
  26. package/enums/TAGame.ts +2586 -0
  27. package/enums/index.ts +17 -0
  28. package/examples/basic.ts +236 -0
  29. package/index.ts +33 -0
  30. package/package.json +100 -0
  31. package/parameters/AkAudio.ts +598 -0
  32. package/parameters/Core.ts +4062 -0
  33. package/parameters/Engine.ts +30205 -0
  34. package/parameters/GFxUI.ts +1282 -0
  35. package/parameters/IpDrv.ts +6486 -0
  36. package/parameters/OnlineSubsystemEOS.ts +3733 -0
  37. package/parameters/ProjectX.ts +23169 -0
  38. package/parameters/TAGame.ts +92073 -0
  39. package/parameters/WinDrv.ts +237 -0
  40. package/parameters/index.ts +18 -0
  41. package/structs/AkAudio.ts +115 -0
  42. package/structs/Core.ts +666 -0
  43. package/structs/Engine.ts +5185 -0
  44. package/structs/GFxUI.ts +117 -0
  45. package/structs/IpDrv.ts +601 -0
  46. package/structs/OnlineSubsystemEOS.ts +20 -0
  47. package/structs/ProjectX.ts +2110 -0
  48. package/structs/TAGame.ts +6273 -0
  49. package/structs/index.ts +17 -0
  50. package/tsconfig.json +28 -0
  51. package/types/core.ts +16 -0
  52. package/types/index.ts +8 -0
  53. package/types/offsets.ts +29 -0
@@ -0,0 +1,237 @@
1
+ /**
2
+ * WinDrv Package - Function Parameters
3
+ * Auto-generated by Stev Peifer
4
+ */
5
+
6
+ import type { FName, FScriptDelegate } from '../types/core';
7
+
8
+ /**
9
+ * Function WinDrv.FacebookWindows.Authorize
10
+ */
11
+ export type FacebookWindows_Authorize_Params = {
12
+ ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
13
+ };
14
+
15
+ /**
16
+ * Function WinDrv.FacebookWindows.FacebookRequest
17
+ */
18
+ export type FacebookWindows_FacebookRequest_Params = {
19
+ GraphRequest: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
20
+ HTTPMethod: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
21
+ };
22
+
23
+ /**
24
+ * Function WinDrv.FacebookWindows.FacebookRequestCallback
25
+ */
26
+ export type FacebookWindows_FacebookRequestCallback_Params = {
27
+ bDidSucceed: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm]
28
+ Payload: string; // 0x0018 (0x0010) [FString]
29
+ };
30
+
31
+ /**
32
+ * Function WinDrv.FacebookWindows.Init
33
+ */
34
+ export type FacebookWindows_Init_Params = {
35
+ ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
36
+ };
37
+
38
+ /**
39
+ * Function WinDrv.FacebookWindows.IsAuthorized
40
+ */
41
+ export type FacebookWindows_IsAuthorized_Params = {
42
+ ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
43
+ };
44
+
45
+ /**
46
+ * Function WinDrv.FacebookWindows.OnFacebookFriendsRequestComplete
47
+ */
48
+ export type FacebookWindows_OnFacebookFriendsRequestComplete_Params = {
49
+ bDidSucceed: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm]
50
+ JsonPayload: string; // 0x0018 (0x0010) [FString]
51
+ JsonIndex: number; // 0x0038 (0x0004) [int32]
52
+ };
53
+
54
+ /**
55
+ * Function WinDrv.FacebookWindows.OnFacebookMeRequestComplete
56
+ */
57
+ export type FacebookWindows_OnFacebookMeRequestComplete_Params = {
58
+ bDidSucceed: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm]
59
+ JsonPayload: string; // 0x0018 (0x0010) [FString]
60
+ };
61
+
62
+ /**
63
+ * Function WinDrv.FacebookWindows.ProcessFacebookRequest
64
+ */
65
+ export type FacebookWindows_ProcessFacebookRequest_Params = {
66
+ Payload: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
67
+ ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
68
+ };
69
+
70
+ /**
71
+ * Function WinDrv.HttpRequestWindows.GetContent
72
+ */
73
+ export type HttpRequestWindows_GetContent_Params = {
74
+ };
75
+
76
+ /**
77
+ * Function WinDrv.HttpRequestWindows.GetContentLength
78
+ */
79
+ export type HttpRequestWindows_GetContentLength_Params = {
80
+ ReturnValue: number; // 0x0000 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
81
+ };
82
+
83
+ /**
84
+ * Function WinDrv.HttpRequestWindows.GetContentType
85
+ */
86
+ export type HttpRequestWindows_GetContentType_Params = {
87
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
88
+ };
89
+
90
+ /**
91
+ * Function WinDrv.HttpRequestWindows.GetHeader
92
+ */
93
+ export type HttpRequestWindows_GetHeader_Params = {
94
+ HeaderName: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
95
+ ReturnValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
96
+ };
97
+
98
+ /**
99
+ * Function WinDrv.HttpRequestWindows.GetHeaders
100
+ */
101
+ export type HttpRequestWindows_GetHeaders_Params = {
102
+ };
103
+
104
+ /**
105
+ * Function WinDrv.HttpRequestWindows.GetURL
106
+ */
107
+ export type HttpRequestWindows_GetURL_Params = {
108
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
109
+ };
110
+
111
+ /**
112
+ * Function WinDrv.HttpRequestWindows.GetURLParameter
113
+ */
114
+ export type HttpRequestWindows_GetURLParameter_Params = {
115
+ ParameterName: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
116
+ ReturnValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
117
+ };
118
+
119
+ /**
120
+ * Function WinDrv.HttpRequestWindows.GetVerb
121
+ */
122
+ export type HttpRequestWindows_GetVerb_Params = {
123
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
124
+ };
125
+
126
+ /**
127
+ * Function WinDrv.HttpRequestWindows.ProcessRequest
128
+ */
129
+ export type HttpRequestWindows_ProcessRequest_Params = {
130
+ ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
131
+ };
132
+
133
+ /**
134
+ * Function WinDrv.HttpRequestWindows.SetContent
135
+ */
136
+ export type HttpRequestWindows_SetContent_Params = {
137
+ };
138
+
139
+ /**
140
+ * Function WinDrv.HttpRequestWindows.SetContentAsString
141
+ */
142
+ export type HttpRequestWindows_SetContentAsString_Params = {
143
+ ContentString: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
144
+ };
145
+
146
+ /**
147
+ * Function WinDrv.HttpRequestWindows.SetHeader
148
+ */
149
+ export type HttpRequestWindows_SetHeader_Params = {
150
+ HeaderName: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
151
+ HeaderValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
152
+ };
153
+
154
+ /**
155
+ * Function WinDrv.HttpRequestWindows.SetURL
156
+ */
157
+ export type HttpRequestWindows_SetURL_Params = {
158
+ URL: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
159
+ };
160
+
161
+ /**
162
+ * Function WinDrv.HttpRequestWindows.SetVerb
163
+ */
164
+ export type HttpRequestWindows_SetVerb_Params = {
165
+ Verb: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
166
+ };
167
+
168
+ /**
169
+ * Function WinDrv.HttpRequestWindowsMcp.ProcessRequest
170
+ */
171
+ export type HttpRequestWindowsMcp_ProcessRequest_Params = {
172
+ ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
173
+ URL: string; // 0x0008 (0x0010) [FString]
174
+ };
175
+
176
+ /**
177
+ * Function WinDrv.HttpResponseWindows.GetContent
178
+ */
179
+ export type HttpResponseWindows_GetContent_Params = {
180
+ };
181
+
182
+ /**
183
+ * Function WinDrv.HttpResponseWindows.GetContentAsString
184
+ */
185
+ export type HttpResponseWindows_GetContentAsString_Params = {
186
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
187
+ };
188
+
189
+ /**
190
+ * Function WinDrv.HttpResponseWindows.GetContentLength
191
+ */
192
+ export type HttpResponseWindows_GetContentLength_Params = {
193
+ ReturnValue: number; // 0x0000 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
194
+ };
195
+
196
+ /**
197
+ * Function WinDrv.HttpResponseWindows.GetContentType
198
+ */
199
+ export type HttpResponseWindows_GetContentType_Params = {
200
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
201
+ };
202
+
203
+ /**
204
+ * Function WinDrv.HttpResponseWindows.GetHeader
205
+ */
206
+ export type HttpResponseWindows_GetHeader_Params = {
207
+ HeaderName: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
208
+ ReturnValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
209
+ };
210
+
211
+ /**
212
+ * Function WinDrv.HttpResponseWindows.GetHeaders
213
+ */
214
+ export type HttpResponseWindows_GetHeaders_Params = {
215
+ };
216
+
217
+ /**
218
+ * Function WinDrv.HttpResponseWindows.GetResponseCode
219
+ */
220
+ export type HttpResponseWindows_GetResponseCode_Params = {
221
+ ReturnValue: number; // 0x0000 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
222
+ };
223
+
224
+ /**
225
+ * Function WinDrv.HttpResponseWindows.GetURL
226
+ */
227
+ export type HttpResponseWindows_GetURL_Params = {
228
+ ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
229
+ };
230
+
231
+ /**
232
+ * Function WinDrv.HttpResponseWindows.GetURLParameter
233
+ */
234
+ export type HttpResponseWindows_GetURLParameter_Params = {
235
+ ParameterName: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
236
+ ReturnValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
237
+ };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Function Parameters Index
3
+ * Auto-generated by Stev Peifer
4
+ *
5
+ * Parameters are exported as namespaces for consistency.
6
+ * Usage: import { TAGame } from "rocketleaguesdk/parameters";
7
+ * TAGame.Car_TA_SetBoost_Params
8
+ */
9
+
10
+ export * as Engine from './Engine';
11
+ export * as Core from './Core';
12
+ export * as IpDrv from './IpDrv';
13
+ export * as GFxUI from './GFxUI';
14
+ export * as AkAudio from './AkAudio';
15
+ export * as WinDrv from './WinDrv';
16
+ export * as OnlineSubsystemEOS from './OnlineSubsystemEOS';
17
+ export * as ProjectX from './ProjectX';
18
+ export * as TAGame from './TAGame';
@@ -0,0 +1,115 @@
1
+ /**
2
+ * AkAudio Package - Structs
3
+ * Auto-generated by Stev Peifer
4
+ */
5
+
6
+ /**
7
+ * ScriptStruct AkAudio.AkSoundSource.ActiveSound
8
+ * Size: 0x0010
9
+ */
10
+ export type FActiveSound = {
11
+ PlayId: number; // 0x0008 (0x0004) [int32]
12
+ StopId: number; // 0x000c (0x0004) [int32]
13
+ };
14
+
15
+ /**
16
+ * ScriptStruct AkAudio.AkEnvironments.AkActorEnvironment
17
+ * Size: 0x0018
18
+ */
19
+ export type FAkActorEnvironment = {
20
+ };
21
+
22
+ /**
23
+ * ScriptStruct AkAudio.AkEnvironments.AkEnvironment
24
+ * Size: 0x0020
25
+ */
26
+ export type FAkEnvironment = {
27
+ Id: string; // 0x0000 (0x0010) [FString]
28
+ Priority: number; // 0x0010 (0x0004) [int32]
29
+ WetValue: number; // 0x0014 (0x0004) [float]
30
+ DryValue: number; // 0x0018 (0x0004) [float]
31
+ };
32
+
33
+ /**
34
+ * ScriptStruct AkAudio.InterpTrackAkEvent.AkEventTrackKey
35
+ * Size: 0x0010
36
+ */
37
+ export type FAkEventTrackKey = {
38
+ Time: number; // 0x0000 (0x0004) [float]
39
+ };
40
+
41
+ /**
42
+ * ScriptStruct AkAudio.AkParamGroup.AkParamSet
43
+ * Size: 0x00A0
44
+ */
45
+ export type FAkParamSet = {
46
+ };
47
+
48
+ /**
49
+ * ScriptStruct AkAudio.AkRevPhysicsSimulation.AkRevSimFrame
50
+ * Size: 0x0010
51
+ */
52
+ export type FAkRevSimFrame = {
53
+ RPM: number; // 0x0000 (0x0004) [float]
54
+ Gear: number; // 0x0004 (0x0004) [int32]
55
+ RevGear: number; // 0x0008 (0x0004) [int32]
56
+ Velocity: number; // 0x000c (0x0004) [float]
57
+ };
58
+
59
+ /**
60
+ * ScriptStruct AkAudio.AkRevPhysicsSimulation.AkRevSimPhysicsControls
61
+ * Size: 0x0020
62
+ */
63
+ export type FAkRevSimPhysicsControls = {
64
+ Weight: number; // 0x0000 (0x0004) [float]
65
+ EngineTorque: number; // 0x0004 (0x0004) [float]
66
+ BreakingHorsePower: number; // 0x0008 (0x0004) [float]
67
+ };
68
+
69
+ /**
70
+ * ScriptStruct AkAudio.AkRevPhysicsSimulation.AkRevSimUpdateParams
71
+ * Size: 0x0048
72
+ */
73
+ export type FAkRevSimUpdateParams = {
74
+ Throttle: number; // 0x0000 (0x0004) [float]
75
+ Brake: number; // 0x0004 (0x0004) [float]
76
+ EngineFrictionScale: number; // 0x0008 (0x0004) [float]
77
+ GroundFrictionScale: number; // 0x000c (0x0004) [float]
78
+ ClutchedGearRatio: number; // 0x0010 (0x0004) [float]
79
+ bEnableUpShifting: boolean; // 0x0014 (0x0004) [bool : 0x1]
80
+ };
81
+
82
+ /**
83
+ * ScriptStruct AkAudio.AkMusicAnalysis.MusicAnalysisInfo
84
+ * Size: 0x001C
85
+ */
86
+ export type FMusicAnalysisInfo = {
87
+ LowEnergy: number; // 0x0000 (0x0004) [float]
88
+ HighEnergy: number; // 0x0018 (0x0004) [float]
89
+ };
90
+
91
+ /**
92
+ * ScriptStruct AkAudio.SeqAct_AkPlayMusicWithCues.MusicSyncEvent
93
+ * Size: 0x0011
94
+ */
95
+ export type FMusicSyncEvent = {
96
+ CueName: string; // 0x0000 (0x0010) [FString]
97
+ };
98
+
99
+ /**
100
+ * ScriptStruct AkAudio.AkSoundBanksInfo.SoundBankInfo
101
+ * Size: 0x0030
102
+ */
103
+ export type FSoundBankInfo = {
104
+ ShortName: string; // 0x0000 (0x0010) [FString]
105
+ RelativePath: string; // 0x0010 (0x0010) [FString]
106
+ Language: string; // 0x0020 (0x0010) [FString]
107
+ };
108
+
109
+ /**
110
+ * ScriptStruct AkAudio.AkEnvironments.uint
111
+ * Size: 0x0004
112
+ */
113
+ export type Fuint = {
114
+ dummyint: number; // 0x0000 (0x0004) [int32]
115
+ };