forked from Dawn-of-Light/DOLSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsolePacketLib.cs
266 lines (259 loc) · 14 KB
/
ConsolePacketLib.cs
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
/*
* DAWN OF LIGHT - The first free open source DAoC server emulator
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using DOL.AI.Brain;
using DOL.GS;
using DOL.GS.Housing;
using DOL.GS.Keeps;
using DOL.GS.PacketHandler;
using DOL.GS.Quests;
using log4net;
using DOL.Database;
using DOL.GS.Profession;
namespace DOLGameServerConsole
{
/// <summary>
/// The packetlib for dummy console clients for /commands
/// </summary>
public class ConsolePacketLib : IPacketLib
{
/// <summary>
/// Defines a logger for this class.
/// </summary>
private static readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
public void SendMessage(string msg, eChatType type, eChatLoc loc)
{
if (log.IsDebugEnabled)
{
log.Debug(string.Format("({0}, {1}): {2}", type, loc, msg));
}
}
public void SendCustomDialog(string msg, CustomDialogResponse callback)
{
if (msg == null)
msg = "(null)";
if (callback == null)
{
if (log.IsDebugEnabled)
log.Debug(string.Format("(info dialog): {0}", msg));
}
else
{
if (log.IsDebugEnabled)
log.Debug(string.Format("Accepting dialog: {0} {1}\n\"{2}\"", callback.Target, callback.Method, msg));
callback(null, 1);
}
}
public byte GetPacketCode(eServerPackets packetCode) { return 0; }
public void SendTCP(GSTCPPacketOut packet) { }
public void SendWarlockChamberEffect(GamePlayer player) { }
public void SendTCP(byte[] buf) { }
public void SendTCPRaw(GSTCPPacketOut packet) { }
public void SendUDP(GSUDPPacketOut packet) { }
public void SendUDP(byte[] buf) { }
public void SendUDPRaw(GSUDPPacketOut packet) { }
public void SendVersionAndCryptKey() { }
public void SendLoginDenied(eLoginError et) { }
public void SendLoginGranted() { }
public void SendLoginGranted(byte color) { } // help for rvr AND pvp servers
public void SendSessionID() { }
public void SendPingReply(ulong timestamp, ushort sequence) { }
public void SendRealm(eRealm realm) { }
public void SendCharacterOverview(eRealm realm) { }
public void SendDupNameCheckReply(string name, byte nameExists) { }
public void SendBadNameCheckReply(string name, bool bad) { }
public void SendAttackMode(bool attackState) { }
public void SendCharCreateReply(string name) { }
public void SendCharStatsUpdate() { }
public void SendCharResistsUpdate() { }
public void SendRegions(ushort regionId) { }
public void SendGameOpenReply() { }
public void SendPlayerPositionAndObjectID() { }
public void SendPlayerJump(bool headingOnly) { }
public void SendPlayerInitFinished(byte mobs) { }
public void SendUDPInitReply() { }
public void SendTime() { }
public void SendPlayerCreate(GamePlayer playerToCreate) { }
public void SendObjectGuildID(GameObject obj, Guild guild) { }
public void SendPlayerQuit(bool totalOut) { }
public void SendDebugMode(bool on) { }
public void SendModelChange(GameObject obj, ushort newModel) { }
public void SendModelAndSizeChange(GameObject obj, ushort newModel, byte newSize) { }
public void SendModelAndSizeChange(ushort objectId, ushort newModel, byte newSize) { }
public void SendEmoteAnimation(GameObject obj, eEmote emote) { }
public void SendNPCCreate(GameNPC npc) { }
public void SendLivingEquipmentUpdate(GameLiving living) { }
public void SendRegionChanged() { }
public void SendUpdatePoints() { }
public void SendUpdateMoney() { }
public void SendUpdateMaxSpeed() { }
public void SendCombatAnimation(GameObject attacker, GameObject defender, ushort weaponID, ushort shieldID, int style, byte stance, byte result, byte targetHealthPercent) { }
public void SendStatusUpdate() { }
public void SendDelveInfo(string info){ }
public void SendStatusUpdate(byte sittingFlag) { }
public void SendSpellCastAnimation(GameLiving spellCaster, ushort spellID, ushort castingTime) { }
public void SendSpellEffectAnimation(GameObject spellCaster, GameObject spellTarget, ushort spellid, ushort boltTime, bool noSound, byte success) { }
public void SendRiding(GameObject rider, GameObject steed, bool dismount) { }
public void SendFindGroupWindowUpdate(GamePlayer[] list) { }
public void SendDialogBox(eDialogCode code, ushort data1, ushort data2, ushort data3, ushort data4, eDialogType type, bool autoWarpText, string message) { }
public void SendGroupInviteCommand(GamePlayer invitingPlayer, string inviteMessage) { }
public void SendGuildLeaveCommand(GamePlayer invitingPlayer, string inviteMessage) { }
public void SendGuildInviteCommand(GamePlayer invitingPlayer, string inviteMessage) { }
public void SendQuestSubscribeCommand(GameNPC invitingNPC, ushort questid, string inviteMessage) { }
public void SendQuestOfferWindow(GameNPC questNPC, GamePlayer player, RewardQuest quest) { }
public void SendQuestRewardWindow(GameNPC questNPC, GamePlayer player, RewardQuest quest) { }
public void SendQuestOfferWindow(GameNPC questNPC, GamePlayer player, DataQuest quest) { }
public void SendQuestRewardWindow(GameNPC questNPC, GamePlayer player, DataQuest quest) { }
public void SendQuestAbortCommand(GameNPC abortingNPC, ushort questid, string abortMessage) { }
public void SendGroupWindowUpdate() { }
public void SendGroupMemberUpdate(bool updateIcons, bool updateMap, GameLiving living) { }
public void SendGroupMembersUpdate(bool updateIcons, bool updateMap) { }
public void SendInventoryItemsUpdate(ICollection<InventoryItem> itemsToUpdate) { }
public void SendInventorySlotsUpdate(ICollection<int> slots) { }
public void SendInventoryItemsUpdate(eInventoryWindowType windowType, ICollection<InventoryItem> itemsToUpdate) { }
public void SendInventoryItemsUpdate(IDictionary<int, InventoryItem> updateItems, eInventoryWindowType windowType) { }
public void SendInventoryItemsPartialUpdate(IDictionary<int, InventoryItem> items, eInventoryWindowType windowType) { }
public void SendDoorState(Region region, IDoor door) { }
public void SendMerchantWindow(MerchantTradeItems itemlist, eMerchantWindowType windowType) { }
public void SendMerchantWindow(MerchantCatalog catalog, eMerchantWindowType windowType) { }
public void SendTradeWindow() { }
public void SendCloseTradeWindow() { }
public void SendPlayerDied(GamePlayer killedPlayer, GameObject killer) { }
public void SendPlayerRevive(GamePlayer revivedPlayer) { }
public void SendPlayerForgedPosition(GamePlayer player) { }
public void SendUpdatePlayer() { }
public void SendUpdatePlayerSkills() { }
public void SendUpdateWeaponAndArmorStats() { }
public void SendCustomTextWindow(string caption, IList<string> text) { }
public void SendEncumberance() { }
public void SendAddFriends(string[] friendNames) { }
public void SendRemoveFriends(string[] friendNames) { }
public void SendTimerWindow(string title, int seconds) { }
public void SendCloseTimerWindow() { }
public void SendTrainerWindow() { }
public void SendCustomTrainerWindow(int type, List<Tuple<Specialization, List<Tuple<Skill, byte>>>> tree) { }
public void SendChampionTrainerWindow(int type) { }
public void SendInterruptAnimation(GameLiving living) { }
public void SendDisableSkill(ICollection<Tuple<Skill, int>> skills) { }
public void SendUpdateIcons(IList changedEffects, ref int lastUpdateEffectsCount) { }
public void SendLevelUpSound() { }
public void SendRegionEnterSound(byte soundId) { }
public void SendSoundEffect(ushort soundId, ushort zoneId, ushort x, ushort y, ushort z, ushort radius) { }
public void SendDebugMessage(string format, params object[] parameters) { }
public void SendDebugPopupMessage(string format, params object[] parameters) { }
public void SendEmblemDialogue() { }
public void SendWeather(uint x, uint width, ushort speed, ushort fogdiffusion, ushort intensity) { }
public void SendPlayerModelTypeChange(GamePlayer player, byte modelType) { }
public void SendObjectDelete(GameObject obj) { }
public void SendObjectDelete(ushort oid) { }
public void SendObjectUpdate(GameObject obj) { }
public void SendObjectRemove(GameObject obj) { }
public void SendObjectCreate(GameObject obj) { }
public void SendQuestListUpdate() { }
public void SendQuestUpdate(AbstractQuest quest) { }
public void SendConcentrationList() { }
public void SendUpdateCraftingSkills() { }
public void SendChangeTarget(GameObject newTarget) { }
public void SendChangeGroundTarget(Point3D newTarget) { }
public void SendPetWindow(GameLiving pet, ePetWindowAction windowAction, eAggressionState aggroState, eWalkState walkState) { }
public void SendKeepInfo(IGameKeep keep) { }
public void SendKeepRealmUpdate(IGameKeep keep) { }
public void SendKeepRemove(IGameKeep keep) { }
public void SendKeepComponentInfo(IGameKeepComponent keepComponent) { }
public void SendKeepComponentDetailUpdate(IGameKeepComponent keepComponent) { }
public void SendKeepComponentRemove(IGameKeepComponent keepComponent) { }
public void SendKeepComponentUpdate(IGameKeep keep, bool levelup) { }
public void SendKeepClaim(IGameKeep keep, byte flag) { }
public void SendKeepComponentInteract(IGameKeepComponent component) { }
public void SendKeepComponentHookPoint(IGameKeepComponent component, int selectedHookPointIndex) { }
public void SendKeepDoorUpdate(GameKeepDoor door) { }
public void SendClearKeepComponentHookPoint(IGameKeepComponent component, int selectedHookPointIndex) { }
public void SendHookPointStore(GameKeepHookPoint hookPoint) { }
public void SendPlaySound(eSoundType soundType, ushort soundID) { }
public void SendNPCsQuestEffect(GameNPC npc, eQuestIndicator indicator) { }
public void SendMasterLevelWindow(byte ml) { }
public void SendHexEffect(GamePlayer player, byte effect1, byte effect2, byte effect3, byte effect4, byte effect5) { }
public void SendSiegeWeaponAnimation(GameSiegeWeapon siegeWeapon) { }
public void SendSiegeWeaponFireAnimation(GameSiegeWeapon siegeWeapon, int timer) { }
public void SendSiegeWeaponCloseInterface() { }
public void SendSiegeWeaponInterface(GameSiegeWeapon siegeWeapon, int time) { }
public void SendHouse(House house) { }
public void SendHouseOccupied(House house, bool flagHouseOccuped) { }
public void SendHousePermissions(House house) { }
public void SendRemoveHouse(House house) { }
public void SendGarden(House house, int i) { }
public void SendHousePayRentDialog(string title) { }
public void SendGarden(House house) { }
public void SendEnterHouse(House house) { }
public void SendExitHouse(House house, ushort unknown = 0) { }
public void SendHouseUsersPermissions(House house) { }
public void SendFurniture(House house) { }
public void SendFurniture(House house, int i) { }
public void SendToggleHousePoints(House house) { }
public void SendRentReminder(House house) { }
public void SendMovingObjectCreate(GameMovingObject obj) { }
public void SendWarmapUpdate(ICollection<IGameKeep> list) { }
public void SendWarmapDetailUpdate(List<List<byte>> fights, List<List<byte>> groups) { }
public void SendWarmapBonuses() { }
public void SendCheckLOS(GameObject Checker, GameObject Target, DOL.GS.PacketHandler.CheckLOSResponse callback) { }
public void SendCheckLOS(GameObject source, GameObject target, DOL.GS.PacketHandler.CheckLOSMgrResponse callback) { }
public void SendLivingDataUpdate(GameLiving living, bool updateStrings) { }
public void SendPlayerTitles() { }
public void SendPlayerTitleUpdate(GamePlayer player) { }
public void SendSetControlledHorse(GamePlayer player) { }
public void SendControlledHorse(GamePlayer player, bool flag) { }
public void CheckLengthHybridSkillsPacket(ref GSTCPPacketOut pak, ref int maxSkills, ref int first) { }
public void SendNonHybridSpellLines() { }
public void SendCrash(string str) { }
public void SendRvRGuildBanner(GamePlayer player, bool show) { }
public void SendPlayerFreeLevelUpdate() { }
public void SendRegionColorScheme() { }
public void SendRegionColorScheme(byte color) { }
public void SendStarterHelp() { }
public void SendVampireEffect(GameLiving living, bool show) { }
public void SendXFireInfo(byte flag) { }
public void SendMarketExplorerWindow() { }
public void SendMarketExplorerWindow(IList<InventoryItem> items, byte page, byte maxpage) { }
public void SendConsignmentMerchantMoney(long money) { }
public void SendMinotaurRelicMapRemove(byte id) { }
public void SendMinotaurRelicMapUpdate(byte id, ushort region, int x, int y, int z) { }
public virtual void SendMinotaurRelicWindow(GamePlayer player, int spell, bool flag) { }
public virtual void SendMinotaurRelicBarUpdate(GamePlayer player, int xp) { }
public virtual void SendBlinkPanel(byte flag) { }
/// <summary>
/// The bow prepare animation
/// </summary>
public int BowPrepare { get { return 0; } }
/// <summary>
/// The bow shoot animation
/// </summary>
public int BowShoot { get { return 0; } }
/// <summary>
/// one dual weapon hit animation
/// </summary>
public int OneDualWeaponHit { get { return 0; } }
/// <summary>
/// both dual weapons hit animation
/// </summary>
public int BothDualWeaponHit { get { return 0; } }
}
}