@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
|
@@ -0,0 +1,954 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OnlineSubsystemEOS Package - Classes
|
|
3
|
+
* Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
+
import type { EInputAPI, EVoiceResultCode, OnlinePlatform } from '../enums/Core';
|
|
8
|
+
import type {
|
|
9
|
+
ECommunicationMethod,
|
|
10
|
+
EFeaturePrivilege,
|
|
11
|
+
EFeaturePrivilegeLevel,
|
|
12
|
+
EGameClipsAvailability,
|
|
13
|
+
EGameClipsClipStatus,
|
|
14
|
+
EGameClipsConnection,
|
|
15
|
+
EGameClipsConnectionStatus,
|
|
16
|
+
EGameClipsMaskStatus,
|
|
17
|
+
EGameClipsRecording,
|
|
18
|
+
ELoginStatus,
|
|
19
|
+
ENATType,
|
|
20
|
+
ENetworkNotificationPosition,
|
|
21
|
+
EOnlineAccountCreateStatus,
|
|
22
|
+
EOnlineEnumerationReadState,
|
|
23
|
+
EOnlineServerConnectionStatus,
|
|
24
|
+
EPS4DisplayMode,
|
|
25
|
+
EPS4ErrorDialog,
|
|
26
|
+
EPinGrantResult,
|
|
27
|
+
} from '../enums/Engine';
|
|
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';
|
|
37
|
+
import type {
|
|
38
|
+
FAchievementDetails,
|
|
39
|
+
FEmsFile,
|
|
40
|
+
FFriendHistoryKey,
|
|
41
|
+
FFriendsQuery,
|
|
42
|
+
FGameClipsMaskArea,
|
|
43
|
+
FLocalizedStringSetting,
|
|
44
|
+
FOnlineFriend,
|
|
45
|
+
FOnlineFriendMessage,
|
|
46
|
+
FOnlinePlayerScore,
|
|
47
|
+
FOnlineProfileSetting,
|
|
48
|
+
FSettingsProperty,
|
|
49
|
+
FSpeechRecognizedWord,
|
|
50
|
+
FWordFilterResult,
|
|
51
|
+
} from '../structs/Engine';
|
|
52
|
+
import type { FOnlineStatusMappingEOS } from '../structs/OnlineSubsystemEOS';
|
|
53
|
+
import type { UError, UErrorList, UErrorType, UObject } from './Core';
|
|
54
|
+
import type {
|
|
55
|
+
UDateTime,
|
|
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';
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Class OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__LinkedAccount_0x1
|
|
74
|
+
* Size: 0x0064
|
|
75
|
+
* Extends: UObject
|
|
76
|
+
*/
|
|
77
|
+
export type U__OnlinePlayerInterfaceEOS__LinkedAccount_0x1 = UObject & {
|
|
78
|
+
LocalUserNum: number; // 0x0060 (0x0004) [int32]
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
// __OnlinePlayerInterfaceEOS__LinkedAccount_0x1 Functions
|
|
82
|
+
// __OnlinePlayerInterfaceEOS__LinkedAccount_0x1(_: number, PlatformAuthTicket: string): void
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Class OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1
|
|
86
|
+
* Size: 0x0080
|
|
87
|
+
* Extends: UObject
|
|
88
|
+
*/
|
|
89
|
+
export type U__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 = UObject & {
|
|
90
|
+
LocalUserNum: number; // 0x0060 (0x0004) [int32]
|
|
91
|
+
Callback: FScriptDelegate; // 0x0068 (0x0018) [FScriptDelegate]
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
// __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 Functions
|
|
95
|
+
// __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1(bSuccess: boolean, Code: string): void
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Class OnlineSubsystemEOS.AudioDevicesChangedEvent
|
|
99
|
+
* Size: 0x0060
|
|
100
|
+
* Extends: UObject
|
|
101
|
+
*/
|
|
102
|
+
export type UAudioDevicesChangedEvent = UObject & {};
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Class OnlineSubsystemEOS.EOSErrors
|
|
106
|
+
* Size: 0x00F8
|
|
107
|
+
* Extends: UErrorList
|
|
108
|
+
*/
|
|
109
|
+
export type UEOSErrors = UErrorList & {
|
|
110
|
+
EpicUnknownError: UErrorType; // 0x0080 (0x0008) [UErrorType*]
|
|
111
|
+
BlockedListNotFound: UErrorType; // 0x0088 (0x0008) [UErrorType*]
|
|
112
|
+
AcceptFriendRequestFailed: UErrorType; // 0x0090 (0x0008) [UErrorType*]
|
|
113
|
+
RejectFriendRequestFailed: UErrorType; // 0x0098 (0x0008) [UErrorType*]
|
|
114
|
+
GameClipsActivationFailed: UErrorType; // 0x00a0 (0x0008) [UErrorType*]
|
|
115
|
+
GameClipsCleanAudioFailed: UErrorType; // 0x00a8 (0x0008) [UErrorType*]
|
|
116
|
+
GameClipsRecorderInitFailed: UErrorType; // 0x00b0 (0x0008) [UErrorType*]
|
|
117
|
+
GameClipsStartRecordingFailed: UErrorType; // 0x00b8 (0x0008) [UErrorType*]
|
|
118
|
+
GameClipsMaskAreaInvalid: UErrorType; // 0x00c0 (0x0008) [UErrorType*]
|
|
119
|
+
GameClipsStatusListenerFailed: UErrorType; // 0x00c8 (0x0008) [UErrorType*]
|
|
120
|
+
GameClipsUserStatusListenerFailed: UErrorType; // 0x00d0 (0x0008) [UErrorType*]
|
|
121
|
+
GameClipsNotAvailable: UErrorType; // 0x00d8 (0x0008) [UErrorType*]
|
|
122
|
+
GameClipsFailedToUpload: UErrorType; // 0x00e0 (0x0008) [UErrorType*]
|
|
123
|
+
GameClipsCoolingDown: UErrorType; // 0x00e8 (0x0008) [UErrorType*]
|
|
124
|
+
GameClipsUploadLimitReached: UErrorType; // 0x00f0 (0x0008) [UErrorType*]
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Class OnlineSubsystemEOS.OnlineAuthInterfaceEOS
|
|
129
|
+
* Size: 0x03D0
|
|
130
|
+
* Extends: UOnlineAuthInterfaceImpl
|
|
131
|
+
*/
|
|
132
|
+
export type UOnlineAuthInterfaceEOS = UOnlineAuthInterfaceImpl & {
|
|
133
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x03c8 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
// OnlineAuthInterfaceEOS Functions
|
|
137
|
+
// RequiresAuthTicket(): boolean
|
|
138
|
+
// RequestAuthTicket(PlayerID: FUniqueNetId, Callback: FScriptDelegate): boolean
|
|
139
|
+
// RequestMtxCode(PlayerID: FUniqueNetId, Callback: FScriptDelegate): boolean
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Class OnlineSubsystemEOS.OnlineFriendsInterfaceEOS
|
|
143
|
+
* Size: 0x0088
|
|
144
|
+
* Extends: UOnlineFriendsInterfaceImpl
|
|
145
|
+
*/
|
|
146
|
+
export type UOnlineFriendsInterfaceEOS = UOnlineFriendsInterfaceImpl & {
|
|
147
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0080 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
// OnlineFriendsInterfaceEOS Functions
|
|
151
|
+
// GetActivePlatformId(LocalUserNum: number, AccountId: FUniqueNetId, PlatformId: FUniqueNetId): boolean
|
|
152
|
+
// RequestLinkedAccounts(LocalUserNum: number, AccountIds: FUniqueNetId[], Callback: FScriptDelegate): boolean
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Class OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS
|
|
156
|
+
* Size: 0x0110
|
|
157
|
+
* Extends: UObject
|
|
158
|
+
*/
|
|
159
|
+
export type UOnlineGameClipsInterfaceEOS = UObject & {
|
|
160
|
+
GameClipsHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
161
|
+
__EventAvailabilityChanged__Delegate: FScriptDelegate; // 0x0068 (0x0018) [FScriptDelegate]
|
|
162
|
+
__EventRecordingChanged__Delegate: FScriptDelegate; // 0x0080 (0x0018) [FScriptDelegate]
|
|
163
|
+
__EventConnectionStatusChanged__Delegate: FScriptDelegate; // 0x0098 (0x0018) [FScriptDelegate]
|
|
164
|
+
__EventClipStatusChanged__Delegate: FScriptDelegate; // 0x00b0 (0x0018) [FScriptDelegate]
|
|
165
|
+
__EventMaskStatusChanged__Delegate: FScriptDelegate; // 0x00c8 (0x0018) [FScriptDelegate]
|
|
166
|
+
__EventGeneralErrorOccurred__Delegate: FScriptDelegate; // 0x00e0 (0x0018) [FScriptDelegate]
|
|
167
|
+
__EventClipErrorOccurred__Delegate: FScriptDelegate; // 0x00f8 (0x0018) [FScriptDelegate]
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
// OnlineGameClipsInterfaceEOS Functions
|
|
171
|
+
// NotifyEventClipErrorOccurred(InCallback: FScriptDelegate): void
|
|
172
|
+
// EventClipErrorOccurred(InEpicAccountId: string, ClipId: number, InErrorType: UErrorType): void
|
|
173
|
+
// NotifyEventGeneralErrorOccurred(InCallback: FScriptDelegate): void
|
|
174
|
+
// EventGeneralErrorOccurred(InErrorType: UErrorType): void
|
|
175
|
+
// NotifyEventMaskStatusChanged(InCallback: FScriptDelegate): void
|
|
176
|
+
// EventMaskStatusChanged(InMaskAreaHandle: bigint, InMaskArea: FGameClipsMaskArea, InNewMaskStatus: EGameClipsMaskStatus): void
|
|
177
|
+
// NotifyEventClipStatusChanged(InCallback: FScriptDelegate): void
|
|
178
|
+
// EventClipStatusChanged(InEpicAccountId: string, InClipId: number, InNewClipStatus: EGameClipsClipStatus): void
|
|
179
|
+
// NotifyEventConnectionStatusChanged(InCallback: FScriptDelegate): void
|
|
180
|
+
// EventConnectionStatusChanged(InEpicAccountId: string, InConnection: EGameClipsConnection, InNewConnectionStatus: EGameClipsConnectionStatus): void
|
|
181
|
+
// NotifyEventRecordingChanged(InCallback: FScriptDelegate): void
|
|
182
|
+
// EventRecordingChanged(InNewRecording: EGameClipsRecording): void
|
|
183
|
+
// NotifyEventAvailabilityChanged(InCallback: FScriptDelegate): void
|
|
184
|
+
// EventAvailabilityChanged(InNewAvailability: EGameClipsAvailability): void
|
|
185
|
+
// IsUploading(): boolean
|
|
186
|
+
// IsRecording(): boolean
|
|
187
|
+
// IsAvailable(): boolean
|
|
188
|
+
// GetTimeUntilUnthrottled(InEpicAccountId: string): number
|
|
189
|
+
// IsClipUploadingLimitReached(InEpicAccountId: string): boolean
|
|
190
|
+
// SetUserMaxClipUploadsPerMinute(InMaxClipUploadsPerMinute: number): void
|
|
191
|
+
// IsAccountLinked(InEpicAccountId: string): boolean
|
|
192
|
+
// CreateClip(InEpicAccountId: string, InClipType: string): number
|
|
193
|
+
// DisableMaskArea(InMaskAreaHandle: bigint): void
|
|
194
|
+
// EnableMaskArea(InMaskArea: FGameClipsMaskArea): bigint
|
|
195
|
+
// StopRecording(): void
|
|
196
|
+
// StartRecording(InClipDuration: bigint): void
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Class OnlineSubsystemEOS.OnlineGameInterfaceEOS
|
|
200
|
+
* Size: 0x0334
|
|
201
|
+
* Extends: UOnlineGameInterfaceImpl
|
|
202
|
+
*/
|
|
203
|
+
export type UOnlineGameInterfaceEOS = UOnlineGameInterfaceImpl & {
|
|
204
|
+
SessionsHandle: FPointer; // 0x0318 (0x0008) [FPointer]
|
|
205
|
+
CurrentSearchHandle: FPointer; // 0x0320 (0x0008) [FPointer]
|
|
206
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0328 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
207
|
+
bGameSessionUpdateInProgress: boolean; // 0x0330 (0x0004) [bool : 0x1]
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
// OnlineGameInterfaceEOS Functions
|
|
211
|
+
// AcceptGameInvite(LocalUserNum: number, SessionName: FName): boolean
|
|
212
|
+
// FreeSearchResults(Search: UOnlineGameSearch): boolean
|
|
213
|
+
// UpdateOnlineGame(SessionName: FName, UpdatedGameSettings: UOnlineGameSettings, bShouldRefreshOnlineData: boolean): boolean
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Class OnlineSubsystemEOS.OnlinePersistentAuthInterfaceEOS
|
|
217
|
+
* Size: 0x00C0
|
|
218
|
+
* Extends: UOnlinePersistentAuthInterfaceImpl
|
|
219
|
+
*/
|
|
220
|
+
export type UOnlinePersistentAuthInterfaceEOS = UOnlinePersistentAuthInterfaceImpl & {
|
|
221
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x00b8 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
// OnlinePersistentAuthInterfaceEOS Functions
|
|
225
|
+
// AuthWithNintendoAccountToken(LocalUserNum: number, NintendoAccountToken: string): boolean
|
|
226
|
+
// GetTimeUntilAuthExpiration(LocalUserNum: number): bigint
|
|
227
|
+
// GetAuthExpirationTimestamp(LocalUserNum: number): UDateTime
|
|
228
|
+
// LaunchAccountPortal(LocalUserNum: number): boolean
|
|
229
|
+
// GetClientSecret(): string
|
|
230
|
+
// GetClientID(): string
|
|
231
|
+
// GetClientCredentials(): string
|
|
232
|
+
// GetContinuanceToken(LocalUserNum: number): string
|
|
233
|
+
// UseRefreshToken(LocalUserNum: number, RefreshToken: string): boolean
|
|
234
|
+
// GetRefreshToken(LocalUserNum: number): string
|
|
235
|
+
// RequestPinGrantCode(LocalUserNum: number): boolean
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Class OnlineSubsystemEOS.OnlinePlayerInterfaceEOS
|
|
239
|
+
* Size: 0x06B0
|
|
240
|
+
* Extends: UObject
|
|
241
|
+
*/
|
|
242
|
+
export type UOnlinePlayerInterfaceEOS = UObject & {
|
|
243
|
+
AuthHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
244
|
+
FriendsHandle: FPointer; // 0x0068 (0x0008) [FPointer]
|
|
245
|
+
UserInfoHandle: FPointer; // 0x0070 (0x0008) [FPointer]
|
|
246
|
+
PresenceHandle: FPointer; // 0x0078 (0x0008) [FPointer]
|
|
247
|
+
ConnectHandle: FPointer; // 0x0080 (0x0008) [FPointer]
|
|
248
|
+
PDSHandle: FPointer; // 0x0088 (0x0008) [FPointer]
|
|
249
|
+
EcomHandle: FPointer; // 0x0090 (0x0008) [FPointer]
|
|
250
|
+
OwningSubsystem: UOnlineSubsystemCommonImpl; // 0x0098 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
251
|
+
GameInterfaceEOS: UOnlineGameInterfaceEOS; // 0x00a0 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
252
|
+
PersistentAuthInterfaceEOS: UOnlinePersistentAuthInterfaceEOS; // 0x00a8 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
253
|
+
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; // 0x00b0 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
254
|
+
DefaultLocalUser: number; // 0x00b8 (0x0004) [int32]
|
|
255
|
+
ProfileDataDirectory: string; // 0x00c0 (0x0010) [FString]
|
|
256
|
+
ProfileDataExtension: string; // 0x00d0 (0x0010) [FString]
|
|
257
|
+
ReadProfileSettingsDelegates: FScriptDelegate[]; // 0x00e0 (0x0010) [TArray<FScriptDelegate>]
|
|
258
|
+
WriteProfileSettingsDelegates: FScriptDelegate[]; // 0x00f0 (0x0010) [TArray<FScriptDelegate>]
|
|
259
|
+
CachedProfile: UOnlineProfileSettings; // 0x0100 (0x0008) [UOnlineProfileSettings*]
|
|
260
|
+
LastProfileSettings: FOnlineProfileSetting[]; // 0x0108 (0x0010) [TArray<FOnlineProfileSetting>]
|
|
261
|
+
ReadFriendsDelegates: FScriptDelegate[]; // 0x0118 (0x0010) [TArray<FScriptDelegate>]
|
|
262
|
+
FriendsReadState: EOnlineEnumerationReadState; // 0x0128 (0x0001) [EOnlineEnumerationReadState]
|
|
263
|
+
FriendsChangeDelegates: FScriptDelegate[]; // 0x0130 (0x0010) [TArray<FScriptDelegate>]
|
|
264
|
+
LoginFailedDelegates: FScriptDelegate[]; // 0x0140 (0x0010) [TArray<FScriptDelegate>]
|
|
265
|
+
LoginCancelledDelegates: FScriptDelegate[]; // 0x0150 (0x0010) [TArray<FScriptDelegate>]
|
|
266
|
+
LogoutCompletedDelegates: FScriptDelegate[]; // 0x0160 (0x0010) [TArray<FScriptDelegate>]
|
|
267
|
+
MutingChangeDelegates: FScriptDelegate[]; // 0x0170 (0x0010) [TArray<FScriptDelegate>]
|
|
268
|
+
StatusMappings: FOnlineStatusMappingEOS[]; // 0x0180 (0x0010) [TArray<FOnlineStatusMappingEOS>]
|
|
269
|
+
DefaultStatus: string; // 0x0190 (0x0010) [FString]
|
|
270
|
+
ReceivedGameInviteDelegates: FScriptDelegate[]; // 0x01a0 (0x0010) [TArray<FScriptDelegate>]
|
|
271
|
+
CachedFriendMessages: FOnlineFriendMessage[]; // 0x01b0 (0x0010) [TArray<FOnlineFriendMessage>]
|
|
272
|
+
JoinFriendGameCompleteDelegates: FScriptDelegate[]; // 0x01c0 (0x0010) [TArray<FScriptDelegate>]
|
|
273
|
+
AchievementDelegates: FScriptDelegate[]; // 0x01d0 (0x0010) [TArray<FScriptDelegate>]
|
|
274
|
+
AchievementReadDelegates: FScriptDelegate[]; // 0x01e0 (0x0010) [TArray<FScriptDelegate>]
|
|
275
|
+
AchievementsHandle: FPointer; // 0x01f0 (0x0008) [FPointer]
|
|
276
|
+
LoginChangeDelegates: FScriptDelegate[]; // 0x01f8 (0x0010) [TArray<FScriptDelegate>]
|
|
277
|
+
ReceivedPinGrantDelegates: FScriptDelegate[]; // 0x0208 (0x0010) [TArray<FScriptDelegate>]
|
|
278
|
+
BlockListUpdatedDelegates: FScriptDelegate[]; // 0x0218 (0x0010) [TArray<FScriptDelegate>]
|
|
279
|
+
PlayerBlockedDelegates: FScriptDelegate[]; // 0x0228 (0x0010) [TArray<FScriptDelegate>]
|
|
280
|
+
PlayerUnblockedDelegates: FScriptDelegate[]; // 0x0238 (0x0010) [TArray<FScriptDelegate>]
|
|
281
|
+
__OnBlockListUpdated__Delegate: FScriptDelegate; // 0x0248 (0x0018) [FScriptDelegate]
|
|
282
|
+
__OnPlayerBlocked__Delegate: FScriptDelegate; // 0x0260 (0x0018) [FScriptDelegate]
|
|
283
|
+
__OnPlayerUnblocked__Delegate: FScriptDelegate; // 0x0278 (0x0018) [FScriptDelegate]
|
|
284
|
+
__OnLoginChange__Delegate: FScriptDelegate; // 0x0290 (0x0018) [FScriptDelegate]
|
|
285
|
+
__OnLoginCancelled__Delegate: FScriptDelegate; // 0x02a8 (0x0018) [FScriptDelegate]
|
|
286
|
+
__OnMutingChange__Delegate: FScriptDelegate; // 0x02c0 (0x0018) [FScriptDelegate]
|
|
287
|
+
__OnFriendsChange__Delegate: FScriptDelegate; // 0x02d8 (0x0018) [FScriptDelegate]
|
|
288
|
+
__OnLoginFailed__Delegate: FScriptDelegate; // 0x02f0 (0x0018) [FScriptDelegate]
|
|
289
|
+
__OnReceievedPinGrantCode__Delegate: FScriptDelegate; // 0x0308 (0x0018) [FScriptDelegate]
|
|
290
|
+
__OnLogoutCompleted__Delegate: FScriptDelegate; // 0x0320 (0x0018) [FScriptDelegate]
|
|
291
|
+
__OnReadProfileSettingsComplete__Delegate: FScriptDelegate; // 0x0338 (0x0018) [FScriptDelegate]
|
|
292
|
+
__OnWriteProfileSettingsComplete__Delegate: FScriptDelegate; // 0x0350 (0x0018) [FScriptDelegate]
|
|
293
|
+
__OnReadFriendsComplete__Delegate: FScriptDelegate; // 0x0368 (0x0018) [FScriptDelegate]
|
|
294
|
+
__OnKeyboardInputComplete__Delegate: FScriptDelegate; // 0x0380 (0x0018) [FScriptDelegate]
|
|
295
|
+
__OnAddFriendComplete__Delegate: FScriptDelegate; // 0x0398 (0x0018) [FScriptDelegate]
|
|
296
|
+
__OnQueryUserByDisplayName__Delegate: FScriptDelegate; // 0x03b0 (0x0018) [FScriptDelegate]
|
|
297
|
+
__OnAddFriendByNameComplete__Delegate: FScriptDelegate; // 0x03c8 (0x0018) [FScriptDelegate]
|
|
298
|
+
__OnAcceptFriendInviteComplete__Delegate: FScriptDelegate; // 0x03e0 (0x0018) [FScriptDelegate]
|
|
299
|
+
__OnDenyFriendInviteComplete__Delegate: FScriptDelegate; // 0x03f8 (0x0018) [FScriptDelegate]
|
|
300
|
+
__OnRemoveFriendComplete__Delegate: FScriptDelegate; // 0x0410 (0x0018) [FScriptDelegate]
|
|
301
|
+
__OnFriendInviteReceived__Delegate: FScriptDelegate; // 0x0428 (0x0018) [FScriptDelegate]
|
|
302
|
+
__OnFriendInviteCanceled__Delegate: FScriptDelegate; // 0x0440 (0x0018) [FScriptDelegate]
|
|
303
|
+
__OnReceivedGameInvite__Delegate: FScriptDelegate; // 0x0458 (0x0018) [FScriptDelegate]
|
|
304
|
+
__OnJoinFriendGameComplete__Delegate: FScriptDelegate; // 0x0470 (0x0018) [FScriptDelegate]
|
|
305
|
+
__OnFriendMessageReceived__Delegate: FScriptDelegate; // 0x0488 (0x0018) [FScriptDelegate]
|
|
306
|
+
__OnRequestNativePlatformAuthTicketComplete__Delegate: FScriptDelegate; // 0x04a0 (0x0018) [FScriptDelegate]
|
|
307
|
+
__OnReadPlayerStorageComplete__Delegate: FScriptDelegate; // 0x04b8 (0x0018) [FScriptDelegate]
|
|
308
|
+
__OnReadPlayerStorageForNetIdComplete__Delegate: FScriptDelegate; // 0x04d0 (0x0018) [FScriptDelegate]
|
|
309
|
+
__OnWritePlayerStorageComplete__Delegate: FScriptDelegate; // 0x04e8 (0x0018) [FScriptDelegate]
|
|
310
|
+
__OnReadCrossTitleProfileSettingsComplete__Delegate: FScriptDelegate; // 0x0500 (0x0018) [FScriptDelegate]
|
|
311
|
+
__OnUserSignInComplete__Delegate: FScriptDelegate; // 0x0518 (0x0018) [FScriptDelegate]
|
|
312
|
+
__CanPlayOnlineChanged__Delegate: FScriptDelegate; // 0x0530 (0x0018) [FScriptDelegate]
|
|
313
|
+
__OnSaveDataNoSpaceDialogComplete__Delegate: FScriptDelegate; // 0x0548 (0x0018) [FScriptDelegate]
|
|
314
|
+
__OnRegisteredController__Delegate: FScriptDelegate; // 0x0560 (0x0018) [FScriptDelegate]
|
|
315
|
+
__OnUnregisteredController__Delegate: FScriptDelegate; // 0x0578 (0x0018) [FScriptDelegate]
|
|
316
|
+
__OnInputAPIChanged__Delegate: FScriptDelegate; // 0x0590 (0x0018) [FScriptDelegate]
|
|
317
|
+
__OnLoginStatusChange__Delegate: FScriptDelegate; // 0x05a8 (0x0018) [FScriptDelegate]
|
|
318
|
+
__OnUserSwitchComplete__Delegate: FScriptDelegate; // 0x05c0 (0x0018) [FScriptDelegate]
|
|
319
|
+
__OnDeviceSelectionComplete__Delegate: FScriptDelegate; // 0x05d8 (0x0018) [FScriptDelegate]
|
|
320
|
+
__OnProfileDataChanged__Delegate: FScriptDelegate; // 0x05f0 (0x0018) [FScriptDelegate]
|
|
321
|
+
__OnUnlockAchievementComplete__Delegate: FScriptDelegate; // 0x0608 (0x0018) [FScriptDelegate]
|
|
322
|
+
__OnReadAchievementsComplete__Delegate: FScriptDelegate; // 0x0620 (0x0018) [FScriptDelegate]
|
|
323
|
+
__OnAvatarChange__Delegate: FScriptDelegate; // 0x0638 (0x0018) [FScriptDelegate]
|
|
324
|
+
__FriendPresenceChange__Delegate: FScriptDelegate; // 0x0650 (0x0018) [FScriptDelegate]
|
|
325
|
+
__OnSanitizeStringComplete__Delegate: FScriptDelegate; // 0x0668 (0x0018) [FScriptDelegate]
|
|
326
|
+
__EpicIDToPlatformIDCallback__Delegate: FScriptDelegate; // 0x0680 (0x0018) [FScriptDelegate]
|
|
327
|
+
__OnFriendInviteAccepted__Delegate: FScriptDelegate; // 0x0698 (0x0018) [FScriptDelegate]
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
// OnlinePlayerInterfaceEOS Functions
|
|
331
|
+
// AddFriendInviteAcceptedDelegate(LocalUserNum: number, InviteAccepted: FScriptDelegate): void
|
|
332
|
+
// OnFriendInviteAccepted(AcceptingPlayerId: FUniqueNetId): void
|
|
333
|
+
// ReadBlockList(LocalUserNum: number): boolean
|
|
334
|
+
// GetBlockList(LocalUserNum: number, OutBlockList: FOnlineFriend[]): void
|
|
335
|
+
// AddPlayerUnblockedDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
336
|
+
// AddPlayerBlockedDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
337
|
+
// AddBlockListUpdatedDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
338
|
+
// EpicIDToPlatformID(EpicAccountId: FUniqueNetId, TargetPlatform: OnlinePlatform, Callback: FScriptDelegate): void
|
|
339
|
+
// EpicIDToPlatformIDCallback(PlatformAccountId: FUniqueNetId, Error: string): void
|
|
340
|
+
// GetEpicAccountId(PlatformId: FUniqueNetId): FUniqueNetId
|
|
341
|
+
// ShowInviteUI(LocalUserNum: number, InviteText: string): boolean
|
|
342
|
+
// ShowGamerCardUI(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
343
|
+
// SetRichPresence(LocalUserNum: number, PresenceString: string, GameDataString: string): void
|
|
344
|
+
// GetFriendPresence(FriendData: FOnlineFriend): void
|
|
345
|
+
// RecordPlayersRecentlyMet(LocalUserNum: number, Players: FUniqueNetId[], GameDescription: string): boolean
|
|
346
|
+
// WordFilterSanitizeString(Comment: string, SanitizeDelegate: FScriptDelegate, PlayerID: FUniqueNetId): boolean
|
|
347
|
+
// OnSanitizeStringComplete(Result: FWordFilterResult): void
|
|
348
|
+
// HideKeyboardUI(LocalUserNum: number): boolean
|
|
349
|
+
// GetPlayerCountry(LocalUserNum: number): string
|
|
350
|
+
// ClearAvatarChangeDelegate(LocalUserNum: number, AvatarDelegate: FScriptDelegate): void
|
|
351
|
+
// AddAvatarChangeDelegate(LocalUserNum: number, AvatarDelegate: FScriptDelegate): void
|
|
352
|
+
// ClearFriendPresenceChangeDelegate(LocalUserNum: number, PresenceDelegate: FScriptDelegate): void
|
|
353
|
+
// AddFriendPresenceChangeDelegate(LocalUserNum: number, PresenceDelegate: FScriptDelegate): void
|
|
354
|
+
// FriendPresenceChange(PlayerID: FUniqueNetId): void
|
|
355
|
+
// OnAvatarChange(PlayerID: FUniqueNetId): void
|
|
356
|
+
// UnlockAchievement(LocalUserNum: number, AchievementId: number, PercentComplete: number): boolean
|
|
357
|
+
// ReadAchievements(LocalUserNum: number, TitleId: number, bShouldReadText: boolean, bShouldReadImages: boolean): boolean
|
|
358
|
+
// GetAchievements(LocalUserNum: number, Achievements: FAchievementDetails[], TitleId: number): EOnlineEnumerationReadState
|
|
359
|
+
// ClearReadAchievementsCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
360
|
+
// ClearUnlockAchievementCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
361
|
+
// AddReadAchievementsCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
362
|
+
// AddUnlockAchievementCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
363
|
+
// OnReadAchievementsComplete(TitleId: number): void
|
|
364
|
+
// OnUnlockAchievementComplete(bWasSuccessful: boolean): void
|
|
365
|
+
// ShowControllerUI(): boolean
|
|
366
|
+
// GetPlayerLanguage(LocalUserNum: number): string
|
|
367
|
+
// ShowPlayersUI(LocalUserNum: number): boolean
|
|
368
|
+
// ClearProfileDataChangedDelegate(LocalUserNum: number, ProfileDataChangedDelegate: FScriptDelegate): void
|
|
369
|
+
// AddProfileDataChangedDelegate(LocalUserNum: number, ProfileDataChangedDelegate: FScriptDelegate): void
|
|
370
|
+
// OnProfileDataChanged(): void
|
|
371
|
+
// UnlockGamerPicture(LocalUserNum: number, PictureId: number): boolean
|
|
372
|
+
// IsDeviceValid(DeviceID: number): boolean
|
|
373
|
+
// GetDeviceSelectionResults(LocalUserNum: number, DeviceName: string): number
|
|
374
|
+
// ClearDeviceSelectionDoneDelegate(LocalUserNum: number, DeviceDelegate: FScriptDelegate): void
|
|
375
|
+
// AddDeviceSelectionDoneDelegate(LocalUserNum: number, DeviceDelegate: FScriptDelegate): void
|
|
376
|
+
// OnDeviceSelectionComplete(bWasSuccessful: boolean): void
|
|
377
|
+
// ShowDeviceSelectionUI(LocalUserNum: number, SizeNeeded: number, bForceShowUI: boolean): boolean
|
|
378
|
+
// ShowCustomPlayersUI(LocalUserNum: number, Players: FUniqueNetId[], Title: string, Description: string): boolean
|
|
379
|
+
// IsUserSwitchActive(): boolean
|
|
380
|
+
// SetKickPlayerDialogActive(Active: boolean): void
|
|
381
|
+
// SetKickPreviousUser(LocalUserNum: number): void
|
|
382
|
+
// ShowLoginUIForOrphanedUser(LocalUserNum: number): boolean
|
|
383
|
+
// GetSyncedAchievements(LocalUserNum: number): boolean[]
|
|
384
|
+
// IsGuestLogin(LocalUserNum: number): boolean
|
|
385
|
+
// RequestRestrictedFeatureMessaging(LocalUserNum: number, RestrictedFeature: EFeaturePrivilege): void
|
|
386
|
+
// CanCommunicateVoice(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
387
|
+
// CanCommunicateVideo(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
388
|
+
// CanCommunicateText(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
389
|
+
// CanShareUserCreatedContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
390
|
+
// CanAccessPremiumVideoContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
391
|
+
// CanAccessPremiumContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
392
|
+
// CanUseCloudStorage(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
393
|
+
// CanRecordDVRClips(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
394
|
+
// CanBrowseInternet(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
395
|
+
// CanShareWithSocialNetwork(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
396
|
+
// CanShareKinectContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
397
|
+
// CanUploadFitnessData(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
398
|
+
// SetPrimaryPlayerGamepadToLastInput(): void
|
|
399
|
+
// ClearUserSwitchCompleteDelegate(UserSwitchCompleteDelegate: FScriptDelegate): void
|
|
400
|
+
// AddUserSwitchCompleteDelegate(UserSwitchCompleteDelegate: FScriptDelegate): void
|
|
401
|
+
// OnUserSwitchComplete(LocalUserNum: number): void
|
|
402
|
+
// ClearLoginStatusChangeDelegate(InDelegate: FScriptDelegate, LocalUserNum: number): void
|
|
403
|
+
// AddLoginStatusChangeDelegate(InDelegate: FScriptDelegate, LocalUserNum: number): void
|
|
404
|
+
// OnLoginStatusChange(NewStatus: ELoginStatus, NewId: FUniqueNetId): void
|
|
405
|
+
// GetPlayHistoryRegistrationKey(Key: number[]): boolean
|
|
406
|
+
// CheckParentalControlInfo(bShowUi: boolean): boolean
|
|
407
|
+
// GetActiveDiscDLC(): FName[]
|
|
408
|
+
// SetOnlineSubscriptionRequirement(bRequiresOnlineSubscription: boolean): void
|
|
409
|
+
// GetControllerID(LocalPlayerNum: number): number
|
|
410
|
+
// GetConnectedControllerNames(): FName[]
|
|
411
|
+
// OnLocalPlayerRemoved(LocalPlayerNum: number): void
|
|
412
|
+
// UnregisterController(LocalPlayerNum: number): void
|
|
413
|
+
// RegisterController(LocalPlayerNum: number, ControllerId: number): void
|
|
414
|
+
// CanRegisterController(LocalPlayerNum: number): boolean
|
|
415
|
+
// ShowBindings(ControllerId: number): boolean
|
|
416
|
+
// SetControllerLayout(ControllerId: number, LayoutName: FName): void
|
|
417
|
+
// SetInputAPI(TargetAPI: EInputAPI): void
|
|
418
|
+
// ClearInputAPIChangedDelegate(InputAPIChangedDelegate: FScriptDelegate): void
|
|
419
|
+
// AddInputAPIChangedDelegate(InputAPIChangedDelegate: FScriptDelegate): void
|
|
420
|
+
// OnInputAPIChanged(TargetAPI: EInputAPI): void
|
|
421
|
+
// ClearUnregisteredControllerDelegate(UnregisteredControllerDelegate: FScriptDelegate): void
|
|
422
|
+
// ClearRegisteredControllerDelegate(RegisteredControllerDelegate: FScriptDelegate): void
|
|
423
|
+
// AddUnregisteredControllerDelegate(UnregisteredControllerDelegate: FScriptDelegate): void
|
|
424
|
+
// AddRegisteredControllerDelegate(RegisteredControllerDelegate: FScriptDelegate): void
|
|
425
|
+
// OnUnregisteredController(LocalPlayerNum: number): void
|
|
426
|
+
// OnRegisteredController(LocalPlayerNum: number, ControllerId: number): void
|
|
427
|
+
// AddInGamePost(InPostID: string, LocalUserNum: number, StringReplaceList: string[]): boolean
|
|
428
|
+
// UpdateStat(LocalUserNum: number, StatName: FName, Points: number): boolean
|
|
429
|
+
// ClearSaveDataNoSpaceDialogCompleteDelegate(DeviceDelegate: FScriptDelegate): void
|
|
430
|
+
// AddSaveDataNoSpaceDialogCompleteDelegate(DeviceDelegate: FScriptDelegate): void
|
|
431
|
+
// OnSaveDataNoSpaceDialogComplete(bContinueWithoutSave: boolean): void
|
|
432
|
+
// RecordPlayersRecentlyMetKeys(LocalUserNum: number, PlayerKeys: FFriendHistoryKey[]): boolean
|
|
433
|
+
// IsAchievementUnlocked(AchievementId: number): boolean
|
|
434
|
+
// ShowContentMarketplaceUI(LocalUserNum: number): boolean
|
|
435
|
+
// ShowFriendsInviteUI(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
436
|
+
// ShowAchievementsUI(LocalUserNum: number): boolean
|
|
437
|
+
// ShowMessagesUI(LocalUserNum: number): boolean
|
|
438
|
+
// ShowFeedbackUI(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
439
|
+
// RemoveCanPlayOnlineChangedDelegate(Callback: FScriptDelegate): void
|
|
440
|
+
// AddCanPlayOnlineChangedDelegate(Callback: FScriptDelegate): void
|
|
441
|
+
// CanPlayOnlineChanged(LocalUserNum: number): void
|
|
442
|
+
// ClearUserSignInCompleteDelegate(InDelegate: FScriptDelegate): void
|
|
443
|
+
// AddUserSignInCompleteDelegate(InDelegate: FScriptDelegate): void
|
|
444
|
+
// OnUserSignInComplete(LocalUserNum: number): void
|
|
445
|
+
// ShowCustomMessageUI(LocalUserNum: number, Recipients: FUniqueNetId[], MessageTitle: string, NonEditableMessage: string, EditableMessage: string): boolean
|
|
446
|
+
// ClearCrossTitleProfileSettings(LocalUserNum: number, TitleId: number): void
|
|
447
|
+
// GetCrossTitleProfileSettings(LocalUserNum: number, TitleId: number): UOnlineProfileSettings
|
|
448
|
+
// ClearReadCrossTitleProfileSettingsCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
449
|
+
// AddReadCrossTitleProfileSettingsCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
450
|
+
// OnReadCrossTitleProfileSettingsComplete(LocalUserNum: number, TitleId: number, bWasSuccessful: boolean): void
|
|
451
|
+
// ReadCrossTitleProfileSettings(LocalUserNum: number, TitleId: number, ProfileSettings: UOnlineProfileSettings): boolean
|
|
452
|
+
// ClearWritePlayerStorageCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
453
|
+
// AddWritePlayerStorageCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
454
|
+
// OnWritePlayerStorageComplete(LocalUserNum: number, bWasSuccessful: boolean): void
|
|
455
|
+
// WritePlayerStorage(LocalUserNum: number, PlayerStorage: UOnlinePlayerStorage, DeviceID: number): boolean
|
|
456
|
+
// ClearReadPlayerStorageForNetIdCompleteDelegate(NetId: FUniqueNetId, InDelegate: FScriptDelegate): void
|
|
457
|
+
// AddReadPlayerStorageForNetIdCompleteDelegate(NetId: FUniqueNetId, InDelegate: FScriptDelegate): void
|
|
458
|
+
// OnReadPlayerStorageForNetIdComplete(NetId: FUniqueNetId, bWasSuccessful: boolean): void
|
|
459
|
+
// ReadPlayerStorageForNetId(LocalUserNum: number, NetId: FUniqueNetId, PlayerStorage: UOnlinePlayerStorage): boolean
|
|
460
|
+
// ClearReadPlayerStorageCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
461
|
+
// AddReadPlayerStorageCompleteDelegate(LocalUserNum: number, InDelegate: FScriptDelegate): void
|
|
462
|
+
// OnReadPlayerStorageComplete(LocalUserNum: number, bWasSuccessful: boolean): void
|
|
463
|
+
// ReadPlayerStorage(LocalUserNum: number, PlayerStorage: UOnlinePlayerStorage, DeviceID: number): boolean
|
|
464
|
+
// GetPlayerStorage(LocalUserNum: number): UOnlinePlayerStorage
|
|
465
|
+
// RequestNativePlatformAuthTicket(LocalUserNum: number, Callback: FScriptDelegate): void
|
|
466
|
+
// OnRequestNativePlatformAuthTicketComplete(LocalUserNum: number, PlatformAuthTicket: string): void
|
|
467
|
+
// LinkedAccount(LocalUserNum: number): void
|
|
468
|
+
// ConnectLogin(LocalUserNum: number): void
|
|
469
|
+
// HasIncomingFriendInvite(LocalUserNum: number, InviteFrom: FUniqueNetId): boolean
|
|
470
|
+
// SupportInGameLogin(): boolean
|
|
471
|
+
// HasFriendsFunctionality(): boolean
|
|
472
|
+
// DeleteMessage(LocalUserNum: number, MessageIndex: number): boolean
|
|
473
|
+
// ClearFriendMessageReceivedDelegate(LocalUserNum: number, MessageDelegate: FScriptDelegate): void
|
|
474
|
+
// AddFriendMessageReceivedDelegate(LocalUserNum: number, MessageDelegate: FScriptDelegate): void
|
|
475
|
+
// OnFriendMessageReceived(LocalUserNum: number, SendingPlayer: FUniqueNetId, SendingNick: string, Message: string): void
|
|
476
|
+
// GetFriendMessages(LocalUserNum: number, FriendMessages: FOnlineFriendMessage[]): void
|
|
477
|
+
// ClearJoinFriendGameCompleteDelegate(JoinFriendGameCompleteDelegate: FScriptDelegate): void
|
|
478
|
+
// AddJoinFriendGameCompleteDelegate(JoinFriendGameCompleteDelegate: FScriptDelegate): void
|
|
479
|
+
// OnJoinFriendGameComplete(bWasSuccessful: boolean): void
|
|
480
|
+
// JoinFriendGame(LocalUserNum: number, Friend: FUniqueNetId): boolean
|
|
481
|
+
// ClearReceivedGameInviteDelegate(LocalUserNum: number, ReceivedGameInviteDelegate: FScriptDelegate): void
|
|
482
|
+
// AddReceivedGameInviteDelegate(LocalUserNum: number, ReceivedGameInviteDelegate: FScriptDelegate): void
|
|
483
|
+
// OnReceivedGameInvite(LocalUserNum: number, InviterName: string): void
|
|
484
|
+
// SendGameInviteToFriends(LocalUserNum: number, Friends: FUniqueNetId[], Text: string): boolean
|
|
485
|
+
// SendGameInviteToFriend(LocalUserNum: number, Friend: FUniqueNetId, Text: string): boolean
|
|
486
|
+
// SendMessageToFriend(LocalUserNum: number, Friend: FUniqueNetId, Message: string): boolean
|
|
487
|
+
// ClearFriendInviteCanceledDelegate(LocalUserNum: number, InviteDelegate: FScriptDelegate): void
|
|
488
|
+
// AddFriendInviteCanceledDelegate(LocalUserNum: number, InviteDelegate: FScriptDelegate): void
|
|
489
|
+
// OnFriendInviteCanceled(LocalUserNum: number, CanceledUserId: FUniqueNetId): void
|
|
490
|
+
// ClearFriendInviteReceivedDelegate(LocalUserNum: number, InviteDelegate: FScriptDelegate): void
|
|
491
|
+
// AddFriendInviteReceivedDelegate(LocalUserNum: number, InviteDelegate: FScriptDelegate): void
|
|
492
|
+
// OnFriendInviteReceived(LocalUserNum: number, RequestingPlayer: FUniqueNetId, RequestingNick: string, Message: string): void
|
|
493
|
+
// RemoveFriend(LocalUserNum: number, FormerFriend: FUniqueNetId): boolean
|
|
494
|
+
// ClearRemoveFriendCompleteDelegate(LocalUserNum: number, RemoveFriendDelegate: FScriptDelegate): void
|
|
495
|
+
// AddRemoveFriendCompleteDelegate(LocalUserNum: number, RemoveFriendDelegate: FScriptDelegate): void
|
|
496
|
+
// OnRemoveFriendComplete(bWasSuccessful: boolean, RemovedID: FUniqueNetId): void
|
|
497
|
+
// DenyFriendInvite(LocalUserNum: number, RequestingPlayer: FUniqueNetId): boolean
|
|
498
|
+
// ClearDenyFriendInviteCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
499
|
+
// AddDenyFriendInviteCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
500
|
+
// OnDenyFriendInviteComplete(FriendId: FUniqueNetId, Error: UError): void
|
|
501
|
+
// AcceptFriendInvite(LocalUserNum: number, RequestingPlayer: FUniqueNetId): boolean
|
|
502
|
+
// ClearAcceptFriendInviteCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
503
|
+
// AddAcceptFriendInviteCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
504
|
+
// OnAcceptFriendInviteComplete(FriendId: FUniqueNetId, Error: UError): void
|
|
505
|
+
// ClearAddFriendByNameCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
506
|
+
// AddAddFriendByNameCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
507
|
+
// OnAddFriendByNameComplete(bWasSuccessful: boolean): void
|
|
508
|
+
// AddFriendByName(LocalUserNum: number, FriendName: string, Message: string): boolean
|
|
509
|
+
// QueryUserByDisplayName(LocalUserNum: number, DisplayName: string): boolean
|
|
510
|
+
// ClearQueryUserByDisplayNameCompleteDelegate(LocalUserNum: number, QueryDelegate: FScriptDelegate): void
|
|
511
|
+
// AddQueryUserByDisplayNameCompleteDelegate(LocalUserNum: number, QueryDelegate: FScriptDelegate): void
|
|
512
|
+
// OnQueryUserByDisplayName(bWasSuccessful: boolean, QueriedDisplayName: string, UserId: FUniqueNetId): void
|
|
513
|
+
// AddFriend(LocalUserNum: number, NewFriend: FUniqueNetId, Message: string): boolean
|
|
514
|
+
// ClearAddFriendCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
515
|
+
// AddAddFriendCompleteDelegate(LocalUserNum: number, FriendDelegate: FScriptDelegate): void
|
|
516
|
+
// OnAddFriendComplete(NewFriendId: FUniqueNetId, Error: UError): void
|
|
517
|
+
// GetKeyboardInputResults(bWasCanceled: number): string
|
|
518
|
+
// ClearKeyboardInputDoneDelegate(InputDelegate: FScriptDelegate): void
|
|
519
|
+
// AddKeyboardInputDoneDelegate(InputDelegate: FScriptDelegate): void
|
|
520
|
+
// OnKeyboardInputComplete(bWasSuccessful: boolean): void
|
|
521
|
+
// ShowKeyboardUI(LocalUserNum: number, TitleText: string, DescriptionText: string, bIsPassword: boolean, bShouldValidate: boolean, DefaultText: string, MaxResultLength: number): boolean
|
|
522
|
+
// SetOnlineStatus(LocalUserNum: number, StatusId: number, LocalizedStringSettings: FLocalizedStringSetting[], Properties: FSettingsProperty[]): void
|
|
523
|
+
// GetFriendsList(LocalUserNum: number, Friends: FOnlineFriend[], Count: number, StartingAt: number): EOnlineEnumerationReadState
|
|
524
|
+
// ClearReadFriendsCompleteDelegate(LocalUserNum: number, ReadFriendsCompleteDelegate: FScriptDelegate): void
|
|
525
|
+
// AddReadFriendsCompleteDelegate(LocalUserNum: number, ReadFriendsCompleteDelegate: FScriptDelegate): void
|
|
526
|
+
// OnReadFriendsComplete(bWasSuccessful: boolean): void
|
|
527
|
+
// ReadFriendsList(LocalUserNum: number, Count: number, StartingAt: number): boolean
|
|
528
|
+
// ClearWriteProfileSettingsCompleteDelegate(LocalUserNum: number, WriteProfileSettingsCompleteDelegate: FScriptDelegate): void
|
|
529
|
+
// AddWriteProfileSettingsCompleteDelegate(LocalUserNum: number, WriteProfileSettingsCompleteDelegate: FScriptDelegate): void
|
|
530
|
+
// OnWriteProfileSettingsComplete(LocalUserNum: number, bWasSuccessful: boolean): void
|
|
531
|
+
// WriteProfileSettings(LocalUserNum: number, ProfileSettings: UOnlineProfileSettings): boolean
|
|
532
|
+
// GetProfileSettings(LocalUserNum: number): UOnlineProfileSettings
|
|
533
|
+
// ClearReadProfileSettingsCompleteDelegate(LocalUserNum: number, ReadProfileSettingsCompleteDelegate: FScriptDelegate): void
|
|
534
|
+
// AddReadProfileSettingsCompleteDelegate(LocalUserNum: number, ReadProfileSettingsCompleteDelegate: FScriptDelegate): void
|
|
535
|
+
// OnReadProfileSettingsComplete(LocalUserNum: number, bWasSuccessful: boolean): void
|
|
536
|
+
// ReadProfileSettings(LocalUserNum: number, ProfileSettings: UOnlineProfileSettings): boolean
|
|
537
|
+
// ClearFriendsChangeDelegate(LocalUserNum: number, FriendsDelegate: FScriptDelegate): void
|
|
538
|
+
// AddFriendsChangeDelegate(LocalUserNum: number, FriendsDelegate: FScriptDelegate): void
|
|
539
|
+
// ClearMutingChangeDelegate(MutingDelegate: FScriptDelegate): void
|
|
540
|
+
// AddMutingChangeDelegate(MutingDelegate: FScriptDelegate): void
|
|
541
|
+
// ClearLoginCancelledDelegate(CancelledDelegate: FScriptDelegate): void
|
|
542
|
+
// AddLoginCancelledDelegate(CancelledDelegate: FScriptDelegate): void
|
|
543
|
+
// ClearLoginChangeDelegate(LoginDelegate: FScriptDelegate): void
|
|
544
|
+
// AddLoginChangeDelegate(LoginDelegate: FScriptDelegate): void
|
|
545
|
+
// ShowFriendsUI(LocalUserNum: number): boolean
|
|
546
|
+
// IsMuted(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
547
|
+
// AreAnyFriends(LocalUserNum: number, Query: FFriendsQuery[]): boolean
|
|
548
|
+
// IsFriend(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
549
|
+
// CanShowPresenceInformation(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
550
|
+
// CanViewPlayerProfiles(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
551
|
+
// CanPurchaseContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
552
|
+
// CanDownloadUserContent(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
553
|
+
// CanCommunicate(LocalUserNum: number, CommMethod: ECommunicationMethod, bAttemptToResolve: boolean): EFeaturePrivilegeLevel
|
|
554
|
+
// CanPlayOnline(LocalUserNum: number, PrivilegeLevelHint: EFeaturePrivilegeLevel, bAttemptToResolve: boolean, Reason: string): boolean
|
|
555
|
+
// GetPlayerNickname(LocalUserNum: number): string
|
|
556
|
+
// GetUniquePlayerId(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
557
|
+
// GetLoginStatus(LocalUserNum: number): ELoginStatus
|
|
558
|
+
// ClearLogoutCompletedDelegate(LocalUserNum: number, LogoutDelegate: FScriptDelegate): void
|
|
559
|
+
// AddLogoutCompletedDelegate(LocalUserNum: number, LogoutDelegate: FScriptDelegate): void
|
|
560
|
+
// OnLogoutCompleted(bWasSuccessful: boolean): void
|
|
561
|
+
// Logout(LocalUserNum: number): boolean
|
|
562
|
+
// ClearLoginFailedDelegate(LocalUserNum: number, LoginFailedDelegate: FScriptDelegate): void
|
|
563
|
+
// AddLoginFailedDelegate(LocalUserNum: number, LoginFailedDelegate: FScriptDelegate): void
|
|
564
|
+
// OnReceievedPinGrantCode(Result: EPinGrantResult, LocalUserNum: number, Code: string, URL: string, SecondsUntilExpiration: number): void
|
|
565
|
+
// OnLoginFailed(LocalUserNum: number, ErrorCode: EOnlineServerConnectionStatus): void
|
|
566
|
+
// AutoLogin(): boolean
|
|
567
|
+
// Login(LocalUserNum: number, LoginName: string, Password: string, bWantsLocalOnly: boolean): boolean
|
|
568
|
+
// ShowLoginUI(LocalUserNum: number, bShowOnlineOnly: boolean): boolean
|
|
569
|
+
// OnFriendsChange(): void
|
|
570
|
+
// OnMutingChange(): void
|
|
571
|
+
// OnLoginCancelled(): void
|
|
572
|
+
// OnLoginChange(LocalUserNum: number): void
|
|
573
|
+
// OnPlayerUnblocked(LocalUserNum: number, PlayerID: FUniqueNetId, Error: UError): void
|
|
574
|
+
// OnPlayerBlocked(LocalUserNum: number, PlayerID: FUniqueNetId, Error: UError): void
|
|
575
|
+
// OnBlockListUpdated(LocalUserNum: number): void
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Class OnlineSubsystemEOS.OnlineStatsInterfaceEOS
|
|
579
|
+
* Size: 0x00C8
|
|
580
|
+
* Extends: UObject
|
|
581
|
+
*/
|
|
582
|
+
export type UOnlineStatsInterfaceEOS = UObject & {
|
|
583
|
+
StatsHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
584
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0068 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
585
|
+
ReadStatsDelegates: FScriptDelegate[]; // 0x0070 (0x0010) [TArray<FScriptDelegate>]
|
|
586
|
+
__OnReadOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0080 (0x0018) [FScriptDelegate]
|
|
587
|
+
__OnFlushOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0098 (0x0018) [FScriptDelegate]
|
|
588
|
+
__OnRegisterHostStatGuidComplete__Delegate: FScriptDelegate; // 0x00b0 (0x0018) [FScriptDelegate]
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
// OnlineStatsInterfaceEOS Functions
|
|
592
|
+
// RegisterStatGuid(PlayerID: FUniqueNetId, ClientStatGuid: string): boolean
|
|
593
|
+
// GetClientStatGuid(): string
|
|
594
|
+
// ClearRegisterHostStatGuidCompleteDelegateDelegate(RegisterHostStatGuidCompleteDelegate: FScriptDelegate): void
|
|
595
|
+
// AddRegisterHostStatGuidCompleteDelegate(RegisterHostStatGuidCompleteDelegate: FScriptDelegate): void
|
|
596
|
+
// OnRegisterHostStatGuidComplete(bWasSuccessful: boolean): void
|
|
597
|
+
// RegisterHostStatGuid(HostStatGuid: string): boolean
|
|
598
|
+
// GetHostStatGuid(): string
|
|
599
|
+
// WriteOnlinePlayerScores(SessionName: FName, LeaderboardId: number, PlayerScores: FOnlinePlayerScore[]): boolean
|
|
600
|
+
// ClearFlushOnlineStatsCompleteDelegate(FlushOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
601
|
+
// AddFlushOnlineStatsCompleteDelegate(FlushOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
602
|
+
// OnFlushOnlineStatsComplete(SessionName: FName, bWasSuccessful: boolean): void
|
|
603
|
+
// FlushOnlineStats(SessionName: FName): boolean
|
|
604
|
+
// WriteOnlineStats(SessionName: FName, Player: FUniqueNetId, StatsWrite: UOnlineStatsWrite): boolean
|
|
605
|
+
// FreeStats(StatsRead: UOnlineStatsRead): void
|
|
606
|
+
// ClearReadOnlineStatsCompleteDelegate(ReadOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
607
|
+
// AddReadOnlineStatsCompleteDelegate(ReadOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
608
|
+
// OnReadOnlineStatsComplete(bWasSuccessful: boolean): void
|
|
609
|
+
// ReadOnlineStatsByRankAroundPlayer(LocalUserNum: number, StatsRead: UOnlineStatsRead, NumRows: number): boolean
|
|
610
|
+
// ReadOnlineStatsByRank(LocalUserNum: number, StatsRead: UOnlineStatsRead, StartIndex: number, NumToRead: number): boolean
|
|
611
|
+
// ReadOnlineStatsForFriends(LocalUserNum: number, StatsRead: UOnlineStatsRead): boolean
|
|
612
|
+
// ReadOnlineStats(LocalUserNum: number, Players: FUniqueNetId[], StatsRead: UOnlineStatsRead): boolean
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Class OnlineSubsystemEOS.OnlineSubsystemEOS
|
|
616
|
+
* Size: 0x0740
|
|
617
|
+
* Extends: UOnlineSubsystemCommonImpl
|
|
618
|
+
*/
|
|
619
|
+
export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
620
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x03c0 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
621
|
+
GameInterfaceEOS: UOnlineGameInterfaceEOS; // 0x03c8 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
622
|
+
StatsInterfaceEOS: UOnlineStatsInterfaceEOS; // 0x03d0 (0x0008) [UOnlineStatsInterfaceEOS*]
|
|
623
|
+
AuthInterfaceEOS: UOnlineAuthInterfaceEOS; // 0x03d8 (0x0008) [UOnlineAuthInterfaceEOS*]
|
|
624
|
+
PersistentAuthInterfaceEOS: UOnlinePersistentAuthInterfaceEOS; // 0x03e0 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
625
|
+
FriendsInterfaceEOS: UOnlineFriendsInterfaceEOS; // 0x03e8 (0x0008) [UOnlineFriendsInterfaceEOS*]
|
|
626
|
+
UserCloudFileInterfaceEOS: UOnlineUserCloudFileInterfaceEOS; // 0x03f0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
627
|
+
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; // 0x03f8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
628
|
+
GameClipsInterfaceEOS: UOnlineGameClipsInterfaceEOS; // 0x0400 (0x0008) [UOnlineGameClipsInterfaceEOS*]
|
|
629
|
+
SpeechRecognitionCompleteDelegates: FScriptDelegate[]; // 0x0408 (0x0010) [TArray<FScriptDelegate>]
|
|
630
|
+
AuthHandle: FPointer; // 0x0418 (0x0008) [FPointer]
|
|
631
|
+
FriendsHandle: FPointer; // 0x0420 (0x0008) [FPointer]
|
|
632
|
+
UserInfoHandle: FPointer; // 0x0428 (0x0008) [FPointer]
|
|
633
|
+
PresenceHandle: FPointer; // 0x0430 (0x0008) [FPointer]
|
|
634
|
+
ConnectHandle: FPointer; // 0x0438 (0x0008) [FPointer]
|
|
635
|
+
SessionsHandle: FPointer; // 0x0440 (0x0008) [FPointer]
|
|
636
|
+
PDSHandle: FPointer; // 0x0448 (0x0008) [FPointer]
|
|
637
|
+
StatsHandle: FPointer; // 0x0450 (0x0008) [FPointer]
|
|
638
|
+
AchievementsHandle: FPointer; // 0x0458 (0x0008) [FPointer]
|
|
639
|
+
EcomHandle: FPointer; // 0x0460 (0x0008) [FPointer]
|
|
640
|
+
UIHandle: FPointer; // 0x0468 (0x0008) [FPointer]
|
|
641
|
+
RTCHandle: FPointer; // 0x0470 (0x0008) [FPointer]
|
|
642
|
+
RTCAudioHandle: FPointer; // 0x0478 (0x0008) [FPointer]
|
|
643
|
+
RTCAdminHandle: FPointer; // 0x0480 (0x0008) [FPointer]
|
|
644
|
+
GameClipsHandle: FPointer; // 0x0488 (0x0008) [FPointer]
|
|
645
|
+
EULATrackingHandle: FPointer; // 0x0490 (0x0008) [FPointer]
|
|
646
|
+
bLastTickShouldRecordAudioVal: boolean; // 0x0498 (0x0004) [bool : 0x1]
|
|
647
|
+
UnlockedDLC: FName[]; // 0x04a0 (0x0010) [TArray<FName>]
|
|
648
|
+
UnlockedDLCDelegates: FScriptDelegate[]; // 0x04b0 (0x0010) [TArray<FScriptDelegate>]
|
|
649
|
+
ExternalUIChangeDelegates: FScriptDelegate[]; // 0x04c0 (0x0010) [TArray<FScriptDelegate>]
|
|
650
|
+
__OnMicroTxnResponse__Delegate: FScriptDelegate; // 0x04d0 (0x0018) [FScriptDelegate]
|
|
651
|
+
__EventGetAppPriceInfoComplete__Delegate: FScriptDelegate; // 0x04e8 (0x0018) [FScriptDelegate]
|
|
652
|
+
__OnPlayerTalking__Delegate: FScriptDelegate; // 0x0500 (0x0018) [FScriptDelegate]
|
|
653
|
+
__OnRecognitionComplete__Delegate: FScriptDelegate; // 0x0518 (0x0018) [FScriptDelegate]
|
|
654
|
+
__OnReadOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0530 (0x0018) [FScriptDelegate]
|
|
655
|
+
__OnRegisterHostStatGuidComplete__Delegate: FScriptDelegate; // 0x0548 (0x0018) [FScriptDelegate]
|
|
656
|
+
__OnFlushOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0560 (0x0018) [FScriptDelegate]
|
|
657
|
+
__OnLinkStatusChange__Delegate: FScriptDelegate; // 0x0578 (0x0018) [FScriptDelegate]
|
|
658
|
+
__OnExternalUIChange__Delegate: FScriptDelegate; // 0x0590 (0x0018) [FScriptDelegate]
|
|
659
|
+
__OnControllerChange__Delegate: FScriptDelegate; // 0x05a8 (0x0018) [FScriptDelegate]
|
|
660
|
+
__OnConnectionStatusChange__Delegate: FScriptDelegate; // 0x05c0 (0x0018) [FScriptDelegate]
|
|
661
|
+
__OnStorageDeviceChange__Delegate: FScriptDelegate; // 0x05d8 (0x0018) [FScriptDelegate]
|
|
662
|
+
__OnCreateOnlineAccountCompleted__Delegate: FScriptDelegate; // 0x05f0 (0x0018) [FScriptDelegate]
|
|
663
|
+
__OnPlayerTalkingStateChange__Delegate: FScriptDelegate; // 0x0608 (0x0018) [FScriptDelegate]
|
|
664
|
+
__OnCloseKickPlayerDialog__Delegate: FScriptDelegate; // 0x0620 (0x0018) [FScriptDelegate]
|
|
665
|
+
__OnCommerceDialogClosed__Delegate: FScriptDelegate; // 0x0638 (0x0018) [FScriptDelegate]
|
|
666
|
+
__OnErrorDialogClosed__Delegate: FScriptDelegate; // 0x0650 (0x0018) [FScriptDelegate]
|
|
667
|
+
__OnUnlockedDLCChange__Delegate: FScriptDelegate; // 0x0668 (0x0018) [FScriptDelegate]
|
|
668
|
+
__OnStorePurchaseCompleteDelegate__Delegate: FScriptDelegate; // 0x0680 (0x0018) [FScriptDelegate]
|
|
669
|
+
__OnUserOrphaned__Delegate: FScriptDelegate; // 0x0698 (0x0018) [FScriptDelegate]
|
|
670
|
+
__OnUserRestored__Delegate: FScriptDelegate; // 0x06b0 (0x0018) [FScriptDelegate]
|
|
671
|
+
__OnPlayerSigningOut__Delegate: FScriptDelegate; // 0x06c8 (0x0018) [FScriptDelegate]
|
|
672
|
+
__EventCryptoKeyCreated__Delegate: FScriptDelegate; // 0x06e0 (0x0018) [FScriptDelegate]
|
|
673
|
+
__EventTextMessageSigned__Delegate: FScriptDelegate; // 0x06f8 (0x0018) [FScriptDelegate]
|
|
674
|
+
__EventTextMessageValidated__Delegate: FScriptDelegate; // 0x0710 (0x0018) [FScriptDelegate]
|
|
675
|
+
__OnCaptureAvailabilityChange__Delegate: FScriptDelegate; // 0x0728 (0x0018) [FScriptDelegate]
|
|
676
|
+
};
|
|
677
|
+
|
|
678
|
+
// OnlineSubsystemEOS Functions
|
|
679
|
+
// ClearCaptureAvailabilityChangeDelegate(CaptureAvailabilityDelegate: FScriptDelegate): void
|
|
680
|
+
// AddCaptureAvailabilityChangeDelegate(CaptureAvailabilityDelegate: FScriptDelegate): void
|
|
681
|
+
// OnCaptureAvailabilityChange(bCaptureAllowed: boolean): void
|
|
682
|
+
// EventTextMessageValidated(bMessageValid: boolean, RequestID: number): void
|
|
683
|
+
// EventTextMessageSigned(Signature: string, RequestID: number): void
|
|
684
|
+
// EventCryptoKeyCreated(EpicAccountId: string, PublicKey: string): void
|
|
685
|
+
// ValidateTextMessage(Message: string, PublicKey: string, Signature: string, RequestID: number): void
|
|
686
|
+
// SignTextMessage(EpicAccountId: string, Message: string, RequestID: number): void
|
|
687
|
+
// GenerateCryptoKeyForUser(EpicAccountId: string): void
|
|
688
|
+
// ShowEOSVoiceAgreement(LocalUserNum: number): void
|
|
689
|
+
// ShowEOSOverlay(LocalUserNum: number): void
|
|
690
|
+
// ShowEOSOverlayReportVoice(): void
|
|
691
|
+
// TickEOSPlatform(DeltaTime: number): void
|
|
692
|
+
// ManuallyTickEOSPlatform(): boolean
|
|
693
|
+
// FormatCurrency(Currency: string, Price: number): string
|
|
694
|
+
// ClearMicroTxnResponseDelegate(ResponseMicroTxnDelegate: FScriptDelegate): void
|
|
695
|
+
// AddMicroTxnResponseDelegate(ResponseMicroTxnDelegate: FScriptDelegate): void
|
|
696
|
+
// GetAppPriceInfo(PlayerID: FUniqueNetId, AppNames: FName[], Callback: FScriptDelegate): boolean
|
|
697
|
+
// HandleBootMessage(): boolean
|
|
698
|
+
// GetOverlayEnabled(): boolean
|
|
699
|
+
// ClearPlayerSigningOutDelegate(InDelegate: FScriptDelegate): void
|
|
700
|
+
// AddPlayerSigningOutDelegate(InDelegate: FScriptDelegate): void
|
|
701
|
+
// OnPlayerSigningOut(LocalUserNum: number): void
|
|
702
|
+
// RefreshNetworkErrorToggle(): boolean
|
|
703
|
+
// ClearUserRestoredDelegate(UserRestoredDelegate: FScriptDelegate): void
|
|
704
|
+
// AddUserRestoredDelegate(UserRestoredDelegate: FScriptDelegate): void
|
|
705
|
+
// OnUserRestored(ControllerId: number): void
|
|
706
|
+
// ClearUserOrphanedDelegate(UserOrphanedDelegate: FScriptDelegate): void
|
|
707
|
+
// AddUserOrphanedDelegate(UserOrphanedDelegate: FScriptDelegate): void
|
|
708
|
+
// OnUserOrphaned(ControllerId: number): void
|
|
709
|
+
// OpenStoreForItemsAsync(LocalUserNum: number, Targets: string[], OnStorePurchaseCompleteDelegate: FScriptDelegate): void
|
|
710
|
+
// OpenStoreForItems(LocalUserNum: number, Targets: string[], OnStorePurchaseCompleteDelegate: FScriptDelegate): void
|
|
711
|
+
// OpenStoreForDLC(LocalUserNum: number, DLC: FName): void
|
|
712
|
+
// OnStorePurchaseCompleteDelegate(): void
|
|
713
|
+
// OpenErrorDialog(LocalUserNum: number, ErrorCode: EPS4ErrorDialog): void
|
|
714
|
+
// OpenPS4DisplayMode(LocalUserNum: number, DisplayMode: EPS4DisplayMode, Targets: string[], ServiceLabel: number): void
|
|
715
|
+
// ResetControllerColor(ControllerId: number): void
|
|
716
|
+
// SetControllerColor(ControllerId: number, NewColor: FColor): void
|
|
717
|
+
// InitializeTrophyAPI(): void
|
|
718
|
+
// AnyPlayerChatRestricted(): boolean
|
|
719
|
+
// ClearUnlockedDLCChangeDelegate(InDelegate: FScriptDelegate): void
|
|
720
|
+
// AddUnlockedDLCChangeDelegate(InDelegate: FScriptDelegate): void
|
|
721
|
+
// GetUnlockedDLC(): FName[]
|
|
722
|
+
// OnUnlockedDLCChange(): void
|
|
723
|
+
// UpdateSessionStatusFromPlayers(CurrentPlayerCount: number, numBotPlayers: number): void
|
|
724
|
+
// ClearErrorDialogClosedDelegate(InDelegate: FScriptDelegate): void
|
|
725
|
+
// AddErrorDialogClosedDelegate(InDelegate: FScriptDelegate): void
|
|
726
|
+
// OnErrorDialogClosed(LocalUserNum: number): void
|
|
727
|
+
// ClearCommerceDialogClosedDelegate(InDelegate: FScriptDelegate): void
|
|
728
|
+
// AddCommerceDialogClosedDelegate(InDelegate: FScriptDelegate): void
|
|
729
|
+
// OnCommerceDialogClosed(): void
|
|
730
|
+
// GetCurrentConnectionStatus(): EOnlineServerConnectionStatus
|
|
731
|
+
// ClearCloseKickPlayerDialogDelegate(InDelegate: FScriptDelegate): void
|
|
732
|
+
// AddCloseKickPlayerDialogDelegate(InDelegate: FScriptDelegate): void
|
|
733
|
+
// OnCloseKickPlayerDialog(): void
|
|
734
|
+
// OnPlayerTalkingStateChange(Player: FUniqueNetId, bIsTalking: boolean): void
|
|
735
|
+
// SetVoiceReceiveVolume(VoiceVolume: number): boolean
|
|
736
|
+
// GetDLCPurchaseTime(AppName: FName): number
|
|
737
|
+
// SaveKey(ProductKey: string): boolean
|
|
738
|
+
// GetLocalAccountNames(Accounts: string[]): boolean
|
|
739
|
+
// DeleteLocalAccount(Username: string, Password: string): boolean
|
|
740
|
+
// RenameLocalAccount(NewUserName: string, OldUserName: string, Password: string): boolean
|
|
741
|
+
// CreateLocalAccount(Username: string, Password: string): boolean
|
|
742
|
+
// ClearCreateOnlineAccountCompletedDelegate(AccountCreateDelegate: FScriptDelegate): void
|
|
743
|
+
// AddCreateOnlineAccountCompletedDelegate(AccountCreateDelegate: FScriptDelegate): void
|
|
744
|
+
// OnCreateOnlineAccountCompleted(ErrorStatus: EOnlineAccountCreateStatus): void
|
|
745
|
+
// CreateOnlineAccount(Username: string, Password: string, EmailAddress: string, ProductKey: string): boolean
|
|
746
|
+
// IsKeyValid(): boolean
|
|
747
|
+
// ClearStorageDeviceChangeDelegate(StorageDeviceChangeDelegate: FScriptDelegate): void
|
|
748
|
+
// AddStorageDeviceChangeDelegate(StorageDeviceChangeDelegate: FScriptDelegate): void
|
|
749
|
+
// OnStorageDeviceChange(): void
|
|
750
|
+
// GetNATType(): ENATType
|
|
751
|
+
// ClearConnectionStatusChangeDelegate(ConnectionStatusDelegate: FScriptDelegate): void
|
|
752
|
+
// AddConnectionStatusChangeDelegate(ConnectionStatusDelegate: FScriptDelegate): void
|
|
753
|
+
// OnConnectionStatusChange(ConnectionStatus: EOnlineServerConnectionStatus): void
|
|
754
|
+
// IsControllerConnected(ControllerId: number): boolean
|
|
755
|
+
// ClearControllerChangeDelegate(ControllerChangeDelegate: FScriptDelegate): void
|
|
756
|
+
// AddControllerChangeDelegate(ControllerChangeDelegate: FScriptDelegate): void
|
|
757
|
+
// OnControllerChange(ControllerId: number, bIsConnected: boolean): void
|
|
758
|
+
// SetNetworkNotificationPosition(NewPos: ENetworkNotificationPosition): void
|
|
759
|
+
// GetNetworkNotificationPosition(): ENetworkNotificationPosition
|
|
760
|
+
// NotifyExternalUIChanged(bIsOpening: boolean): void
|
|
761
|
+
// ClearExternalUIChangeDelegate(InDelegate: FScriptDelegate): void
|
|
762
|
+
// AddExternalUIChangeDelegate(InDelegate: FScriptDelegate): void
|
|
763
|
+
// OnExternalUIChange(bIsOpening: boolean): void
|
|
764
|
+
// ClearLinkStatusChangeDelegate(LinkStatusDelegate: FScriptDelegate): void
|
|
765
|
+
// AddLinkStatusChangeDelegate(LinkStatusDelegate: FScriptDelegate): void
|
|
766
|
+
// OnLinkStatusChange(bIsConnected: boolean): void
|
|
767
|
+
// HasLinkConnection(): boolean
|
|
768
|
+
// RegisterStatGuid(PlayerID: FUniqueNetId, ClientStatGuid: string): boolean
|
|
769
|
+
// GetClientStatGuid(): string
|
|
770
|
+
// ClearRegisterHostStatGuidCompleteDelegateDelegate(RegisterHostStatGuidCompleteDelegate: FScriptDelegate): void
|
|
771
|
+
// AddRegisterHostStatGuidCompleteDelegate(RegisterHostStatGuidCompleteDelegate: FScriptDelegate): void
|
|
772
|
+
// OnFlushOnlineStatsComplete(SessionName: FName, bWasSuccessful: boolean): void
|
|
773
|
+
// OnRegisterHostStatGuidComplete(bWasSuccessful: boolean): void
|
|
774
|
+
// RegisterHostStatGuid(HostStatGuid: string): boolean
|
|
775
|
+
// GetHostStatGuid(): string
|
|
776
|
+
// WriteOnlinePlayerScores(PlayerScores: FOnlinePlayerScore[]): boolean
|
|
777
|
+
// FreeStats(StatsRead: UOnlineStatsRead): void
|
|
778
|
+
// ClearReadOnlineStatsCompleteDelegate(ReadOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
779
|
+
// AddReadOnlineStatsCompleteDelegate(ReadOnlineStatsCompleteDelegate: FScriptDelegate): void
|
|
780
|
+
// OnReadOnlineStatsComplete(bWasSuccessful: boolean): void
|
|
781
|
+
// ReadOnlineStatsByRankAroundPlayer(LocalUserNum: number, StatsRead: UOnlineStatsRead, NumRows: number): boolean
|
|
782
|
+
// ReadOnlineStatsByRank(StatsRead: UOnlineStatsRead, StartIndex: number, NumToRead: number): boolean
|
|
783
|
+
// ReadOnlineStatsForFriends(LocalUserNum: number, StatsRead: UOnlineStatsRead): boolean
|
|
784
|
+
// ReadOnlineStats(Players: FUniqueNetId[], StatsRead: UOnlineStatsRead): boolean
|
|
785
|
+
// UnmuteAll(LocalUserNum: number): boolean
|
|
786
|
+
// MuteAll(LocalUserNum: number, bAllowFriends: boolean): boolean
|
|
787
|
+
// SetSpeechRecognitionObject(LocalUserNum: number, SpeechRecogObj: USpeechRecognition): boolean
|
|
788
|
+
// SelectVocabulary(LocalUserNum: number, VocabularyId: number): boolean
|
|
789
|
+
// ClearRecognitionCompleteDelegate(LocalUserNum: number, RecognitionDelegate: FScriptDelegate): void
|
|
790
|
+
// AddRecognitionCompleteDelegate(LocalUserNum: number, RecognitionDelegate: FScriptDelegate): void
|
|
791
|
+
// OnRecognitionComplete(): void
|
|
792
|
+
// GetRecognitionResults(LocalUserNum: number, Words: FSpeechRecognizedWord[]): boolean
|
|
793
|
+
// StopSpeechRecognition(LocalUserNum: number): boolean
|
|
794
|
+
// StartSpeechRecognition(LocalUserNum: number): boolean
|
|
795
|
+
// StopNetworkedVoice(LocalUserNum: number): void
|
|
796
|
+
// StartNetworkedVoice(LocalUserNum: number): void
|
|
797
|
+
// ClearPlayerTalkingDelegate(TalkerDelegate: FScriptDelegate): void
|
|
798
|
+
// AddPlayerTalkingDelegate(TalkerDelegate: FScriptDelegate): void
|
|
799
|
+
// OnPlayerTalking(Player: FUniqueNetId): void
|
|
800
|
+
// UnmuteRemoteTalker(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
801
|
+
// MuteRemoteTalker(LocalUserNum: number, PlayerID: FUniqueNetId): boolean
|
|
802
|
+
// SetRemoteTalkerPriority(LocalUserNum: number, PlayerID: FUniqueNetId, Priority: number): boolean
|
|
803
|
+
// IsHeadsetPresent(LocalUserNum: number): boolean
|
|
804
|
+
// IsRemotePlayerTalking(PlayerID: FUniqueNetId): boolean
|
|
805
|
+
// IsLocalPlayerTalking(LocalUserNum: number): boolean
|
|
806
|
+
// UnregisterRemoteTalker(PlayerID: FUniqueNetId): boolean
|
|
807
|
+
// RegisterRemoteTalker(PlayerID: FUniqueNetId): boolean
|
|
808
|
+
// UnregisterLocalTalker(LocalUserNum: number): boolean
|
|
809
|
+
// RegisterLocalTalker(LocalUserNum: number): boolean
|
|
810
|
+
// GetPlayerUniqueNetIdFromIndex(UserIndex: number): FUniqueNetId
|
|
811
|
+
// GetPlayerNicknameFromIndex(UserIndex: number): string
|
|
812
|
+
// Init(): boolean
|
|
813
|
+
// InitEOS(SandboxId: string, DeploymentId: string): boolean
|
|
814
|
+
// EventGetAppPriceInfoComplete(AppName: FName, Price: string, DiscountPrice: string, DiscountPercentage: number): void
|
|
815
|
+
// OnMicroTxnResponse(bAuthorized: boolean, OrderId: bigint): void
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* Class OnlineSubsystemEOS.OnlineUserCloudFileInterfaceEOS
|
|
819
|
+
* Size: 0x0118
|
|
820
|
+
* Extends: UObject
|
|
821
|
+
*/
|
|
822
|
+
export type UOnlineUserCloudFileInterfaceEOS = UObject & {
|
|
823
|
+
PDSHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
824
|
+
LastReadFileErrorCode: number; // 0x0068 (0x0004) [int32]
|
|
825
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0070 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
826
|
+
EnumerateUserFileCompleteDelegates: FScriptDelegate[]; // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
827
|
+
ReadUserFileCompleteDelegates: FScriptDelegate[]; // 0x0088 (0x0010) [TArray<FScriptDelegate>]
|
|
828
|
+
WriteUserFileCompleteDelegates: FScriptDelegate[]; // 0x0098 (0x0010) [TArray<FScriptDelegate>]
|
|
829
|
+
DeleteUserFileCompleteDelegates: FScriptDelegate[]; // 0x00a8 (0x0010) [TArray<FScriptDelegate>]
|
|
830
|
+
__OnEnumerateUserFilesComplete__Delegate: FScriptDelegate; // 0x00b8 (0x0018) [FScriptDelegate]
|
|
831
|
+
__OnReadUserFileComplete__Delegate: FScriptDelegate; // 0x00d0 (0x0018) [FScriptDelegate]
|
|
832
|
+
__OnWriteUserFileComplete__Delegate: FScriptDelegate; // 0x00e8 (0x0018) [FScriptDelegate]
|
|
833
|
+
__OnDeleteUserFileComplete__Delegate: FScriptDelegate; // 0x0100 (0x0018) [FScriptDelegate]
|
|
834
|
+
};
|
|
835
|
+
|
|
836
|
+
// OnlineUserCloudFileInterfaceEOS Functions
|
|
837
|
+
// ClearAllDelegates(): void
|
|
838
|
+
// ClearDeleteUserFileCompleteDelegate(DeleteUserFileCompleteDelegate: FScriptDelegate): void
|
|
839
|
+
// AddDeleteUserFileCompleteDelegate(DeleteUserFileCompleteDelegate: FScriptDelegate): void
|
|
840
|
+
// DeleteUserFile(UserId: string, Filename: string, bShouldCloudDelete: boolean, bShouldLocallyDelete: boolean): boolean
|
|
841
|
+
// OnDeleteUserFileComplete(bWasSuccessful: boolean, UserId: string, Filename: string): void
|
|
842
|
+
// ClearWriteUserFileCompleteDelegate(WriteUserFileCompleteDelegate: FScriptDelegate): void
|
|
843
|
+
// AddWriteUserFileCompleteDelegate(WriteUserFileCompleteDelegate: FScriptDelegate): void
|
|
844
|
+
// WriteUserFile(UserId: string, Filename: string, FileContents: number[]): boolean
|
|
845
|
+
// OnWriteUserFileComplete(bWasSuccessful: boolean, UserId: string, Filename: string): void
|
|
846
|
+
// ClearReadUserFileCompleteDelegate(ReadUserFileCompleteDelegate: FScriptDelegate): void
|
|
847
|
+
// AddReadUserFileCompleteDelegate(ReadUserFileCompleteDelegate: FScriptDelegate): void
|
|
848
|
+
// ReadUserFile(UserId: string, Filename: string): boolean
|
|
849
|
+
// OnReadUserFileComplete(bWasSuccessful: boolean, UserId: string, Filename: string): void
|
|
850
|
+
// GetUserFileList(UserId: string, UserFiles: FEmsFile[]): void
|
|
851
|
+
// ClearEnumerateUserFileCompleteDelegate(EnumerateUserFileCompleteDelegate: FScriptDelegate): void
|
|
852
|
+
// AddEnumerateUserFileCompleteDelegate(EnumerateUserFileCompleteDelegate: FScriptDelegate): void
|
|
853
|
+
// EnumerateUserFiles(UserId: string): void
|
|
854
|
+
// OnEnumerateUserFilesComplete(bWasSuccessful: boolean, UserId: string): void
|
|
855
|
+
// ClearFile(UserId: string, Filename: string): boolean
|
|
856
|
+
// ClearFiles(UserId: string): boolean
|
|
857
|
+
// GetFileContents(UserId: string, Filename: string, FileContents: number[]): boolean
|
|
858
|
+
|
|
859
|
+
/**
|
|
860
|
+
* Class OnlineSubsystemEOS.OnlineVoiceInterfaceEOS
|
|
861
|
+
* Size: 0x0298
|
|
862
|
+
* Extends: UObject
|
|
863
|
+
*/
|
|
864
|
+
export type UOnlineVoiceInterfaceEOS = UObject & {
|
|
865
|
+
RTCHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
866
|
+
RTCAudioHandle: FPointer; // 0x0068 (0x0008) [FPointer]
|
|
867
|
+
RTCAdminHandle: FPointer; // 0x0070 (0x0008) [FPointer]
|
|
868
|
+
EULATrackingHandle: FPointer; // 0x0078 (0x0008) [FPointer]
|
|
869
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0080 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
870
|
+
InputAudioDevices: FVoiceAudioDevice[]; // 0x0088 (0x0010) [TArray<FVoiceAudioDevice>]
|
|
871
|
+
OutputAudioDevices: FVoiceAudioDevice[]; // 0x0098 (0x0010) [TArray<FVoiceAudioDevice>]
|
|
872
|
+
AccountsAcceptedVoiceModerationEULAMap: FMap_Mirror; // 0x00a8 (0x0050) [FMap_Mirror]
|
|
873
|
+
AccountsWithAgreementResponse: string[]; // 0x00f8 (0x0010) [TArray<FString>]
|
|
874
|
+
ProductUserIdToEpicUserIdMap: FMap_Mirror; // 0x0108 (0x0050) [FMap_Mirror]
|
|
875
|
+
PendingEpicIdQueries: FMap_Mirror; // 0x0158 (0x0050) [FMap_Mirror]
|
|
876
|
+
__EventLeftVoiceRoom__Delegate: FScriptDelegate; // 0x01a8 (0x0018) [FScriptDelegate]
|
|
877
|
+
__EventJoinedVoiceRoom__Delegate: FScriptDelegate; // 0x01c0 (0x0018) [FScriptDelegate]
|
|
878
|
+
__EventRemovedFromVoiceRoom__Delegate: FScriptDelegate; // 0x01d8 (0x0018) [FScriptDelegate]
|
|
879
|
+
__EventPlayerJoinedVoiceRoom__Delegate: FScriptDelegate; // 0x01f0 (0x0018) [FScriptDelegate]
|
|
880
|
+
__EventPlayerLeftVoiceRoom__Delegate: FScriptDelegate; // 0x0208 (0x0018) [FScriptDelegate]
|
|
881
|
+
__EventPlayerStatusChanged__Delegate: FScriptDelegate; // 0x0220 (0x0018) [FScriptDelegate]
|
|
882
|
+
__EventPlayerVoiceAgreementStatusChanged__Delegate: FScriptDelegate; // 0x0238 (0x0018) [FScriptDelegate]
|
|
883
|
+
__EventVoiceRecordingStatusChanged__Delegate: FScriptDelegate; // 0x0250 (0x0018) [FScriptDelegate]
|
|
884
|
+
__OnPlayerTalkingStateChange__Delegate: FScriptDelegate; // 0x0268 (0x0018) [FScriptDelegate]
|
|
885
|
+
__OnRecognitionComplete__Delegate: FScriptDelegate; // 0x0280 (0x0018) [FScriptDelegate]
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
// OnlineVoiceInterfaceEOS Functions
|
|
889
|
+
// SetVoiceReceiveVolume(VoiceVolume: number): boolean
|
|
890
|
+
// UnmuteAll(LocalUserNum: number): boolean
|
|
891
|
+
// MuteAll(LocalUserNum: number, bAllowFriends: boolean): boolean
|
|
892
|
+
// SetSpeechRecognitionObject(LocalUserNum: number, SpeechRecogObj: USpeechRecognition): boolean
|
|
893
|
+
// SelectVocabulary(LocalUserNum: number, VocabularyId: number): boolean
|
|
894
|
+
// ClearRecognitionCompleteDelegate(LocalUserNum: number, RecognitionDelegate: FScriptDelegate): void
|
|
895
|
+
// AddRecognitionCompleteDelegate(LocalUserNum: number, RecognitionDelegate: FScriptDelegate): void
|
|
896
|
+
// GetRecognitionResults(LocalUserNum: number, Words: FSpeechRecognizedWord[]): boolean
|
|
897
|
+
// StopSpeechRecognition(LocalUserNum: number): boolean
|
|
898
|
+
// StartSpeechRecognition(LocalUserNum: number): boolean
|
|
899
|
+
// StopNetworkedVoice(LocalUserNum: number): void
|
|
900
|
+
// StartNetworkedVoice(LocalUserNum: number): void
|
|
901
|
+
// ClearPlayerTalkingDelegate(TalkerDelegate: FScriptDelegate): void
|
|
902
|
+
// AddPlayerTalkingDelegate(TalkerDelegate: FScriptDelegate): void
|
|
903
|
+
// UnmuteRemoteTalker(LocalUserNum: number, PlayerID: FUniqueNetId, bIsSystemWide: boolean): boolean
|
|
904
|
+
// MuteRemoteTalker(LocalUserNum: number, PlayerID: FUniqueNetId, bIsSystemWide: boolean): boolean
|
|
905
|
+
// SetRemoteTalkerPriority(LocalUserNum: number, PlayerID: FUniqueNetId, Priority: number): boolean
|
|
906
|
+
// IsHeadsetPresent(LocalUserNum: number): boolean
|
|
907
|
+
// IsRemotePlayerTalking(PlayerID: FUniqueNetId): boolean
|
|
908
|
+
// IsLocalPlayerTalking(LocalUserNum: number): boolean
|
|
909
|
+
// UnregisterRemoteTalker(PlayerID: FUniqueNetId): boolean
|
|
910
|
+
// RegisterRemoteTalker(PlayerID: FUniqueNetId): boolean
|
|
911
|
+
// UnregisterLocalTalker(LocalUserNum: number): boolean
|
|
912
|
+
// RegisterLocalTalker(LocalUserNum: number): boolean
|
|
913
|
+
// OnRecognitionComplete(): void
|
|
914
|
+
// OnPlayerTalkingStateChange(Player: FUniqueNetId, bIsTalking: boolean): void
|
|
915
|
+
// StopRecording(EpicAccountId: string): void
|
|
916
|
+
// StartRecording(EpicAccountId: string, RoomName: string): void
|
|
917
|
+
// HasPlayerRespondedToVoiceAgreement(LocalEpicAccountId: string): boolean
|
|
918
|
+
// GetVoiceAgreementStatusForPlayer(LocalEpicAccountId: string): EPlayerVoiceAgreementStatus
|
|
919
|
+
// HasPlayerAcceptedVoiceAgreement(LocalEpicAccountId: string): boolean
|
|
920
|
+
// CheckAllPlayersAcceptedVoiceModerationAgreement(): boolean
|
|
921
|
+
// SubscribeToLoginChanges(): void
|
|
922
|
+
// OnLogout(EpicAccountId: string): void
|
|
923
|
+
// OnLoginChange(LocalUserNum: number): void
|
|
924
|
+
// SetPlayerBlockStatus(LocalEpicAccountId: string, TargetEpicAccountId: string, RoomName: string, bBlocked: boolean): void
|
|
925
|
+
// SetPlayerMuteStatus(LocalEpicAccountId: string, TargetEpicAccountId: string, RoomName: string, bMuted: boolean): void
|
|
926
|
+
// GetUserState(EpicAccountId: string): EPlayerVoiceTransitionState
|
|
927
|
+
// GetCurrentRoomNameForUser(EpicAccountId: string): string
|
|
928
|
+
// LeaveVoiceRoom(EpicAccountId: string, RoomName: string): boolean
|
|
929
|
+
// JoinVoiceRoom(EpicAccountId: string, RoomName: string, ClientBaseUrl: string, JoinToken: string): boolean
|
|
930
|
+
// SetAudioOutputDevice(EpicAccountId: string, DeviceID: string, OutputVolume: number): boolean
|
|
931
|
+
// SetAudioInputDevice(EpicAccountId: string, DeviceID: string, InputVolume: number): boolean
|
|
932
|
+
// SetLocalPlayerRegisteredStatus(PlatformId: string, bRegister: boolean): void
|
|
933
|
+
// OnQueryOutputDevicesFinished(): void
|
|
934
|
+
// OnQueryInputDevicesFinished(): void
|
|
935
|
+
// CacheOutputAudioDevices(): void
|
|
936
|
+
// CacheInputAudioDevices(): void
|
|
937
|
+
// Init(): void
|
|
938
|
+
// EventVoiceRecordingStatusChanged(bRecording: boolean): void
|
|
939
|
+
// EventPlayerVoiceAgreementStatusChanged(EpicAccountId: string, bAccepted: boolean, bNewAgreement: boolean): void
|
|
940
|
+
// EventPlayerStatusChanged(EpicAccountId: string, RoomName: string, MemberStatus: FVoiceRoomMemberStatus): void
|
|
941
|
+
// EventPlayerLeftVoiceRoom(EpicAccountId: string, RoomName: string): void
|
|
942
|
+
// EventPlayerJoinedVoiceRoom(EpicAccountId: string, RoomName: string): void
|
|
943
|
+
// EventRemovedFromVoiceRoom(EpicAccountId: string, RoomName: string, RemovedResult: EVoiceResultCode): void
|
|
944
|
+
// EventJoinedVoiceRoom(EpicAccountId: string, RoomName: string, JoinResult: EVoiceResultCode): void
|
|
945
|
+
// EventLeftVoiceRoom(EpicAccountId: string, RoomName: string, LeaveResult: EVoiceResultCode): void
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* Class OnlineSubsystemEOS.VideoRecorderEOS
|
|
949
|
+
* Size: 0x0068
|
|
950
|
+
* Extends: UObject
|
|
951
|
+
*/
|
|
952
|
+
export type UVideoRecorderEOS = UObject & {
|
|
953
|
+
VfTable_FTickableObject: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
954
|
+
};
|