@rlsdk/steam 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.
- package/README.md +166 -0
- package/classes/AkAudio.ts +620 -0
- package/classes/Core.ts +1489 -0
- package/classes/Engine.ts +25512 -0
- package/classes/GFxUI.ts +480 -0
- package/classes/IpDrv.ts +2146 -0
- package/classes/OnlineSubsystemEOS.ts +954 -0
- package/classes/OnlineSubsystemSteamworks.ts +933 -0
- package/classes/ProjectX.ts +14003 -0
- package/classes/TAGame.ts +54138 -0
- package/classes/WinDrv.ts +116 -0
- package/classes/XAudio2.ts +13 -0
- package/classes/index.ts +20 -0
- package/constants/AkAudio.ts +6 -0
- package/constants/Core.ts +28 -0
- package/constants/Engine.ts +109 -0
- package/constants/GFxUI.ts +6 -0
- package/constants/IpDrv.ts +13 -0
- package/constants/OnlineSubsystemEOS.ts +6 -0
- package/constants/OnlineSubsystemSteamworks.ts +6 -0
- package/constants/ProjectX.ts +19 -0
- package/constants/TAGame.ts +79 -0
- package/constants/WinDrv.ts +6 -0
- package/constants/XAudio2.ts +6 -0
- package/constants/index.ts +14 -0
- package/enums/AkAudio.ts +121 -0
- package/enums/Core.ts +1646 -0
- package/enums/Engine.ts +3782 -0
- package/enums/GFxUI.ts +111 -0
- package/enums/IpDrv.ts +321 -0
- package/enums/OnlineSubsystemEOS.ts +25 -0
- package/enums/OnlineSubsystemSteamworks.ts +62 -0
- package/enums/ProjectX.ts +624 -0
- package/enums/TAGame.ts +2637 -0
- package/enums/WinDrv.ts +6 -0
- package/enums/XAudio2.ts +6 -0
- package/enums/index.ts +18 -0
- package/index.ts +11 -0
- package/offsets/AkAudio.ts +1049 -0
- package/offsets/Core.ts +1765 -0
- package/offsets/Engine.ts +26914 -0
- package/offsets/GFxUI.ts +525 -0
- package/offsets/IpDrv.ts +2259 -0
- package/offsets/OnlineSubsystemEOS.ts +602 -0
- package/offsets/OnlineSubsystemSteamworks.ts +1283 -0
- package/offsets/ProjectX.ts +14375 -0
- package/offsets/TAGame.ts +47649 -0
- package/offsets/WinDrv.ts +180 -0
- package/offsets/XAudio2.ts +102 -0
- package/offsets/globals.ts +13 -0
- package/offsets/index.ts +21 -0
- package/package.json +134 -0
- package/parameters/AkAudio.ts +780 -0
- package/parameters/Core.ts +4839 -0
- package/parameters/Engine.ts +37953 -0
- package/parameters/GFxUI.ts +1450 -0
- package/parameters/IpDrv.ts +7591 -0
- package/parameters/OnlineSubsystemEOS.ts +4309 -0
- package/parameters/OnlineSubsystemSteamworks.ts +4391 -0
- package/parameters/ProjectX.ts +31213 -0
- package/parameters/TAGame.ts +129564 -0
- package/parameters/WinDrv.ts +276 -0
- package/parameters/XAudio2.ts +4 -0
- package/parameters/index.ts +19 -0
- package/structs/AkAudio.ts +132 -0
- package/structs/Core.ts +750 -0
- package/structs/Engine.ts +5968 -0
- package/structs/GFxUI.ts +136 -0
- package/structs/IpDrv.ts +681 -0
- package/structs/OnlineSubsystemEOS.ts +23 -0
- package/structs/OnlineSubsystemSteamworks.ts +306 -0
- package/structs/ProjectX.ts +2527 -0
- package/structs/TAGame.ts +7487 -0
- package/structs/WinDrv.ts +6 -0
- package/structs/XAudio2.ts +6 -0
- package/structs/index.ts +18 -0
- package/types/GameDefines.ts +35 -0
- package/types/index.ts +9 -0
package/structs/GFxUI.ts
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GFxUI Package - Structs
|
|
3
|
+
* Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { FName } from '../types/GameDefines';
|
|
7
|
+
import type { UObject } from '../classes/Core';
|
|
8
|
+
import type { UTexture, UTexture2D, UUISoundTheme } from '../classes/Engine';
|
|
9
|
+
import type { UGFxObject } from '../classes/GFxUI';
|
|
10
|
+
import type { EInputPlatformType } from '../enums/Engine';
|
|
11
|
+
import type { ASType, EWeatherVariant } from '../enums/GFxUI';
|
|
12
|
+
import type { FLinearColor } from './Core';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* ScriptStruct GFxUI.GFxObject.ASColorTransform
|
|
16
|
+
* Size: 0x0020
|
|
17
|
+
*/
|
|
18
|
+
export type FASColorTransform = {
|
|
19
|
+
Multiply: FLinearColor; // 0x0000 (0x0010) [FLinearColor]
|
|
20
|
+
Add: FLinearColor; // 0x0010 (0x0010) [FLinearColor]
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* ScriptStruct GFxUI.GFxObject.ASDisplayInfo
|
|
25
|
+
* Size: 0x002C
|
|
26
|
+
*/
|
|
27
|
+
export type FASDisplayInfo = {
|
|
28
|
+
X: number; // 0x0000 (0x0004) [float]
|
|
29
|
+
Y: number; // 0x0004 (0x0004) [float]
|
|
30
|
+
Z: number; // 0x0008 (0x0004) [float]
|
|
31
|
+
Rotation: number; // 0x000c (0x0004) [float]
|
|
32
|
+
XRotation: number; // 0x0010 (0x0004) [float]
|
|
33
|
+
YRotation: number; // 0x0014 (0x0004) [float]
|
|
34
|
+
XScale: number; // 0x0018 (0x0004) [float]
|
|
35
|
+
YScale: number; // 0x001c (0x0004) [float]
|
|
36
|
+
ZScale: number; // 0x0020 (0x0004) [float]
|
|
37
|
+
Alpha: number; // 0x0024 (0x0004) [float]
|
|
38
|
+
Visible: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
39
|
+
hasX: boolean; // 0x0028 (0x0004) [bool : 0x2]
|
|
40
|
+
hasY: boolean; // 0x0028 (0x0004) [bool : 0x4]
|
|
41
|
+
hasZ: boolean; // 0x0028 (0x0004) [bool : 0x8]
|
|
42
|
+
hasRotation: boolean; // 0x0028 (0x0004) [bool : 0x10]
|
|
43
|
+
hasXRotation: boolean; // 0x0028 (0x0004) [bool : 0x20]
|
|
44
|
+
hasYRotation: boolean; // 0x0028 (0x0004) [bool : 0x40]
|
|
45
|
+
hasXScale: boolean; // 0x0028 (0x0004) [bool : 0x80]
|
|
46
|
+
hasYScale: boolean; // 0x0028 (0x0004) [bool : 0x100]
|
|
47
|
+
hasZScale: boolean; // 0x0028 (0x0004) [bool : 0x200]
|
|
48
|
+
hasAlpha: boolean; // 0x0028 (0x0004) [bool : 0x400]
|
|
49
|
+
hasVisible: boolean; // 0x0028 (0x0004) [bool : 0x800]
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* ScriptStruct GFxUI.GFxMoviePlayer.ASValue
|
|
54
|
+
* Size: 0x0028
|
|
55
|
+
*/
|
|
56
|
+
export type FASValue = {
|
|
57
|
+
Type: ASType; // 0x0000 (0x0001) [ASType]
|
|
58
|
+
B: boolean; // 0x0004 (0x0004) [bool : 0x1]
|
|
59
|
+
N: number; // 0x0008 (0x0004) [float]
|
|
60
|
+
I: number; // 0x000c (0x0004) [int32]
|
|
61
|
+
S: string; // 0x0010 (0x0010) [FString]
|
|
62
|
+
T: UTexture; // 0x0020 (0x0008) [UTexture*]
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* ScriptStruct GFxUI.GFxClikWidget.EventData
|
|
67
|
+
* Size: 0x0034
|
|
68
|
+
*/
|
|
69
|
+
export type FEventData = {
|
|
70
|
+
_this: UGFxObject; // 0x0000 (0x0008) [UGFxObject*]
|
|
71
|
+
Target: UGFxObject; // 0x0008 (0x0008) [UGFxObject*]
|
|
72
|
+
Type: string; // 0x0010 (0x0010) [FString]
|
|
73
|
+
Data: number; // 0x0020 (0x0004) [int32]
|
|
74
|
+
mouseIndex: number; // 0x0024 (0x0004) [int32]
|
|
75
|
+
Button: number; // 0x0028 (0x0004) [int32]
|
|
76
|
+
Index: number; // 0x002c (0x0004) [int32]
|
|
77
|
+
lastIndex: number; // 0x0030 (0x0004) [int32]
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* ScriptStruct GFxUI.GFxMoviePlayer.ExternalTexture
|
|
82
|
+
* Size: 0x0018
|
|
83
|
+
*/
|
|
84
|
+
export type FExternalTexture = {
|
|
85
|
+
Resource: string; // 0x0000 (0x0010) [FString]
|
|
86
|
+
Texture: UTexture; // 0x0010 (0x0008) [UTexture*]
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* ScriptStruct GFxUI.GFxEngine.GCReference
|
|
91
|
+
* Size: 0x0010
|
|
92
|
+
*/
|
|
93
|
+
export type FGCReference = {
|
|
94
|
+
m_object: UObject; // 0x0000 (0x0008) [UObject*]
|
|
95
|
+
m_count: number; // 0x0008 (0x0004) [int32]
|
|
96
|
+
m_statid: number; // 0x000c (0x0004) [int32]
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* ScriptStruct GFxUI.GFxMoviePlayer.GFxWidgetBinding
|
|
101
|
+
* Size: 0x0010
|
|
102
|
+
*/
|
|
103
|
+
export type FGFxWidgetBinding = {
|
|
104
|
+
WidgetName: FName; // 0x0000 (0x0008) [FName]
|
|
105
|
+
WidgetClass: UGFxObject; // 0x0008 (0x0008) [UGFxObject*]
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* ScriptStruct GFxUI.GFxEngine.LoadingMovieMapInfo
|
|
110
|
+
* Size: 0x009C
|
|
111
|
+
*/
|
|
112
|
+
export type FLoadingMovieMapInfo = {
|
|
113
|
+
InputType: EInputPlatformType; // 0x0000 (0x0001) [EInputPlatformType]
|
|
114
|
+
MapBaseName: string; // 0x0008 (0x0010) [FString]
|
|
115
|
+
PlaylistName: string; // 0x0018 (0x0010) [FString]
|
|
116
|
+
MapVariantName: string; // 0x0028 (0x0010) [FString]
|
|
117
|
+
MaximumPlayerCounts: string; // 0x0038 (0x0010) [FString]
|
|
118
|
+
ProtipMessage: string; // 0x0048 (0x0010) [FString]
|
|
119
|
+
Language: string; // 0x0058 (0x0010) [FString]
|
|
120
|
+
BuildEdition: string; // 0x0068 (0x0010) [FString]
|
|
121
|
+
ProtipTitle: string; // 0x0078 (0x0010) [FString]
|
|
122
|
+
WeatherVariant: EWeatherVariant; // 0x0088 (0x0001) [EWeatherVariant]
|
|
123
|
+
LargeMapImage: UTexture2D; // 0x0090 (0x0008) [UTexture2D*]
|
|
124
|
+
bSetBackgroundVisible: boolean; // 0x0098 (0x0004) [bool : 0x1]
|
|
125
|
+
bDisplayGenericBackground: boolean; // 0x0098 (0x0004) [bool : 0x2]
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* ScriptStruct GFxUI.GFxMoviePlayer.SoundThemeBinding
|
|
130
|
+
* Size: 0x0020
|
|
131
|
+
*/
|
|
132
|
+
export type FSoundThemeBinding = {
|
|
133
|
+
ThemeName: FName; // 0x0000 (0x0008) [FName]
|
|
134
|
+
Theme: UUISoundTheme; // 0x0008 (0x0008) [UUISoundTheme*]
|
|
135
|
+
ThemeClassName: string; // 0x0010 (0x0010) [FString]
|
|
136
|
+
};
|