com.xmobitea.changx.gn-unity 2.0.2 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/Editor/GNServerSettingsEditor.cs +42 -322
  2. package/Runtime/Common/GNArray.cs +120 -35
  3. package/Runtime/Common/GNData.cs +19 -6
  4. package/Runtime/Common/GNHashtable.cs +174 -11
  5. package/Runtime/Common/IGNData.cs +11 -2
  6. package/Runtime/Config/GNServerSettings.cs +136 -92
  7. package/Runtime/Constant/Commands.cs +82 -19
  8. package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
  9. package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
  10. package/Runtime/Constant/EnumType/ItemType.cs +5 -5
  11. package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
  12. package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
  13. package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
  14. package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
  15. package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
  16. package/Runtime/Constant/EnumType/RequestType.cs +1 -0
  17. package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
  18. package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
  19. package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
  20. package/Runtime/Constant/EventCode.cs +29 -2
  21. package/Runtime/Constant/OperationCode.cs +249 -211
  22. package/Runtime/Constant/ParameterCode/GNParameterCode.cs +610 -466
  23. package/Runtime/Constant/ReturnCode.cs +50 -2
  24. package/Runtime/Entity/DataMember.cs +221 -3
  25. package/Runtime/Entity/GNMetadata.cs +46 -1
  26. package/Runtime/Entity/InvalidMember.cs +24 -5
  27. package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
  28. package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
  29. package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
  30. package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
  31. package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
  32. package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
  33. package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
  34. package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
  35. package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
  36. package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
  37. package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
  38. package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
  39. package/Runtime/Entity/Models/ContentModels.cs +150 -153
  40. package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
  41. package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
  42. package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
  43. package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
  44. package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
  45. package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
  46. package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
  47. package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
  48. package/Runtime/Entity/Models/GenericModels.cs +102 -102
  49. package/Runtime/Entity/Models/GroupModels.cs +812 -676
  50. package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
  51. package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
  52. package/Runtime/Entity/Models/InventoryModels.cs +667 -558
  53. package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
  54. package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
  55. package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
  56. package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
  57. package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
  58. package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
  59. package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
  60. package/Runtime/Entity/Models/MultiplayerResponseModels.cs +10 -0
  61. package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
  62. package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
  63. package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
  64. package/Runtime/Entity/OperationEvent.cs +43 -7
  65. package/Runtime/Entity/OperationHelper.cs +18 -2
  66. package/Runtime/Entity/OperationRequest.cs +80 -37
  67. package/Runtime/Entity/OperationResponse.cs +111 -63
  68. package/Runtime/Entity/Request/CustomOperationRequest.cs +53 -2
  69. package/Runtime/Entity/Response/CustomOperationResponse.cs +25 -4
  70. package/Runtime/GNNetwork.cs +333 -21
  71. package/Runtime/GNNetworkApi.cs +25 -13
  72. package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
  73. package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
  74. package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
  75. package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
  76. package/Runtime/GNNetworkContentApi.cs +238 -132
  77. package/Runtime/GNNetworkDashboardApi.cs +278 -117
  78. package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
  79. package/Runtime/GNNetworkGroupApi.cs +1228 -582
  80. package/Runtime/GNNetworkInventoryApi.cs +1048 -507
  81. package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
  82. package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
  83. package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
  84. package/Runtime/Helper/CodeHelper.cs +45 -3
  85. package/Runtime/Helper/ConverterService.cs +240 -85
  86. package/Runtime/Logger/GNDebug.cs +46 -3
  87. package/Runtime/Networking/AuthenticateStatus.cs +30 -8
  88. package/Runtime/Networking/Handler/IServerEventHandler.cs +8 -8
  89. package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +31 -2
  90. package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +24 -3
  91. package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +24 -2
  92. package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +24 -2
  93. package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +21 -2
  94. package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +20 -2
  95. package/Runtime/Networking/Http/HttpPeer.cs +68 -25
  96. package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +44 -4
  97. package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +63 -40
  98. package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +43 -13
  99. package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +72 -39
  100. package/Runtime/Networking/IPeer.cs +24 -2
  101. package/Runtime/Networking/NetworkingPeer.cs +64 -10
  102. package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
  103. package/Runtime/Networking/OperationPending.cs +79 -15
  104. package/Runtime/Networking/PeerBase.cs +86 -23
  105. package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +57 -18
  106. package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +70 -10
  107. package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
  108. package/Runtime/Networking/Socket/SocketPeer.cs +63 -12
  109. package/Runtime/Unity/ServiceCoroutine.cs +10 -0
  110. package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
  111. package/Runtime/Unity/ServiceUpdate.cs +14 -1
  112. package/package.json +1 -1
