@rlsdk/steam 1.0.1 → 1.0.3
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 +2 -13
- package/classes/Core.ts +64 -59
- package/classes/Engine.ts +33 -75
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +10 -20
- package/classes/OnlineSubsystemEOS.ts +60 -164
- package/classes/OnlineSubsystemSteamworks.ts +175 -183
- package/classes/ProjectX.ts +103 -69
- package/classes/TAGame.ts +3239 -2558
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +54 -0
- package/enums/Engine.ts +2 -72
- package/enums/TAGame.ts +46 -4
- package/offsets/AkAudio.ts +1 -1
- package/offsets/Core.ts +64 -59
- package/offsets/Engine.ts +29 -51
- package/offsets/IpDrv.ts +38 -39
- package/offsets/OnlineSubsystemEOS.ts +94 -136
- package/offsets/OnlineSubsystemSteamworks.ts +212 -213
- package/offsets/ProjectX.ts +82 -46
- package/offsets/TAGame.ts +2977 -2390
- 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 +23 -239
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +8 -231
- package/parameters/ProjectX.ts +335 -282
- package/parameters/TAGame.ts +4082 -2448
- package/structs/Core.ts +1 -7
- package/structs/Engine.ts +0 -12
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +186 -104
|
@@ -4,41 +4,14 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type { UError
|
|
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';
|
|
7
|
+
import type { UError } from '../classes/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,
|
|
35
14
|
EFeaturePrivilegeLevel,
|
|
36
|
-
EGameClipsAvailability,
|
|
37
|
-
EGameClipsClipStatus,
|
|
38
|
-
EGameClipsConnection,
|
|
39
|
-
EGameClipsConnectionStatus,
|
|
40
|
-
EGameClipsMaskStatus,
|
|
41
|
-
EGameClipsRecording,
|
|
42
15
|
ELoginStatus,
|
|
43
16
|
ENATType,
|
|
44
17
|
ENetworkNotificationPosition,
|
|
@@ -56,7 +29,6 @@ import type {
|
|
|
56
29
|
FEmsFile,
|
|
57
30
|
FFriendHistoryKey,
|
|
58
31
|
FFriendsQuery,
|
|
59
|
-
FGameClipsMaskArea,
|
|
60
32
|
FLocalizedStringSetting,
|
|
61
33
|
FOnlineFriend,
|
|
62
34
|
FOnlineFriendMessage,
|
|
@@ -77,11 +49,10 @@ export type __OnlinePlayerInterfaceEOS__LinkedAccount_0x1___OnlinePlayerInterfac
|
|
|
77
49
|
/**
|
|
78
50
|
* Function OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1
|
|
79
51
|
*/
|
|
80
|
-
export type __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1___OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1_Params =
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
};
|
|
52
|
+
export type __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1___OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1_Params = {
|
|
53
|
+
bSuccess: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
54
|
+
Code: string; // 0x0008 (0x0010) [FString] [CPF_Parm]
|
|
55
|
+
};
|
|
85
56
|
|
|
86
57
|
/**
|
|
87
58
|
* Function OnlineSubsystemEOS.OnlineAntiCheatClientInterfaceEOS.BeginSession
|
|
@@ -289,200 +260,6 @@ export type OnlineFriendsInterfaceEOS_RequestLinkedAccounts_Params = {
|
|
|
289
260
|
ReturnValue: boolean; // 0x0030 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
290
261
|
};
|
|
291
262
|
|
|
292
|
-
/**
|
|
293
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.CreateClip
|
|
294
|
-
*/
|
|
295
|
-
export type OnlineGameClipsInterfaceEOS_CreateClip_Params = {
|
|
296
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
297
|
-
InClipType: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
|
|
298
|
-
ReturnValue: number; // 0x0020 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
299
|
-
};
|
|
300
|
-
|
|
301
|
-
/**
|
|
302
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.DisableMaskArea
|
|
303
|
-
*/
|
|
304
|
-
export type OnlineGameClipsInterfaceEOS_DisableMaskArea_Params = {
|
|
305
|
-
InMaskAreaHandle: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
306
|
-
};
|
|
307
|
-
|
|
308
|
-
/**
|
|
309
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EnableMaskArea
|
|
310
|
-
*/
|
|
311
|
-
export type OnlineGameClipsInterfaceEOS_EnableMaskArea_Params = {
|
|
312
|
-
InMaskArea: FGameClipsMaskArea; // 0x0000 (0x0018) [FGameClipsMaskArea] [CPF_Parm | CPF_OutParm]
|
|
313
|
-
ReturnValue: bigint; // 0x0018 (0x0008) [uint64] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
314
|
-
};
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventAvailabilityChanged
|
|
318
|
-
*/
|
|
319
|
-
export type OnlineGameClipsInterfaceEOS_EventAvailabilityChanged_Params = {
|
|
320
|
-
InNewAvailability: EGameClipsAvailability; // 0x0000 (0x0001) [EGameClipsAvailability] [CPF_Parm]
|
|
321
|
-
};
|
|
322
|
-
|
|
323
|
-
/**
|
|
324
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventClipErrorOccurred
|
|
325
|
-
*/
|
|
326
|
-
export type OnlineGameClipsInterfaceEOS_EventClipErrorOccurred_Params = {
|
|
327
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
328
|
-
ClipId: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
329
|
-
InErrorType: UErrorType; // 0x0018 (0x0008) [UErrorType*] [CPF_Parm]
|
|
330
|
-
};
|
|
331
|
-
|
|
332
|
-
/**
|
|
333
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventClipStatusChanged
|
|
334
|
-
*/
|
|
335
|
-
export type OnlineGameClipsInterfaceEOS_EventClipStatusChanged_Params = {
|
|
336
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
337
|
-
InClipId: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
338
|
-
InNewClipStatus: EGameClipsClipStatus; // 0x0014 (0x0001) [EGameClipsClipStatus] [CPF_Parm]
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
/**
|
|
342
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventConnectionStatusChanged
|
|
343
|
-
*/
|
|
344
|
-
export type OnlineGameClipsInterfaceEOS_EventConnectionStatusChanged_Params = {
|
|
345
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
346
|
-
InConnection: EGameClipsConnection; // 0x0010 (0x0001) [EGameClipsConnection] [CPF_Parm]
|
|
347
|
-
InNewConnectionStatus: EGameClipsConnectionStatus; // 0x0011 (0x0001) [EGameClipsConnectionStatus] [CPF_Parm]
|
|
348
|
-
};
|
|
349
|
-
|
|
350
|
-
/**
|
|
351
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventGeneralErrorOccurred
|
|
352
|
-
*/
|
|
353
|
-
export type OnlineGameClipsInterfaceEOS_EventGeneralErrorOccurred_Params = {
|
|
354
|
-
InErrorType: UErrorType; // 0x0000 (0x0008) [UErrorType*] [CPF_Parm]
|
|
355
|
-
};
|
|
356
|
-
|
|
357
|
-
/**
|
|
358
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventMaskStatusChanged
|
|
359
|
-
*/
|
|
360
|
-
export type OnlineGameClipsInterfaceEOS_EventMaskStatusChanged_Params = {
|
|
361
|
-
InMaskAreaHandle: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
362
|
-
InMaskArea: FGameClipsMaskArea; // 0x0008 (0x0018) [FGameClipsMaskArea] [CPF_Parm]
|
|
363
|
-
InNewMaskStatus: EGameClipsMaskStatus; // 0x0020 (0x0001) [EGameClipsMaskStatus] [CPF_Parm]
|
|
364
|
-
};
|
|
365
|
-
|
|
366
|
-
/**
|
|
367
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.EventRecordingChanged
|
|
368
|
-
*/
|
|
369
|
-
export type OnlineGameClipsInterfaceEOS_EventRecordingChanged_Params = {
|
|
370
|
-
InNewRecording: EGameClipsRecording; // 0x0000 (0x0001) [EGameClipsRecording] [CPF_Parm]
|
|
371
|
-
};
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.GetTimeUntilUnthrottled
|
|
375
|
-
*/
|
|
376
|
-
export type OnlineGameClipsInterfaceEOS_GetTimeUntilUnthrottled_Params = {
|
|
377
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
378
|
-
ReturnValue: number; // 0x0010 (0x0004) [float] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
379
|
-
};
|
|
380
|
-
|
|
381
|
-
/**
|
|
382
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.IsAccountLinked
|
|
383
|
-
*/
|
|
384
|
-
export type OnlineGameClipsInterfaceEOS_IsAccountLinked_Params = {
|
|
385
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
386
|
-
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
387
|
-
};
|
|
388
|
-
|
|
389
|
-
/**
|
|
390
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.IsAvailable
|
|
391
|
-
*/
|
|
392
|
-
export type OnlineGameClipsInterfaceEOS_IsAvailable_Params = {
|
|
393
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
394
|
-
};
|
|
395
|
-
|
|
396
|
-
/**
|
|
397
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.IsClipUploadingLimitReached
|
|
398
|
-
*/
|
|
399
|
-
export type OnlineGameClipsInterfaceEOS_IsClipUploadingLimitReached_Params = {
|
|
400
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
401
|
-
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
402
|
-
};
|
|
403
|
-
|
|
404
|
-
/**
|
|
405
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.IsRecording
|
|
406
|
-
*/
|
|
407
|
-
export type OnlineGameClipsInterfaceEOS_IsRecording_Params = {
|
|
408
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
409
|
-
};
|
|
410
|
-
|
|
411
|
-
/**
|
|
412
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.IsUploading
|
|
413
|
-
*/
|
|
414
|
-
export type OnlineGameClipsInterfaceEOS_IsUploading_Params = {
|
|
415
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
416
|
-
};
|
|
417
|
-
|
|
418
|
-
/**
|
|
419
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventAvailabilityChanged
|
|
420
|
-
*/
|
|
421
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventAvailabilityChanged_Params = {
|
|
422
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
423
|
-
};
|
|
424
|
-
|
|
425
|
-
/**
|
|
426
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventClipErrorOccurred
|
|
427
|
-
*/
|
|
428
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventClipErrorOccurred_Params = {
|
|
429
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
430
|
-
};
|
|
431
|
-
|
|
432
|
-
/**
|
|
433
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventClipStatusChanged
|
|
434
|
-
*/
|
|
435
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventClipStatusChanged_Params = {
|
|
436
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
437
|
-
};
|
|
438
|
-
|
|
439
|
-
/**
|
|
440
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventConnectionStatusChanged
|
|
441
|
-
*/
|
|
442
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventConnectionStatusChanged_Params = {
|
|
443
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
444
|
-
};
|
|
445
|
-
|
|
446
|
-
/**
|
|
447
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventGeneralErrorOccurred
|
|
448
|
-
*/
|
|
449
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventGeneralErrorOccurred_Params = {
|
|
450
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
451
|
-
};
|
|
452
|
-
|
|
453
|
-
/**
|
|
454
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventMaskStatusChanged
|
|
455
|
-
*/
|
|
456
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventMaskStatusChanged_Params = {
|
|
457
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
458
|
-
};
|
|
459
|
-
|
|
460
|
-
/**
|
|
461
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.NotifyEventRecordingChanged
|
|
462
|
-
*/
|
|
463
|
-
export type OnlineGameClipsInterfaceEOS_NotifyEventRecordingChanged_Params = {
|
|
464
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
465
|
-
};
|
|
466
|
-
|
|
467
|
-
/**
|
|
468
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.SetUserMaxClipUploadsPerMinute
|
|
469
|
-
*/
|
|
470
|
-
export type OnlineGameClipsInterfaceEOS_SetUserMaxClipUploadsPerMinute_Params = {
|
|
471
|
-
InMaxClipUploadsPerMinute: number; // 0x0000 (0x0004) [int32] [CPF_Parm]
|
|
472
|
-
};
|
|
473
|
-
|
|
474
|
-
/**
|
|
475
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.StartRecording
|
|
476
|
-
*/
|
|
477
|
-
export type OnlineGameClipsInterfaceEOS_StartRecording_Params = {
|
|
478
|
-
InClipDuration: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
479
|
-
};
|
|
480
|
-
|
|
481
|
-
/**
|
|
482
|
-
* Function OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS.StopRecording
|
|
483
|
-
*/
|
|
484
|
-
export type OnlineGameClipsInterfaceEOS_StopRecording_Params = {};
|
|
485
|
-
|
|
486
263
|
/**
|
|
487
264
|
* Function OnlineSubsystemEOS.OnlineGameInterfaceEOS.AcceptGameInvite
|
|
488
265
|
*/
|