-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathDdonGameServer.cs
More file actions
758 lines (683 loc) · 40.9 KB
/
Copy pathDdonGameServer.cs
File metadata and controls
758 lines (683 loc) · 40.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/*
* This file is part of Arrowgene.Ddon.GameServer
*
* Arrowgene.Ddon.GameServer is a server implementation for the game "Dragons Dogma Online".
* Copyright (C) 2019-2022 DDON Team
*
* Github: https://github.com/sebastian-heinz/Ddo-server
*
* Arrowgene.Ddon.GameServer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Arrowgene.Ddon.GameServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Arrowgene.Ddon.GameServer. If not, see <https://www.gnu.org/licenses/>.
*/
using Arrowgene.Ddon.Database;
using Arrowgene.Ddon.Database.Model;
using Arrowgene.Ddon.GameServer.Characters;
using Arrowgene.Ddon.GameServer.Chat;
using Arrowgene.Ddon.GameServer.Chat.Command;
using Arrowgene.Ddon.GameServer.Chat.Log;
using Arrowgene.Ddon.GameServer.Dump;
using Arrowgene.Ddon.GameServer.Handler;
using Arrowgene.Ddon.GameServer.Party;
using Arrowgene.Ddon.GameServer.Scripting;
using Arrowgene.Ddon.GameServer.Shop;
using Arrowgene.Ddon.Server;
using Arrowgene.Ddon.Server.Handler;
using Arrowgene.Ddon.Server.Network;
using Arrowgene.Ddon.Shared;
using Arrowgene.Ddon.Shared.Entity;
using Arrowgene.Ddon.Shared.Entity.PacketStructure;
using Arrowgene.Ddon.Shared.Entity.Structure;
using Arrowgene.Ddon.Shared.Network;
using Arrowgene.Logging;
using Arrowgene.Networking.Tcp;
using System;
using System.Collections.Generic;
namespace Arrowgene.Ddon.GameServer
{
public class DdonGameServer : DdonServer<GameClient>
{
private static readonly ServerLogger Logger = LogProvider.Logger<ServerLogger>(typeof(DdonGameServer));
public DdonGameServer(GameServerSetting setting, GameSettings gameSettings, IDatabase database, AssetRepository assetRepository)
: base(ServerType.Game, setting.ServerSetting, database, assetRepository)
{
ServerSetting = new GameServerSetting(setting);
GameSettings = gameSettings;
ScriptManager = new GameServerScriptManager(this);
ClientLookup = new GameClientLookup();
ChatLogHandler = new ChatLogHandler();
ChatManager = new ChatManager(this);
ItemManager = new ItemManager(this);
CraftManager = new CraftManager(this);
PartyManager = new PartyManager(this);
ExpManager = new ExpManager(this, ClientLookup);
PPManager = new PlayPointManager(this);
JobManager = new JobManager(this);
EquipManager = new EquipManager();
ShopManager = new ShopManager(assetRepository, database);
WalletManager = new WalletManager(this);
CharacterManager = new CharacterManager(this);
BazaarManager = new BazaarManager(this);
RewardManager = new RewardManager(this);
StampManager = new StampManager(this);
HubManager = new HubManager(this);
GpCourseManager = new GpCourseManager(this);
WeatherManager = new WeatherManager(this);
PartyQuestContentManager = new PartyQuestContentManager(this);
DungeonManager = new DungeonManager(this);
BoardManager = new BoardManager(this);
TimerManager = new TimerManager(this);
ClanManager = new ClanManager(this);
RpcManager = new RpcManager(this);
EpitaphRoadManager = new EpitaphRoadManager(this);
ScheduleManager = new ScheduleManager(this);
AreaRankManager = new AreaRankManager(this);
GameTimeManager = new GameTimeManager(this);
PartnerPawnManager = new PartnerPawnManager(this);
AchievementManager = new AchievementManager(this);
JobMasterManager = new JobMasterManager(this);
JobOrbUnlockManager = new JobOrbUnlockManager(this);
JobEmblemManager = new JobEmblemManager(this);
// Orb Management is slightly complex and requires updating fields across multiple systems
OrbUnlockManager = new OrbUnlockManager(this);
S2CStageGetStageListRes stageListPacket =
EntitySerializer.Get<S2CStageGetStageListRes>().Read(GameDump.data_Dump_19);
StageList = stageListPacket.StageList;
}
public event EventHandler<ClientConnectionChangeArgs> ClientConnectionChangeEvent;
public GameServerSetting ServerSetting { get; }
public GameSettings GameSettings { get; }
public GameServerScriptManager ScriptManager { get; }
public ChatManager ChatManager { get; }
public ItemManager ItemManager { get; }
public CraftManager CraftManager { get; }
public PartyManager PartyManager { get; }
public ExpManager ExpManager { get; }
public PlayPointManager PPManager { get; }
public ShopManager ShopManager { get; }
public JobManager JobManager { get; }
public OrbUnlockManager OrbUnlockManager { get; }
public WalletManager WalletManager { get; }
public CharacterManager CharacterManager { get; }
public EquipManager EquipManager { get; }
public BazaarManager BazaarManager { get; }
public RewardManager RewardManager { get; }
public StampManager StampManager { get; }
public HubManager HubManager { get; }
public GpCourseManager GpCourseManager { get; }
public WeatherManager WeatherManager { get; }
public PartyQuestContentManager PartyQuestContentManager { get; }
public DungeonManager DungeonManager { get; }
public BoardManager BoardManager { get; }
public TimerManager TimerManager { get; }
public ClanManager ClanManager { get; }
public RpcManager RpcManager { get; }
public EpitaphRoadManager EpitaphRoadManager { get; }
public ScheduleManager ScheduleManager { get; }
public AreaRankManager AreaRankManager { get; }
public GameTimeManager GameTimeManager { get; }
public PartnerPawnManager PartnerPawnManager { get; }
public AchievementManager AchievementManager { get; }
public JobMasterManager JobMasterManager { get; private set; }
public JobOrbUnlockManager JobOrbUnlockManager { get; }
public JobEmblemManager JobEmblemManager { get; }
public ChatLogHandler ChatLogHandler { get; }
public List<CDataStageInfo> StageList { get; }
public override GameClientLookup ClientLookup { get; }
// TODO: Maybe place somewhere else
public readonly Dictionary<uint, DateTime> LastRevivalPowerRechargeTime = new Dictionary<uint, DateTime>();
public override void Start()
{
ScriptManager.Initialize();
QuestManager.LoadQuests(this);
GpCourseManager.EvaluateCourses();
if (ServerUtils.IsHeadServer(this))
{
ScheduleManager.StartServerTasks();
}
LoadChatHandler();
LoadPacketHandler();
base.Start();
}
protected override void ClientConnected(GameClient client)
{
client.InitializeChallenge();
EventHandler<ClientConnectionChangeArgs> connectionChangeEvent = ClientConnectionChangeEvent;
if (connectionChangeEvent != null)
{
ClientConnectionChangeArgs connectionChangeEventArgs
= new ClientConnectionChangeArgs(ClientConnectionChangeArgs.EventType.CONNECT, client);
connectionChangeEvent(this, connectionChangeEventArgs);
}
Logger.Info($"ClientLookup, Connection: {ClientLookup.GetAll().Count}");
}
protected override void ClientDisconnected(GameClient client)
{
ClientLookup.Remove(client);
Account account = client.Account;
if (account != null)
{
Database.DeleteConnection(Id, client.Account.Id);
}
client.Party?.Leave(client);
EventHandler<ClientConnectionChangeArgs> connectionChangeEvent = ClientConnectionChangeEvent;
if (connectionChangeEvent != null)
{
ClientConnectionChangeArgs connectionChangeEventArgs
= new ClientConnectionChangeArgs(ClientConnectionChangeArgs.EventType.DISCONNECT, client);
connectionChangeEvent(this, connectionChangeEventArgs);
}
Logger.Info($"ClientLookup, Disconnect: {ClientLookup.GetAll().Count}");
}
public override GameClient NewClient(ITcpSocket socket)
{
GameClient newClient = new GameClient(socket,
new PacketFactory(ServerSetting.ServerSetting, PacketIdResolver.GamePacketIdResolver), this);
ClientLookup.Add(newClient);
return newClient;
}
private void LoadChatHandler()
{
ChatManager.AddHandler(ChatLogHandler);
ChatManager.AddHandler(new ChatCommandHandler(this));
}
private void LoadPacketHandler()
{
SetFallbackHandler(new FallbackHandler<GameClient>(this));
AddHandler(new AchievementGetReceivableRewardListHandler(this));
AddHandler(new AchievementGetProgressListHandler(this));
AddHandler(new AchievementGetRewardListHandler(this));
AddHandler(new AchievementGetFurnitureRewardListHandler(this));
AddHandler(new AchievementRewardReceiveHandler(this));
AddHandler(new AchievementGetCategoryProgressListHandler(this));
AddHandler(new AreaGetAreaBaseInfoListHandler(this));
AddHandler(new AreaGetAreaMasterInfoHandler(this));
AddHandler(new AreaGetAreaQuestHintListHandler(this));
AddHandler(new AreaGetAreaSupplyInfoHandler(this));
AddHandler(new AreaGetLeaderAreaReleaseListHandler(this));
AddHandler(new AreaGetSpotInfoListHandler(this));
AddHandler(new AreaAreaRankUpHandler(this));
AddHandler(new AreaGetAreaSupplyHandler(this));
AddHandler(new BattleContentInfoListHandler(this));
AddHandler(new BattleContentGetContentStatusFromOmHandler(this));
AddHandler(new BattleContentGetPhaseToChangeFromOmHandler(this));
AddHandler(new BattleContentPhaseEntryBeginRecruitmentHandler(this));
AddHandler(new BattleContentPhaseEntryReadyCancelHandler(this));
AddHandler(new BattleContentContentEntryHandler(this));
AddHandler(new BattleContentInstantClearInfoHandler(this));
AddHandler(new BattleContentPartyMemberInfoHandler(this));
AddHandler(new BattleContentPartyMemberInfoUpdateHandler(this));
AddHandler(new BattleContentContentFirstPhaseChangeHandler(this));
AddHandler(new BattleContentCharacterInfoHandler(this));
AddHandler(new BattleContentRewardListHandler(this));
AddHandler(new BattleContentResetInfoHandler(this));
AddHandler(new BattleContentGetRewardHandler(this));
AddHandler(new BattleContentContentResetHandler(this));
AddHandler(new BazaarCancelHandler(this));
AddHandler(new BazaarExhibitHandler(this));
AddHandler(new BazaarGetCharacterListHandler(this));
AddHandler(new BazaarGetExhibitPossibleNumHandler(this));
AddHandler(new BazaarGetItemHistoryInfoHandler(this));
AddHandler(new BazaarGetItemInfoHandler(this));
AddHandler(new BazaarGetItemListHandler(this));
AddHandler(new BazaarGetItemPriceLimitHandler(this));
AddHandler(new BazaarProceedsHandler(this));
AddHandler(new BazaarReceiveProceedsHandler(this));
AddHandler(new BazaarReExhibitHandler(this));
AddHandler(new BinarySaveSetCharacterBinSavedataHandler(this));
AddHandler(new BlackListGetBlackListHandler(this));
AddHandler(new ActionSetPlayerActionHistoryHandler(this));
AddHandler(new CharacterCommunityCharacterStatusGetHandler(this));
AddHandler(new CharacterDecideCharacterIdHandler(this));
AddHandler(new CharacterGetReviveChargeableTimeHandler(this));
AddHandler(new CharacterCharacterGoldenReviveHandler(this));
AddHandler(new CharacterCharacterPenaltyReviveHandler(this));
AddHandler(new CharacterCharacterPointReviveHandler(this));
AddHandler(new CharacterCharacterSearchHandler(this));
AddHandler(new CharacterChargeRevivePointHandler(this));
AddHandler(new CharacterPawnGoldenReviveHandler(this));
AddHandler(new CharacterPawnPointReviveHandler(this));
AddHandler(new CharacterSetOnlineStatusHandler(this));
AddHandler(new CharacterEditGetShopPriceHandler(this));
AddHandler(new CharacterEditUpdateCharacterEditParamHandler(this));
AddHandler(new CharacterEditUpdateCharacterEditParamExHandler(this));
AddHandler(new CharacterEditUpdatePawnEditParamHandler(this));
AddHandler(new CharacterEditUpdatePawnEditParamExHandler(this));
AddHandler(new CharacterCharacterDeadHandler(this));
AddHandler(new CharacterCharacterDownCancelHandler(this));
AddHandler(new CharacterCharacterDownHandler(this));
AddHandler(new CharacterPawnDeadHandler(this));
AddHandler(new CharacterPawnDownCancelHandler(this));
AddHandler(new CharacterPawnDownHandler(this));
AddHandler(new CharacterSwitchGameModeHandler(this));
AddHandler(new CharacterCreateModeCharacterEditHandler(this));
AddHandler(new ClanClanBaseGetInfoHandler(this));
AddHandler(new ClanClanConciergeGetListHandler(this));
AddHandler(new ClanClanConciergeUpdateHandler(this));
AddHandler(new ClanClanGetJoinRequestedListHandler(this));
AddHandler(new ClanClanGetMyInfoHandler(this));
AddHandler(new ClanClanGetMyMemberListHandler(this));
AddHandler(new ClanClanPartnerPawnDataGetHandler(this));
AddHandler(new ClanClanSettingUpdateHandler(this));
AddHandler(new ClanGetFurnitureHandler(this));
AddHandler(new ClanSetFurnitureHandler(this));
AddHandler(new ClanClanScoutEntryGetMyHandler(this));
AddHandler(new ClanClanScoutEntryGetInvitedListHandler(this));
AddHandler(new ClanClanGetMyJoinRequestListHandler(this));
AddHandler(new ClanClanCreateHandler(this));
AddHandler(new ClanClanGetHistoryHandler(this));
AddHandler(new ClanClanUpdateHandler(this));
AddHandler(new ClanClanInviteHandler(this));
AddHandler(new ClanClanGetInfoHandler(this));
AddHandler(new ClanClanInviteAcceptHandler(this));
AddHandler(new ClanClanScoutEntrySearchHandler(this));
AddHandler(new ClanClanSearchHandler(this));
AddHandler(new ClanClanScoutEntryGetInviteListHandler(this));
AddHandler(new ClanClanLeaveMemberHandler(this));
AddHandler(new ClanClanGetMemberListHandler(this));
AddHandler(new ClanClanExpelMemberHandler(this));
AddHandler(new ClanClanSetMemberRankHandler(this));
AddHandler(new ClanClanNegotiateMasterHandler(this));
AddHandler(new ClanClanBaseReleaseHandler(this));
AddHandler(new ClanClanShopGetFunctionItemListHandler(this));
AddHandler(new ClanClanShopGetBuffItemListHandler(this));
AddHandler(new ClanClanShopBuyFunctionItemHandler(this));
AddHandler(new ClanClanShopBuyBuffItemHandler(this));
AddHandler(new ClientChallengeHandler(this));
AddHandler(new ConnectionGetLoginAnnouncementHandler(this));
AddHandler(new ConnectionLoginHandler(this));
AddHandler(new ConnectionLogoutHandler(this));
AddHandler(new ConnectionMoveInServerHandler(this));
AddHandler(new ConnectionMoveOutServerHandler(this));
AddHandler(new ConnectionPingHandler(this));
AddHandler(new ConnectionReserveServerHandler(this));
AddHandler(new ContextGetSetContextHandler(this));
AddHandler(new ContextMasterThrowHandler(this));
AddHandler(new ContextSetContextHandler(this));
AddHandler(new Context_35_5_16_Handler(this));
AddHandler(new CraftGetCraftIRCollectionValueListHandler(this));
AddHandler(new CraftGetCraftProgressListHandler(this));
AddHandler(new CraftGetCraftSettingHandler(this));
AddHandler(new CraftRecipeGetCraftRecipeHandler(this));
AddHandler(new CraftRecipeGetCraftRecipeDesignateHandler(this));
AddHandler(new CraftStartCraftHandler(this));
AddHandler(new CraftSkillUpHandler(this));
AddHandler(new CraftGetCraftProductInfoHandler(this));
AddHandler(new CraftCancelCraftHandler(this));
AddHandler(new CraftTimeSaveHandler(this));
AddHandler(new CraftGetCraftProductHandler(this));
AddHandler(new CraftResetCraftpointHandler(this));
AddHandler(new CraftStartEquipGradeUpHandler(this));
AddHandler(new CraftStartQualityUpHandler(this));
AddHandler(new CraftSkillAnalyzeHandler(this));
AddHandler(new CraftRecipeGetGradeupRecipeHandler(this));
AddHandler(new CraftStartEquipColorChangeHandler(this));
AddHandler(new CraftStartAttachElementHandler(this));
AddHandler(new CraftStartDetachElementHandler(this));
AddHandler(new DailyMissionListGetHandler(this));
AddHandler(new DispelGetDispelItemSettingsHandler(this));
AddHandler(new DispelGetDispelItemListHandler(this));
AddHandler(new DispelExchangeDispelItemHandler(this));
AddHandler(new EquipChangeCharacterEquipHandler(this));
AddHandler(new EquipChangeCharacterEquipJobItemHandler(this));
AddHandler(new EquipChangeCharacterStorageEquipHandler(this));
AddHandler(new EquipChangePawnEquipHandler(this));
AddHandler(new EquipChangePawnEquipJobItemHandler(this));
AddHandler(new EquipChangePawnStorageEquipHandler(this));
AddHandler(new EquipEnhancedGetPacks(this));
AddHandler(new EquipGetCharacterEquipListHandler(this));
AddHandler(new EquipGetCraftLockedElementListHandler(this));
AddHandler(new EquipUpdateHideCharacterHeadArmorHandler(this));
AddHandler(new EquipUpdateHideCharacterLanternHandler(this));
AddHandler(new EquipUpdateHidePawnHeadArmorHandler(this));
AddHandler(new EquipUpdateHidePawnLanternHandler(this));
AddHandler(new EquipEnhancedEnhanceItemHandler(this));
AddHandler(new EventStartHandler(this));
AddHandler(new EventEndHandler(this));
AddHandler(new FriendGetFriendListHandler(this));
AddHandler(new FriendApplyFriendListHandler(this));
AddHandler(new FriendApproveFriendListHandler(this));
AddHandler(new FriendRemoveFriendHandler(this));
AddHandler(new FriendRegisterFavoriteFriendHandler(this));
AddHandler(new FriendCancelFriendApplicationHandler(this));
AddHandler(new FriendGetRecentCharacterListHandler(this));
AddHandler(new GpGetGpDetailHandler(this));
AddHandler(new GpGetGpPeriodHandler(this));
AddHandler(new GpGetUpdateAppCourseBonusFlagHandler(this));
AddHandler(new GpGetValidChatComGroupHandler(this));
AddHandler(new GpGpEditGetVoiceListHandler(this));
AddHandler(new GpGetGpHandler(this));
AddHandler(new GpGpCourseGetAvailableListHandler(this));
AddHandler(new GroupChatGroupChatGetMemberListHandler(this));
AddHandler(new InnGetPenaltyHealStayPrice(this));
AddHandler(new InnGetStayPriceHandler(this));
AddHandler(new InnStayInnHandler(this));
AddHandler(new InnStayPenaltyHealInn(this));
AddHandler(new InnHpRecoveryCompleteHandler(this));
AddHandler(new InstanceEnemyGroupEntryHandler(this));
AddHandler(new InstanceEnemyGroupLeaveHandler(this));
AddHandler(new InstanceEnemyKillHandler(this));
AddHandler(new InstanceExchangeOmInstantKeyValueHandler(this));
AddHandler(new InstanceGetDropItemListHandler(this));
AddHandler(new InstanceGetDropItemHandler(this));
AddHandler(new InstanceGetEnemySetListHandler(this));
AddHandler(new InstanceGetGatheringItemHandler(this));
AddHandler(new InstanceGetGatheringItemListHandler(this));
AddHandler(new InstanceGetItemSetListHandler(this));
AddHandler(new InstanceSetOmInstantKeyValueHandler(this));
AddHandler(new InstanceTreasurePointGetCategoryListHandler(this));
AddHandler(new InstanceTreasurePointGetListHandler(this));
AddHandler(new InstanceCharacterEndBadStatusHandler(this));
AddHandler(new InstanceCharacterStartBadStatusHandler(this));
AddHandler(new InstancePlTouchOmHandler(this));
AddHandler(new InstanceGetOmInstantKeyValueAllHandler(this));
AddHandler(new InstanceTraningRoomGetEnemyListHandler(this));
AddHandler(new InstanceTraningRoomSetEnemyHandler(this));
AddHandler(new InstanceEnemyBadStatusStartHandler(this));
AddHandler(new InstanceEnemyBadStatusEndHandler(this));
AddHandler(new ItemConsumeStorageItemHandler(this));
AddHandler(new ItemGetStorageItemListHandler(this));
AddHandler(new ItemMoveItemHandler(this));
AddHandler(new ItemSellItemHandler(this));
AddHandler(new ItemSortGetItemSortDataBinHandler(this));
AddHandler(new ItemSortSetItemSortDataBinHandler(this));
AddHandler(new ItemUseBagItemHandler(this));
AddHandler(new ItemUseJobItemsHandler(this));
AddHandler(new ItemGetValuableItemListHandler(this));
AddHandler(new ItemGetPostItemListHandler(this));
AddHandler(new ItemGetDefaultStorageEmptySlotNumHandler(this));
AddHandler(new ItemEmbodyPayCostHandler(this));
AddHandler(new ItemGetSpecifiedHavingItemListHandler(this));
AddHandler(new ItemEmbodyItemsHandler(this));
AddHandler(new ItemChangeAttrDiscardHandler(this));
AddHandler(new ItemGetEquipRareTypeItemsHandler(this));
AddHandler(new JobChangeJobHandler(this));
AddHandler(new JobChangePawnJobHandler(this));
AddHandler(new JobGetJobChangeListHandler(this));
AddHandler(new JobUpdateExpModeHandler(this));
AddHandler(new JobGetPlayPointListHandler(this));
AddHandler(new JobJobValueShopGetLineupHandler(this));
AddHandler(new JobJobValueShopBuyItemHandler(this));
AddHandler(new JobEmblemAttachElementHandler(this));
AddHandler(new JobEmblemDetachElementHandler(this));
AddHandler(new JobEmblemGetEmblemListHandler(this));
AddHandler(new JobEmblemUpdateLevelHandler(this));
AddHandler(new JobEmblemUpdateParamLevelHandler(this));
AddHandler(new JobEmblemResetParamLevelHandler(this));
AddHandler(new JobMasterReportJobOrderProgressHandler(this));
AddHandler(new JobMasterGetJobMasterOrderProgressHandler(this));
AddHandler(new JobOrbTreeGetJobOrbTreeStatusListHandler(this));
AddHandler(new JobOrbTreeGetJobOrbTreeGetAllJobOrbElementListHandler(this));
AddHandler(new JobOrbTreeReleaseJobOrbElementHandler(this));
AddHandler(new LoadingInfoLoadingGetInfoHandler(this));
AddHandler(new ChatSendTellMsgHandler(this));
AddHandler(new LobbyLobbyJoinHandler(this));
AddHandler(new LobbyLobbyLeaveHandler(this));
AddHandler(new LobbyLobbyChatMsgHandler(this));
AddHandler(new LobbyLobbyDataMsgHandler(this));
AddHandler(new MailMailGetListDataHandler(this));
AddHandler(new MailMailGetListFootHandler(this));
AddHandler(new MailMailGetListHeadHandler(this));
AddHandler(new MailSystemMailGetListDataHandler(this));
AddHandler(new MailSystemMailGetListFootHandler(this));
AddHandler(new MailSystemMailGetListHeadHandler(this));
AddHandler(new MailSystemMailGetTextHandler(this));
AddHandler(new MailSystemMailGetAllItemHandler(this));
AddHandler(new MailSystemMailDeleteHandler(this));
AddHandler(new MandragoraGetMyMandragoraHandler(this));
AddHandler(new MandragoraGetSpeciesCategoryListHandler(this));
AddHandler(new MandragoraGetSpeciesListHandler(this));
AddHandler(new MandragoraGetCraftRecipeListHandler(this));
AddHandler(new MandragoraBeginCraftHandler(this));
AddHandler(new MyRoomFurnitureLayoutHandler(this));
AddHandler(new MyRoomFurnitureListGetHandler(this));
AddHandler(new MyRoomGetOtherRoomPermissionHandler(this));
AddHandler(new MyRoomMyRoomBgmUpdateHandler(this));
AddHandler(new MyRoomOtherRoomLayoutGetHandler(this));
AddHandler(new MyRoomOtherRoomLayoutUpdateHandler(this));
AddHandler(new MyRoomSetOtherRoomPermissionHandler(this));
AddHandler(new MyRoomUpdatePlanetariumHandler(this));
AddHandler(new NpcGetExtendedFacilityHandler(this));
AddHandler(new OrbDevoteGetOrbGainExtendParamHandler(this));
AddHandler(new OrbDevoteGetReleaseOrbElementListHandler(this));
AddHandler(new OrbDevoteReleaseOrbElementHandler(this));
AddHandler(new OrbDevoteGetPawnReleaseOrbElementListHandler(this));
AddHandler(new OrbDevoteReleasePawnOrbElementHandler(this));
AddHandler(new PartnerPawnNextPresentTimeGetHandler(this));
AddHandler(new PartnerPawnPawnLikabilityReleasedRewardListGetHandler(this));
AddHandler(new PartnerPawnPawnLikabilityRewardGetHandler(this));
AddHandler(new PartnerPawnPawnLikabilityRewardListGetHandler(this));
AddHandler(new PartnerPawnPresentForPartnerPawnHandler(this));
AddHandler(new PartnerPawnSetHandler(this));
AddHandler(new PartyMemberSetValueHandler(this));
AddHandler(new PartyPartyBreakupHandler(this));
AddHandler(new PartyPartyChangeLeaderHandler(this));
AddHandler(new PartyPartyCreateHandler(this));
AddHandler(new PartyPartyInviteCancelHandler(this));
AddHandler(new PartyPartyInviteCharacterHandler(this));
AddHandler(new PartyPartyInviteEntryHandler(this));
AddHandler(new PartyPartyInvitePrepareAcceptHandler(this));
AddHandler(new PartyPartyInviteRefuseHandler(this));
AddHandler(new PartyPartyJoinHandler(this));
AddHandler(new PartyPartyLeaveHandler(this));
AddHandler(new PartyPartyMemberKickHandler(this));
AddHandler(new PartySendBinaryMsgAllHandler(this));
AddHandler(new PartySendBinaryMsgHandler(this));
AddHandler(new PawnGetLostPawnListHandler(this));
AddHandler(new PawnGetMyPawnDataHandler(this));
AddHandler(new PawnGetMyPawnListHandler(this));
AddHandler(new PawnGetNoraPawnListHandler(this));
AddHandler(new PawnGetPartyPawnDataHandler(this));
AddHandler(new PawnGetPawnHistoryListHandler(this));
AddHandler(new PawnGetPawnTotalScoreHandler(this));
AddHandler(new PawnGetRegisteredPawnDataHandler(this));
AddHandler(new PawnGetRentedPawnDataHandler(this));
AddHandler(new PawnGetRentedPawnListHandler(this));
AddHandler(new PawnJoinPartyMyPawnHandler(this));
AddHandler(new PawnLostPawnGoldenReviveHandler(this));
AddHandler(new PawnLostPawnPointReviveHandler(this));
AddHandler(new PawnLostPawnReviveHandler(this));
AddHandler(new PawnLostPawnWalletReviveHandler(this));
AddHandler(new PawnPawnLostHandler(this));
AddHandler(new PawnRentalPawnLostHandler(this));
AddHandler(new PawnSpSkillDeleteStockSkillHandler(this));
AddHandler(new PawnSpSkillGetActiveSkillHandler(this));
AddHandler(new PawnSpSkillGetStockSkillHandler(this));
AddHandler(new PawnSpSkillSetActiveSkillHandler(this));
AddHandler(new PawnTrainingGetPreparetionInfoToAdviceHandler(this));
AddHandler(new PawnTrainingGetTrainingStatusHandler(this));
AddHandler(new PawnTrainingSetTrainingStatusHandler(this));
AddHandler(new PawnCreatePawnHandler(this));
AddHandler(new PawnDeleteMyPawnHandler(this));
AddHandler(new PawnGetRegisteredPawnListHandler(this));
AddHandler(new PawnGetOfficialPawnListHandler(this));
AddHandler(new PawnRentRegisteredPawnHandler(this));
AddHandler(new PawnJoinPartyRentedPawnHandler(this));
AddHandler(new PawnReturnRentedPawnHandler(this));
AddHandler(new PawnUpdatePawnReactionListHandler(this));
AddHandler(new PawnGetFavoritePawnListHandler(this));
AddHandler(new PawnSetFavoritePawnHandler(this));
AddHandler(new PawnDeleteFavoritePawnHandler(this));
AddHandler(new PawnExpeditionGetSallyInfoHandler(this));
AddHandler(new PhotoPhotoTakeHandler(this));
AddHandler(new ProfileGetAvailableBackgroundListHandler(this));
AddHandler(new ProfileGetCharacterProfileHandler(this));
AddHandler(new ProfileGetMyCharacterProfileHandler(this));
AddHandler(new ProfileSetArisenProfileHandler(this));
AddHandler(new ProfileSetMatchingProfileHandler(this));
AddHandler(new Quest_11_60_16_Handler(this));
AddHandler(new QuestCancelHandler(this));
AddHandler(new QuestCancelNavigationQuestHandler(this));
AddHandler(new QuestCancelPriorityQuestHandler(this));
AddHandler(new QuestDecideDeliveryItemHandler(this));
AddHandler(new QuestDeliverItemHandler(this));
AddHandler(new QuestEndDistributionQuestCancelHandler(this));
AddHandler(new QuestGetAdventureGuideQuestListHandler(this));
AddHandler(new QuestGetAdventureGuideQuestNoticeHandler(this));
AddHandler(new QuestGetAreaBonusListHandler(this));
AddHandler(new QuestGetAreaInfoListHandler(this));
AddHandler(new QuestGetCycleContentsNewsListHandler(this));
AddHandler(new QuestGetCycleContentsStateListHandler(this));
AddHandler(new QuestGetEndContentsGroupHandler(this));
AddHandler(new QuestGetEndContentsRecruitListHandler(this));
AddHandler(new QuestGetLevelBonusListHandler(this));
AddHandler(new QuestGetLightQuestList(this));
AddHandler(new QuestGetLotQuestListHandler(this));
AddHandler(new QuestGetMainQuestListHandler(this));
AddHandler(new QuestGetMobHuntQuestListHandler(this));
AddHandler(new QuestGetPackageQuestListHandler(this));
AddHandler(new QuestGetPartyBonusListHandler(this));
AddHandler(new QuestGetPartyQuestProgressInfoHandler(this));
AddHandler(new QuestGetPriorityQuestHandler(this));
AddHandler(new QuestGetQuestCompletedListHandler(this));
AddHandler(new QuestGetQuestPartyBonusListHandler(this));
AddHandler(new QuestGetQuestScheduleInfoHandler(this));
AddHandler(new QuestGetRewardBoxItemHandler(this));
AddHandler(new QuestGetRewardBoxListHandler(this));
AddHandler(new QuestGetSetQuestInfoListHandler(this));
AddHandler(new QuestGetSetQuestListHandler(this));
AddHandler(new QuestGetTutorialQuestListHandler(this));
AddHandler(new QuestGetWorldManageQuestListHandler(this));
AddHandler(new QuestLeaderQuestProgressRequestHandler(this));
AddHandler(new QuestPlayEndHandler(this));
AddHandler(new QuestPlayEntryCancelHandler(this));
AddHandler(new QuestPlayEntryHandler(this));
AddHandler(new QuestPlayInterruptAnswerHandler(this));
AddHandler(new QuestPlayInterruptHandler(this));
AddHandler(new QuestPlayStartHandler(this));
AddHandler(new QuestPlayStartTimerHandler(this));
AddHandler(new QuestQuestCompleteFlagClearHandler(this));
AddHandler(new QuestQuestLogInfoHandler(this));
AddHandler(new QuestQuestOrderHandler(this));
AddHandler(new QuestQuestProgressHandler(this));
AddHandler(new QuestSendLeaderQuestOrderConditionInfoHandler(this));
AddHandler(new QuestSendLeaderWaitOrderQuestListHandler(this));
AddHandler(new QuestSetNavigationHandler(this));
AddHandler(new QuestSetPriorityQuestHandler(this));
AddHandler(new RankingBoardListHandler(this));
AddHandler(new RankingRankListHandler(this));
AddHandler(new RankingRankListByCharacterIdHandler(this));
AddHandler(new EntryBoardEntryBoardListHandler(this));
AddHandler(new EntryBoardEntryBoardItemCreateHandler(this));
AddHandler(new EntryBoardEntryBoardItemForceStartHandler(this));
AddHandler(new EntryBoardEntryBoardItemInfoMyselfHandler(this));
AddHandler(new EntryBoardEntryBoardItemReadyHandler(this));
AddHandler(new EntryBoardEntryBoardItemLeaveHandler(this));
AddHandler(new EntryBoardEntryItemInfoChangeHandler(this));
AddHandler(new EntryBoardEntryBoardItemInviteHandler(this));
AddHandler(new EntryBoardEntryBoardItemInfoHandler(this));
AddHandler(new EntryBoardEntryBoardItemEntryHandler(this));
AddHandler(new EntryBoardEntryBoardItemListHandler(this));
AddHandler(new EntryBoardEntryRecreateHandler(this));
AddHandler(new EntryBoardItemKickHandler(this));
AddHandler(new EntryBoardEntryBoardItemExtendTimeoutHandler(this));
AddHandler(new EntryBoardPartyRecruitCategoryListHandler(this));
AddHandler(new RecycleGetInfoHandler(this));
AddHandler(new RecycleGetLotForcastHandler(this));
AddHandler(new RecycleResetCountHandler(this));
AddHandler(new RecycleStartExchangeHandler(this));
AddHandler(new SeasonDungeon62_40_16_Handler(this));
AddHandler(new SeasonDungeonGetIdFromNpcIdHandler(this));
AddHandler(new SeasonDungeonGetInfoHandler(this));
AddHandler(new SeasonDungeonGetExtendableBlockadeListFromNpcIdHandler(this));
AddHandler(new SeasonDungeonGetSoulOrdealListFromOmHandler(this));
AddHandler(new SeasonDungeonSoulOrdealReadyHandler(this));
AddHandler(new SeasonDungeonExecuteSoulOrdealHandler(this));
AddHandler(new SeasonDungeonGetSoulOrdealRewardListHandler(this));
AddHandler(new SeasonDungeonReceiveSoulOrdealBuffHandler(this));
AddHandler(new SeasonDungeonReceiveSoulOrdealRewardHandler(this));
AddHandler(new SeasonDungeon62_12_16_Handler(this));
AddHandler(new SeasonDungeonGetBlockadeIdFromOmHandler(this));
AddHandler(new SeasonDungeonGetExRequiredItemHandler(this));
AddHandler(new SeasonDungeonDeliverItemForExHandler(this));
AddHandler(new SeasonDungeonGetBlockadeIdFromNpcIdHandler(this));
AddHandler(new SeasonDungeonGetStatueStateHandler(this));
AddHandler(new SeasonDungeonUpdateKeyPointDoorStatusHandler(this));
AddHandler(new SeasonDungeonGetSoulOrdealRewardListForViewHandler(this));
AddHandler(new SeasonDungeonInterruptSoulOrdealHandler(this));
AddHandler(new SeasonDungeonSoulOrdealCancelReadyHandler(this));
AddHandler(new ServerGameTimeGetBaseinfoHandler(this));
AddHandler(new ServerGetGameSettingHandler(this));
AddHandler(new ServerGetRealTimeHandler(this));
AddHandler(new ServerGetServerListHandler(this));
AddHandler(new ServerWeatherForecastGetHandler(this));
AddHandler(new ServerGetScreenShotCategoryHandler(this));
AddHandler(new SkillChangeExSkillHandler(this));
AddHandler(new SkillGetAbilityCostHandler(this));
AddHandler(new SkillGetAcquirableAbilityListHandler(this));
AddHandler(new SkillGetAcquirableSkillListHandler(this));
AddHandler(new SkillGetCurrentSetSkillListHandler(this));
AddHandler(new SkillGetLearnedAbilityListHandler(this));
AddHandler(new SkillGetLearnedNormalSkillListHandler(this));
AddHandler(new SkillGetLearnedSkillListHandler(this));
AddHandler(new SkillGetPawnAbilityCostHandler(this));
AddHandler(new SkillGetPawnLearnedAbilityListHandler(this));
AddHandler(new SkillGetPawnLearnedNormalSkillListHandler(this));
AddHandler(new SkillGetPawnLearnedSkillListHandler(this));
AddHandler(new SkillGetPawnSetAbilityListHandler(this));
AddHandler(new SkillGetPawnSetSkillListHandler(this));
AddHandler(new SkillGetPresetAbilityListHandler(this));
AddHandler(new SkillGetSetAbilityListHandler(this));
AddHandler(new SkillGetSetSkillListHandler(this));
AddHandler(new SkillLearnAbilityHandler(this));
AddHandler(new SkillLearnNormalSkillHandler(this));
AddHandler(new SkillLearnPawnAbilityHandler(this));
AddHandler(new SkillLearnPawnNormalSkillHandler(this));
AddHandler(new SkillLearnPawnSkillHandler(this));
AddHandler(new SkillLearnSkillHandler(this));
AddHandler(new SkillSetAbilityHandler(this));
AddHandler(new SkillSetOffAbilityHandler(this));
AddHandler(new SkillSetOffPawnAbilityHandler(this));
AddHandler(new SkillSetOffPawnSkillHandler(this));
AddHandler(new SkillSetOffSkillHandler(this));
AddHandler(new SkillSetPawnAbilityHandler(this));
AddHandler(new SkillSetPawnSkillHandler(this));
AddHandler(new SkillSetSkillHandler(this));
AddHandler(new SkillRegisterPresetAbilityHandler(this));
AddHandler(new SkillSetPresetAbilityNameHandler(this));
AddHandler(new SkillSetPresetAbilityListHandler(this));
AddHandler(new SkillGetReleaseSkillListHandler(this));
AddHandler(new SkillGetReleaseAbilityListHandler(this));
AddHandler(new SetShortcutHandler(this));
AddHandler(new ShopBuyShopGoodsHandler(this));
AddHandler(new ShopGetShopGoodsListHandler(this));
AddHandler(new SetCommunicationShortcutHandler(this));
AddHandler(new StageAreaChangeHandler(this));
AddHandler(new StageGetStageListHandler(this));
AddHandler(new StageGetTicketDungeonCategoryListHandler(this));
AddHandler(new StageGetTicketDungeonInfoListHandler(this));
AddHandler(new StageUnisonAreaChangeBeginRecruitmentHandler(this));
AddHandler(new StageUnisonAreaChangeGetRecruitmentStateHandler(this));
AddHandler(new StageUnisonAreaChangeReadyHandler(this));
AddHandler(new StageUnisonAreaChangeReadyCancelHandler(this));
AddHandler(new StageGetSpAreaChangeIdFromNpcIdHandler(this));
AddHandler(new StageGetSpAreaChangeInfoHandler(this));
AddHandler(new StampBonusCheckHandler(this));
AddHandler(new StampBonusGetListHandler(this));
AddHandler(new StampBonusReceiveDailyHandler(this));
AddHandler(new StampBonusReceiveTotalHandler(this));
AddHandler(new WarpAreaWarpHandler(this));
AddHandler(new WarpGetAreaWarpPointListHandler(this));
AddHandler(new WarpGetFavoriteWarpPointListHandler(this));
AddHandler(new WarpGetReleaseWarpPointListHandler(this));
AddHandler(new WarpGetReturnLocationHandler(this));
AddHandler(new WarpGetStartPointListHandler(this));
AddHandler(new WarpGetWarpPointListHandler(this));
AddHandler(new WarpPartyWarpHandler(this));
AddHandler(new WarpRegisterFavoriteWarpHandler(this));
AddHandler(new WarpReleaseWarpPointHandler(this));
AddHandler(new WarpWarpHandler(this));
AddHandler(new WarpWarpStartHandler(this));
AddHandler(new WarpWarpEndHandler(this));
}
}
}