@@ -1,215 +1,253 @@
1
1
  namespace XmobiTea.GN.Constant
2
2
  {
3
- public partial class OperationCode
4
- {
5
- public const int LoginByAdminAccount = -1;
6
- public const int ChangePasswordAdminAccount = -2;
7
- public const int GetGameList = -3;
8
- public const int GetMasterGameSettings = -4;
9
- public const int SetMasterGameSettings = -5;
10
- public const int GrantAdminAccount = -6;
11
- public const int RemoveAdminAccount = -7;
12
- public const int SetPasswordAdminAccount = -8;
13
- public const int SetSecretKeyAdminAccount = -9;
14
- public const int GetGameInformation = -10;
15
- public const int SetGameInformation = -11;
16
- public const int GetAdminAccountList = -12;
17
- public const int GrantGame = -13;
18
- public const int GetServerLog = -14;
19
- public const int GetSecretInfoInformation = -15;
20
- public const int GetSecretInfoList = -16;
21
- public const int GrantSecretInfo = -17;
22
- public const int SetSecretInfoInformation = -18;
23
-
24
-
25
- public const int LoginByAccount = 1;
26
- public const int LoginByAndroidDeviceId = 2;
27
- public const int LoginByApple = 3;
28
- public const int LoginByCustomDeviceId = 4;
29
- public const int LoginByCustomId = 5;
30
- public const int LoginByEditorDeviceId = 6;
31
- public const int LoginByFacebook = 7;
32
- public const int LoginByGenericService = 8;
33
- public const int LoginByGoogle = 9;
34
- public const int LoginByiOSDeviceId = 10;
35
- public const int LoginByLinuxDeviceId = 11;
36
- public const int LoginByMacOSDeviceId = 12;
37
- public const int LoginByWindowsDeviceId = 13;
38
- public const int LoginByWindowsPhoneDeviceId = 14;
39
- public const int RegisterAccount = 15;
40
-
41
- public const int LinkAccount = 16;
42
- public const int LinkAndroidDeviceId = 17;
43
- public const int LinkApple = 18;
44
- public const int LinkCustomDeviceId = 19;
45
- public const int LinkCustomId = 20;
46
- public const int LinkEditorDeviceId = 21;
47
- public const int LinkFacebook = 22;
48
- public const int LinkGenericService = 23;
49
- public const int LinkGoogle = 24;
50
- public const int LinkiOSDeviceId = 25;
51
- public const int LinkLinuxDeviceId = 26;
52
- public const int LinkMacOSDeviceId = 27;
53
- public const int LinkWindowsDeviceId = 28;
54
- public const int LinkWindowsPhoneDeviceId = 29;
55
-
56
- public const int UnlinkAccount = 30;
57
- public const int UnlinkAndroidDeviceId = 31;
58
- public const int UnlinkApple = 32;
59
- public const int UnlinkCustomDeviceId = 33;
60
- public const int UnlinkCustomId = 34;
61
- public const int UnlinkEditorDeviceId = 35;
62
- public const int UnlinkFacebook = 36;
63
- public const int UnlinkGenericService = 37;
64
- public const int UnlinkGoogle = 38;
65
- public const int UnlinkiOSDeviceId = 39;
66
- public const int UnlinkLinuxDeviceId = 40;
67
- public const int UnlinkMacOSDeviceId = 41;
68
- public const int UnlinkWindowsDeviceId = 42;
69
- public const int UnlinkWindowsPhoneDeviceId = 43;
70
-
71
- public const int AddSegment = 44;
72
- public const int RemoveSegment = 45;
73
- public const int GetSegment = 46;
74
-
75
- public const int SetTag = 47;
76
- public const int GetTag = 48;
77
-
78
- public const int SetDisplayName = 49;
79
- public const int GetDisplayName = 50;
80
-
81
- public const int GetTsCreate = 51;
82
- public const int GetIpAddressCreate = 52;
83
- public const int GetTsLastLogin = 53;
84
-
85
- public const int SetPlayerBan = 54;
86
- public const int GetPlayerBan = 55;
87
-
88
- public const int SetCountryCode = 56;
89
- public const int GetCountryCode = 57;
90
-
91
- public const int ChangeAccountPassword = 58;
92
- public const int ResetAccountPassword = 59;
93
-
94
- public const int SetAvatar = 60;
95
- public const int GetAvatar = 61;
96
-
97
- public const int SetPlayerCurrency = 62;
98
- public const int GetPlayerCurrency = 63;
99
-
100
- public const int SetPlayerStatistics = 64;
101
- public const int GetPlayerStatistics = 65;
102
-
103
- public const int GetStatisticsLeaderboard = 66;
104
- public const int GetStatisticsLeaderboardAroundPlayer = 67;
105
-
106
- public const int SetCustomData = 68;
107
- public const int GetCustomData = 69;
108
-
109
- public const int SetPlayerData = 70;
110
- public const int GetPlayerData = 71;
111
-
112
- public const int GetPlayerInformation = 72;
113
-
114
- public const int GetPlayersWithApple = 73;
115
- public const int GetPlayersWithFacebook = 74;
116
- public const int GetPlayersWithGoogle = 75;
117
- public const int GetPlayersWithGenericService = 76;
118
- public const int GetPlayersWithSegment = 77;
119
- public const int GetPlayersWithTag = 78;
120
- public const int GetExternal = 79;
121
- public const int GetCatalogId = 80;
122
- public const int GetOwnerInfo = 81;
123
- public const int GetOnlineStatus = 82;
124
- public const int RemovePlayerItem = 83;
125
- public const int RemovePlayerCharacter = 84;
126
- public const int AddPlayerFriend = 85;
127
- public const int RemovePlayerFriend = 86;
128
- public const int GetPlayerInventory = 87;
129
- public const int GetPlayerCharacter = 88;
130
- public const int GetPlayerFriend = 89;
131
- public const int GetPlayerGroup = 90;
132
- public const int GrantGroup = 91;
133
- public const int JoinGroup = 92;
134
- public const int GrantPlayerItem = 93;
135
- public const int GrantPlayerCharacter = 94;
136
- public const int GetOwner = 95;
137
- public const int GetRemoveStatus = 96;
138
- public const int SetGroupStatistics = 97;
139
- public const int SetGroupData = 98;
140
- public const int GetGroupCurrency = 99;
141
- public const int SetGroupCurrency = 100;
142
- public const int GrantGroupItem = 101;
143
- public const int GetStatisticsLeaderboardAroundGroup = 102;
144
- public const int GetGroupsWithTag = 103;
145
- public const int GetGroupsWithSegment = 104;
146
- public const int GetGroupStatistics = 105;
147
- public const int GetGroupInventory = 106;
148
- public const int GetGroupData = 107;
149
- public const int GetGroupInformation = 108;
150
- public const int GetMembers = 109;
151
- public const int SetItemStatistics = 110;
152
- public const int SetItemData = 111;
153
- public const int GetItemData = 112;
154
- public const int GetStatisticsLeaderboardAroundItem = 113;
155
- public const int GetItemsWithTag = 114;
156
- public const int GetItemsWithSegment = 115;
157
- public const int GetItemStatistics = 116;
158
- public const int GetItemInformation = 117;
159
- public const int GetAmount = 118;
160
- public const int GetItemType = 119;
161
- public const int SetTsLastLogin = 120;
162
- public const int SetRemoveStatus = 121;
163
- public const int SetAmount = 122;
164
- public const int RemoveGroup = 123;
165
- public const int LeaveGroup = 124;
166
- public const int AddMember = 125;
167
- public const int RemoveMember = 126;
168
- public const int GetContentData = 127;
169
- public const int SetContentData = 128;
170
- public const int GetGroupMessage = 129;
171
- public const int SendGroupMessage = 130;
172
- public const int GetPlayersWithDisplayName = 131;
173
- public const int GetItemsWithDisplayName = 132;
174
- public const int GetGroupsWithDisplayName = 133;
175
- public const int SetOwner = 134;
176
- public const int RemoveGroupItem = 135;
177
- public const int GetClassId = 136;
178
-
179
- public const int GetStoreItemInformation = 137;
180
- public const int GetStoreItemsWithTag = 138;
181
- public const int GrantStoreItem = 139;
182
- public const int RemoveTag = 140;
183
- public const int BuyStoreItem = 141;
184
- public const int ValidateAppleAppStoreReceipt = 142;
185
- public const int ValidateGooglePlayStoreReceipt = 143;
186
- public const int ValidateFacebookStoreReceipt = 144;
187
- public const int GetFriendStatisticsLeaderboardAroundPlayer = 145;
188
- public const int GetFriendStatisticsLeaderboard = 146;
189
- public const int SetEmail = 147;
190
- public const int GetEmail = 148;
191
-
192
- public const int CreateNewFileUploadInfo = 149;
193
- public const int GetFileUploadInfo = 150;
194
- public const int RequestDownloadFileUploadInfo = 151;
195
- public const int RemoveFileUploadInfo = 152;
196
- public const int GetFileUploadInfoList = 153;
197
- public const int SetStoreItemInformation = 154;
198
- public const int RefreshAuthToken = 155;
199
-
200
- public const int CancelAllMatchmakingTicket = 156;
201
- public const int CancelMatchmakingTicket = 157;
202
- public const int CreateMatchmakingTicket = 158;
203
- public const int GetMatch = 159;
204
- public const int GetMatchmakingTicket = 160;
205
- public const int GetQueueStatistics = 161;
206
- public const int JoinMatchmakingTicket = 162;
207
- public const int ListMatchmakingTicketsForPlayer = 163;
208
-
209
- public const int GetCurrencyLeaderboard = 164;
210
-
211
- private OperationCode() { }
212
-
213
- }
3
+ public partial class OperationCode
4
+ {
5
+ public const int LoginByAdminAccount = -1;
6
+ public const int ChangePasswordAdminAccount = -2;
7
+ public const int GetGameList = -3;
8
+ public const int GetMasterGameSettings = -4;
9
+ public const int SetMasterGameSettings = -5;
10
+ public const int GrantAdminAccount = -6;
11
+ public const int RemoveAdminAccount = -7;
12
+ public const int SetPasswordAdminAccount = -8;
13
+ public const int SetSecretKeyAdminAccount = -9;
14
+ public const int GetGameInformation = -10;
15
+ public const int SetGameInformation = -11;
16
+ public const int GetAdminAccountList = -12;
17
+ public const int GrantGame = -13;
18
+ public const int GetServerLog = -14;
19
+ public const int GetSecretInfoInformation = -15;
20
+ public const int GetSecretInfoList = -16;
21
+ public const int GrantSecretInfo = -17;
22
+ public const int SetSecretInfoInformation = -18;
23
+ public const int GetUsernameAdminAccount = -19;
24
+ public const int GetAnalytics = -20;
25
+ public const int GetEventCallbackCloudScript = -21;
26
+ public const int SetEventCallbackCloudScript = -22;
27
+ public const int ResetStatisticsLeaderboard = -23;
28
+ public const int GetBackupStatisticsLeaderboardVersion = -24;
29
+ public const int GetServerGameData = -25;
30
+
31
+ public const int LoginByAccount = 1;
32
+ public const int LoginByAndroidDeviceId = 2;
33
+ public const int LoginByApple = 3;
34
+ public const int LoginByCustomDeviceId = 4;
35
+ public const int LoginByCustomId = 5;
36
+ public const int LoginByEditorDeviceId = 6;
37
+ public const int LoginByFacebook = 7;
38
+ public const int LoginByGenericService = 8;
39
+ public const int LoginByGoogle = 9;
40
+ public const int LoginByiOSDeviceId = 10;
41
+ public const int LoginByLinuxDeviceId = 11;
42
+ public const int LoginByMacOSDeviceId = 12;
43
+ public const int LoginByWindowsDeviceId = 13;
44
+ public const int LoginByWindowsPhoneDeviceId = 14;
45
+ public const int RegisterAccount = 15;
46
+
47
+ public const int LinkAccount = 16;
48
+ public const int LinkAndroidDeviceId = 17;
49
+ public const int LinkApple = 18;
50
+ public const int LinkCustomDeviceId = 19;
51
+ public const int LinkCustomId = 20;
52
+ public const int LinkEditorDeviceId = 21;
53
+ public const int LinkFacebook = 22;
54
+ public const int LinkGenericService = 23;
55
+ public const int LinkGoogle = 24;
56
+ public const int LinkiOSDeviceId = 25;
57
+ public const int LinkLinuxDeviceId = 26;
58
+ public const int LinkMacOSDeviceId = 27;
59
+ public const int LinkWindowsDeviceId = 28;
60
+ public const int LinkWindowsPhoneDeviceId = 29;
61
+
62
+ public const int UnlinkAccount = 30;
63
+ public const int UnlinkAndroidDeviceId = 31;
64
+ public const int UnlinkApple = 32;
65
+ public const int UnlinkCustomDeviceId = 33;
66
+ public const int UnlinkCustomId = 34;
67
+ public const int UnlinkEditorDeviceId = 35;
68
+ public const int UnlinkFacebook = 36;
69
+ public const int UnlinkGenericService = 37;
70
+ public const int UnlinkGoogle = 38;
71
+ public const int UnlinkiOSDeviceId = 39;
72
+ public const int UnlinkLinuxDeviceId = 40;
73
+ public const int UnlinkMacOSDeviceId = 41;
74
+ public const int UnlinkWindowsDeviceId = 42;
75
+ public const int UnlinkWindowsPhoneDeviceId = 43;
76
+
77
+ public const int AddSegment = 44;
78
+ public const int RemoveSegment = 45;
79
+ public const int GetSegment = 46;
80
+
81
+ public const int SetTag = 47;
82
+ public const int GetTag = 48;
83
+
84
+ public const int SetDisplayName = 49;
85
+ public const int GetDisplayName = 50;
86
+
87
+ public const int GetTsCreate = 51;
88
+ public const int GetIpAddressCreate = 52;
89
+ public const int GetTsLastLogin = 53;
90
+
91
+ public const int SetPlayerBan = 54;
92
+ public const int GetPlayerBan = 55;
93
+
94
+ public const int SetCountryCode = 56;
95
+ public const int GetCountryCode = 57;
96
+
97
+ public const int ChangeAccountPassword = 58;
98
+ public const int ResetAccountPassword = 59;
99
+
100
+ public const int SetAvatar = 60;
101
+ public const int GetAvatar = 61;
102
+
103
+ public const int SetPlayerCurrency = 62;
104
+ public const int GetPlayerCurrency = 63;
105
+
106
+ public const int SetPlayerStatistics = 64;
107
+ public const int GetPlayerStatistics = 65;
108
+
109
+ public const int GetStatisticsLeaderboard = 66;
110
+ public const int GetStatisticsLeaderboardAroundPlayer = 67;
111
+
112
+ public const int SetCustomData = 68;
113
+ public const int GetCustomData = 69;
114
+
115
+ public const int SetPlayerData = 70;
116
+ public const int GetPlayerData = 71;
117
+
118
+ public const int GetPlayerInformation = 72;
119
+
120
+ public const int GetPlayersWithApple = 73;
121
+ public const int GetPlayersWithFacebook = 74;
122
+ public const int GetPlayersWithGoogle = 75;
123
+ public const int GetPlayersWithGenericService = 76;
124
+ public const int GetPlayersWithSegment = 77;
125
+ public const int GetPlayersWithTag = 78;
126
+ public const int GetExternal = 79;
127
+ public const int GetCatalogId = 80;
128
+ public const int GetOwnerInfo = 81;
129
+ public const int GetOnlineStatus = 82;
130
+ public const int RemovePlayerItem = 83;
131
+ public const int RemovePlayerCharacter = 84;
132
+ public const int AddPlayerFriend = 85;
133
+ public const int RemovePlayerFriend = 86;
134
+ public const int GetPlayerInventory = 87;
135
+ public const int GetPlayerCharacter = 88;
136
+ public const int GetPlayerFriend = 89;
137
+ public const int GetPlayerGroup = 90;
138
+ public const int GrantGroup = 91;
139
+ public const int JoinGroup = 92;
140
+ public const int GrantPlayerItem = 93;
141
+ public const int GrantPlayerCharacter = 94;
142
+ public const int GetOwner = 95;
143
+ public const int GetRemoveStatus = 96;
144
+ public const int SetGroupStatistics = 97;
145
+ public const int SetGroupData = 98;
146
+ public const int GetGroupCurrency = 99;
147
+ public const int SetGroupCurrency = 100;
148
+ public const int GrantGroupItem = 101;
149
+ public const int GetStatisticsLeaderboardAroundGroup = 102;
150
+ public const int GetGroupsWithTag = 103;
151
+ public const int GetGroupsWithSegment = 104;
152
+ public const int GetGroupStatistics = 105;
153
+ public const int GetGroupInventory = 106;
154
+ public const int GetGroupData = 107;
155
+ public const int GetGroupInformation = 108;
156
+ public const int GetMembers = 109;
157
+ public const int SetItemStatistics = 110;
158
+ public const int SetItemData = 111;
159
+ public const int GetItemData = 112;
160
+ public const int GetStatisticsLeaderboardAroundItem = 113;
161
+ public const int GetItemsWithTag = 114;
162
+ public const int GetItemsWithSegment = 115;
163
+ public const int GetItemStatistics = 116;
164
+ public const int GetItemInformation = 117;
165
+ public const int GetAmount = 118;
166
+ public const int GetItemType = 119;
167
+ public const int SetTsLastLogin = 120;
168
+ public const int SetRemoveStatus = 121;
169
+ public const int SetAmount = 122;
170
+ public const int RemoveGroup = 123;
171
+ public const int LeaveGroup = 124;
172
+ public const int AddMember = 125;
173
+ public const int RemoveMember = 126;
174
+ public const int GetContentData = 127;
175
+ public const int SetContentData = 128;
176
+ public const int GetGroupMessage = 129;
177
+ public const int SendGroupMessage = 130;
178
+ public const int GetPlayersWithDisplayName = 131;
179
+ public const int GetItemsWithDisplayName = 132;
180
+ public const int GetGroupsWithDisplayName = 133;
181
+ public const int SetOwner = 134;
182
+ public const int RemoveGroupItem = 135;
183
+ public const int GetClassId = 136;
184
+
185
+ public const int GetStoreItemInformation = 137;
186
+ public const int GetStoreItemsWithTag = 138;
187
+ public const int GrantStoreItem = 139;
188
+ public const int RemoveTag = 140;
189
+ public const int BuyStoreItem = 141;
190
+ public const int ValidateAppleAppStoreReceipt = 142;
191
+ public const int ValidateGooglePlayStoreReceipt = 143;
192
+ public const int ValidateFacebookStoreReceipt = 144;
193
+ public const int GetFriendStatisticsLeaderboardAroundPlayer = 145;
194
+ public const int GetFriendStatisticsLeaderboard = 146;
195
+ public const int SetEmail = 147;
196
+ public const int GetEmail = 148;
197
+
198
+ public const int CreateNewFileUploadInfo = 149;
199
+ public const int GetFileUploadInfo = 150;
200
+ public const int RequestDownloadFileUploadInfo = 151;
201
+ public const int RemoveFileUploadInfo = 152;
202
+ public const int GetFileUploadInfoList = 153;
203
+ public const int SetStoreItemInformation = 154;
204
+ public const int RefreshAuthToken = 155;
205
+
206
+ public const int CancelAllMatchmakingTicket = 156;
207
+ public const int CancelMatchmakingTicket = 157;
208
+ public const int CreateMatchmakingTicket = 158;
209
+ public const int GetMatch = 159;
210
+ public const int GetMatchmakingTicket = 160;
211
+ public const int GetQueueStatistics = 161;
212
+ public const int JoinMatchmakingTicket = 162;
213
+ public const int ListMatchmakingTicketsForPlayer = 163;
214
+
215
+ public const int GetCurrencyLeaderboard = 164;
216
+
217
+ public const int ExecuteFunction = 165;
218
+ public const int GetFunctions = 166;
219
+ public const int AddFunction = 167;
220
+ public const int EditFunction = 168;
221
+ public const int GetFunction = 169;
222
+
223
+ public const int LoginByGooglePlayGameService = 170;
224
+ public const int LoginByGameCenter = 171;
225
+ public const int LinkGooglePlayGameService = 172;
226
+ public const int LinkGameCenter = 173;
227
+ public const int UnlinkGooglePlayGameService = 174;
228
+ public const int UnlinkGameCenter = 175;
229
+ public const int GetPlayersWithGooglePlayGameService = 176;
230
+ public const int GetPlayersWithGameCenter = 177;
231
+ public const int GetLastLoginLeaderboard = 178;
232
+ public const int GetCreateLeaderboard = 179;
233
+
234
+ public const int GetAllMatchmakingTicket = 180;
235
+ public const int GetAllMatch = 181;
236
+ public const int SendSocketOperationEvent = 182;
237
+ public const int GetStatisticsLog = 183;
238
+ public const int GetCurrencyLog = 184;
239
+
240
+ public const int PresentStoreItem = 185;
241
+ public const int GetStoreLog = 186;
242
+
243
+ public const int SendEmail = 187;
244
+ public const int SendPushNotification = 188;
245
+ public const int AddPushNotification = 189;
246
+ public const int RemovePushNotification = 190;
247
+ public const int GetPushNotification = 191;
248
+
249
+ private OperationCode() { }
250
+
251
+ }
214
252
 
215
253
  }