root/src/map/clif.h

Revision 24, 21.6 kB (checked in by jinshiro, 17 years ago)
Line 
1// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
2// For more information, see LICENCE in the main folder
3
4#ifndef _CLIF_H_
5#define _CLIF_H_
6
7#include "../common/cbasetypes.h"
8//#include "../common/mmo.h"
9struct storage;
10struct guild_storage;
11//#include "map.h"
12struct block_list;
13struct unit_data;
14struct map_session_data;
15struct homun_data;
16struct pet_data;
17struct mob_data;
18struct npc_data;
19struct chat_data;
20struct flooritem_data;
21struct skill_unit;
22struct s_vending;
23struct party;
24struct party_data;
25struct guild;
26struct quest;
27#include <stdarg.h>
28
29// server->client protocol version
30//        0 - pre-?
31//        1 - ?                  - 0x196
32//        2 - ?                  - 0x78, 0x79
33//        3 - ?                  - 0x1c8, 0x1c9, 0x1de
34//        4 - ?                  - 0x1d7, 0x1d8, 0x1d9, 0x1da
35//        5 - 2003-12-18aSakexe+ - 0x1ee, 0x1ef, 0x1f0, ?0x1c4, 0x1c5?
36//        6 - 2004-03-02aSakexe+ - 0x1f4, 0x1f5
37//        7 - 2005-04-11aSakexe+ - 0x229, 0x22a, 0x22b, 0x22c
38// 20070521 - 2007-05-21aSakexe+ - 0x283
39// 20070821 - 2007-08-21aSakexe+ - 0x2c5
40// 20070918 - 2007-09-18aSakexe+ - 0x2d7, 0x2d9, 0x2da
41// 20071106 - 2007-11-06aSakexe+ - 0x78, 0x7c, 0x22c
42#ifndef PACKETVER
43        #define PACKETVER       20071106
44#endif
45// backward compatible PACKETVER 8 and 9
46#if PACKETVER == 8
47#undef PACKETVER
48#define PACKETVER 20070521
49#endif
50#if PACKETVER == 9
51#undef PACKETVER
52#define PACKETVER 20071106
53#endif
54
55// packet DB
56#define MAX_PACKET_DB           0x400
57#define MAX_PACKET_VER          22
58
59struct s_packet_db {
60        short len;
61        void (*func)(int, struct map_session_data *);
62        short pos[20];
63};
64
65// packet_db[SERVER] is reserved for server use
66#define SERVER 0
67#define packet_len(cmd) packet_db[SERVER][cmd].len
68extern struct s_packet_db packet_db[MAX_PACKET_VER+1][MAX_PACKET_DB+1];
69
70// local define
71typedef enum send_target {
72        ALL_CLIENT,
73        ALL_SAMEMAP,
74        AREA,                           // area
75        AREA_WOS,                       // area, without self
76        AREA_WOC,                       // area, without chatrooms
77        AREA_WOSC,                      // area, without own chatroom
78        AREA_CHAT_WOC,          // hearable area, without chatrooms
79        CHAT,                           // current chatroom
80        CHAT_WOS,                       // current chatroom, without self
81        PARTY,
82        PARTY_WOS,
83        PARTY_SAMEMAP,
84        PARTY_SAMEMAP_WOS,
85        PARTY_AREA,
86        PARTY_AREA_WOS,
87        GUILD,
88        GUILD_WOS,
89        GUILD_SAMEMAP,
90        GUILD_SAMEMAP_WOS,
91        GUILD_AREA,
92        GUILD_AREA_WOS,
93        DUEL,
94        DUEL_WOS,
95        CHAT_MAINCHAT,          // everyone on main chat
96        SELF,
97} send_target;
98
99int clif_setip(const char* ip);
100void clif_setbindip(const char* ip);
101void clif_setport(uint16 port);
102
103uint32 clif_getip(void);
104uint32 clif_refresh_ip(void);
105uint16 clif_getport(void);
106
107int clif_authok(struct map_session_data *);
108int clif_authfail_fd(int fd,int type);
109int clif_charselectok(int);
110int clif_dropflooritem(struct flooritem_data *);
111int clif_clearflooritem(struct flooritem_data *,int);
112
113int clif_clearunit_single(int id, uint8 type, int fd);
114int clif_clearunit_area(struct block_list* bl, uint8 type);
115int clif_clearunit_delayed(struct block_list* bl, unsigned int tick);
116int clif_spawn(struct block_list*);     //area
117int clif_walkok(struct map_session_data*);      // self
118void clif_move(struct unit_data *ud); //area
119void clif_changemap(struct map_session_data*,short,int,int);    //self
120void clif_changemapserver(struct map_session_data* sd, unsigned short map_index, int x, int y, uint32 ip, uint16 port); //self
121int clif_blown(struct block_list *); // area
122int clif_slide(struct block_list *,int,int); // area
123int clif_fixpos(struct block_list *);   // area
124int clif_npcbuysell(struct map_session_data*,int);      //self
125int clif_buylist(struct map_session_data*,struct npc_data*);    //self
126int clif_selllist(struct map_session_data*);    //self
127int clif_scriptmes(struct map_session_data*,int,const char*);   //self
128int clif_scriptnext(struct map_session_data*,int);      //self
129int clif_scriptclose(struct map_session_data*,int);     //self
130int clif_scriptmenu(struct map_session_data* sd, int npcid, const char* mes);   //self
131int clif_scriptinput(struct map_session_data*,int);     //self
132int clif_scriptinputstr(struct map_session_data *sd,int npcid); // self
133int clif_cutin(struct map_session_data* sd, const char* image, int type);       //self
134int clif_viewpoint(struct map_session_data*,int,int,int,int,int,int);   //self
135int clif_additem(struct map_session_data *sd, int n, int amount, int fail); // self
136int clif_delitem(struct map_session_data*,int,int);     //self
137int clif_updatestatus(struct map_session_data*,int);    //self
138int clif_changestatus(struct block_list*,int,int);      //area
139int clif_damage(struct block_list* src,struct block_list *dst,unsigned int tick,int sdelay,int ddelay,int damage,int div,int type,int damage2); // area
140void clif_takeitem(struct block_list* src,struct block_list* dst);
141void clif_sitting(struct block_list* bl);
142void clif_standing(struct block_list* bl);
143void clif_changelook(struct block_list *bl,int type,int val);   // area
144void clif_changetraplook(struct block_list *bl,int val); // area
145void clif_refreshlook(struct block_list *bl,int id,int type,int val,enum send_target target); //area specified in 'target'
146int clif_arrowequip(struct map_session_data *sd,int val); //self
147int clif_arrow_fail(struct map_session_data *sd,int type); //self
148int clif_arrow_create_list(struct map_session_data *sd);        //self
149int clif_statusupack(struct map_session_data *,int,int,int);    // self
150int clif_equipitemack(struct map_session_data *,int,int,int);   // self
151int clif_unequipitemack(struct map_session_data *,int,int,int); // self
152int clif_misceffect(struct block_list*,int);    // area
153int clif_misceffect2(struct block_list *bl,int type);
154int clif_changeoption(struct block_list*);      // area
155int clif_changeoption2(struct block_list*);     // area
156int clif_useitemack(struct map_session_data*,int,int,int);      // self
157void clif_GlobalMessage(struct block_list* bl, const char* message);
158void clif_createchat(struct map_session_data* sd, int fail);    // self
159int clif_dispchat(struct chat_data*,int);       // area or fd
160int clif_joinchatfail(struct map_session_data*,int);    // self
161int clif_joinchatok(struct map_session_data*,struct chat_data*);        // self
162int clif_addchat(struct chat_data*,struct map_session_data*);   // chat
163void clif_changechatowner(struct chat_data* cd, struct map_session_data* sd);   // chat
164int clif_clearchat(struct chat_data*,int);      // area or fd
165void clif_leavechat(struct chat_data* cd, struct map_session_data* sd, bool flag);      // chat
166int clif_changechatstatus(struct chat_data*);   // chat
167int clif_refresh(struct map_session_data*);     // self
168
169int clif_fame_blacksmith(struct map_session_data *, int);
170int clif_fame_alchemist(struct map_session_data *, int);
171int clif_fame_taekwon(struct map_session_data *, int);
172
173void clif_emotion(struct block_list *bl,int type);
174void clif_talkiebox(struct block_list* bl, const char* talkie);
175void clif_wedding_effect(struct block_list *bl);
176void clif_divorced(struct map_session_data* sd, const char* name);
177//void clif_callpartner(struct map_session_data *sd);
178void clif_soundeffect(struct map_session_data* sd, struct block_list* bl, const char* name, int type);
179int clif_soundeffectall(struct block_list* bl, const char *name, int type, enum send_target coverage);
180void clif_parse_ActionRequest_sub(struct map_session_data *sd, int action_type, int target_id, unsigned int tick);
181void clif_parse_LoadEndAck(int fd,struct map_session_data *sd);
182void clif_hotkeys_send(struct map_session_data *sd);
183
184// trade
185void clif_traderequest(struct map_session_data* sd, const char* name);
186void clif_tradestart(struct map_session_data* sd, uint8 type);
187void clif_tradeadditem(struct map_session_data* sd, struct map_session_data* tsd, int index, int amount);
188void clif_tradeitemok(struct map_session_data* sd, int index, int fail);
189void clif_tradedeal_lock(struct map_session_data* sd, int fail);
190void clif_tradecancelled(struct map_session_data* sd);
191void clif_tradecompleted(struct map_session_data* sd, int fail);
192
193// storage
194#include "storage.h"
195void clif_storagelist(struct map_session_data *sd,struct storage *stor);
196int clif_updatestorageamount(struct map_session_data *sd,struct storage *stor);
197int clif_storageitemadded(struct map_session_data *sd,struct storage *stor,int index,int amount);
198int clif_storageitemremoved(struct map_session_data *sd,int index,int amount);
199int clif_storageclose(struct map_session_data *sd);
200void clif_guildstoragelist(struct map_session_data *sd,struct guild_storage *stor);
201int clif_updateguildstorageamount(struct map_session_data *sd,struct guild_storage *stor);
202int clif_guildstorageitemadded(struct map_session_data *sd,struct guild_storage *stor,int index,int amount);
203
204int clif_insight(struct block_list *,va_list);  // map_forallinmovearea callback
205int clif_outsight(struct block_list *,va_list); // map_forallinmovearea callback
206
207int clif_class_change(struct block_list *bl,int class_,int type);
208#define clif_mob_class_change(md, class_) clif_class_change(&md->bl, class_, 1)
209int clif_mob_equip(struct mob_data *md,int nameid); // [Valaris]
210
211int clif_skillinfo(struct map_session_data *sd,int skillid,int type,int range);
212int clif_skillinfoblock(struct map_session_data *sd);
213int clif_skillup(struct map_session_data *sd,int skill_num);
214
215int clif_skillcasting(struct block_list* bl,int src_id,int dst_id,int dst_x,int dst_y,int skill_num,int pl,int casttime);
216int clif_skillcastcancel(struct block_list* bl);
217int clif_skill_fail(struct map_session_data *sd,int skill_id,int type,int btype);
218int clif_skill_damage(struct block_list *src,struct block_list *dst,unsigned int tick,int sdelay,int ddelay,int damage,int div,int skill_id,int skill_lv,int type);
219//int clif_skill_damage2(struct block_list *src,struct block_list *dst,unsigned int tick,int sdelay,int ddelay,int damage,int div,int skill_id,int skill_lv,int type);
220int clif_skill_nodamage(struct block_list *src,struct block_list *dst,int skill_id,int heal,int fail);
221int clif_skill_poseffect(struct block_list *src,int skill_id,int val,int x,int y,int tick);
222int clif_skill_estimation(struct map_session_data *sd,struct block_list *dst);
223void clif_skill_warppoint(struct map_session_data* sd, short skill_num, short skill_lv, unsigned short map1, unsigned short map2, unsigned short map3, unsigned short map4);
224void clif_skill_memomessage(struct map_session_data* sd, int type);
225void clif_skill_teleportmessage(struct map_session_data* sd, int type);
226int clif_skill_produce_mix_list(struct map_session_data *sd, int trigger);
227
228int clif_produceeffect(struct map_session_data* sd,int flag,int nameid);
229
230void clif_skill_setunit(struct skill_unit *unit);
231void clif_skill_delunit(struct skill_unit *unit);
232
233void clif_01ac(struct block_list* bl);
234
235int clif_autospell(struct map_session_data *sd,int skilllv);
236void clif_devotion(struct map_session_data *sd, struct map_session_data *tsd);
237int clif_spiritball(struct map_session_data *sd);
238int clif_combo_delay(struct block_list *src,int wait);
239int clif_bladestop(struct block_list *src,struct block_list *dst,int bool_);
240void clif_changemapcell(int fd, int m, int x, int y, int type, enum send_target target);
241
242int clif_status_load(struct block_list *bl,int type, int flag);
243int clif_status_change(struct block_list *bl,int type,int flag);
244
245int clif_wis_message(int fd, const char* nick, const char* mes, int mes_len);
246int clif_wis_end(int fd,int flag);
247
248int clif_solved_charname(int fd, int charid, const char* name);
249int clif_charnameack(int fd, struct block_list *bl);
250int clif_charnameupdate(struct map_session_data *ssd);
251
252int clif_use_card(struct map_session_data *sd,int idx);
253int clif_insert_card(struct map_session_data *sd,int idx_equip,int idx_card,int flag);
254
255void clif_inventorylist(struct map_session_data *sd);
256void clif_equiplist(struct map_session_data *sd);
257
258int clif_cart_additem(struct map_session_data*,int,int,int);
259int clif_cart_delitem(struct map_session_data*,int,int);
260void clif_cartlist(struct map_session_data *sd);
261void clif_clearcart(int fd);
262
263int clif_item_identify_list(struct map_session_data *sd);
264int clif_item_identified(struct map_session_data *sd,int idx,int flag);
265int clif_item_repair_list (struct map_session_data *sd, struct map_session_data *dstsd);
266int clif_item_repaireffect(struct map_session_data *sd, int nameid, int flag);
267int clif_item_refine_list(struct map_session_data *sd);
268
269int clif_item_skill(struct map_session_data *sd,int skillid,int skilllv);
270
271int clif_mvp_effect(struct map_session_data *sd);
272int clif_mvp_item(struct map_session_data *sd,int nameid);
273int clif_mvp_exp(struct map_session_data *sd, unsigned int exp);
274void clif_changed_dir(struct block_list *bl, enum send_target target);
275
276// vending
277void clif_openvendingreq(struct map_session_data* sd, int num);
278void clif_showvendingboard(struct block_list* bl, const char* message, int fd);
279void clif_closevendingboard(struct block_list* bl,int fd);
280void clif_vendinglist(struct map_session_data* sd,int id, struct s_vending* vending);
281void clif_buyvending(struct map_session_data* sd, int index, int amount, int fail);
282void clif_openvending(struct map_session_data* sd, int id, struct s_vending* vending);
283void clif_vendingreport(struct map_session_data* sd, int index, int amount);
284
285int clif_movetoattack(struct map_session_data *sd,struct block_list *bl);
286
287// party
288int clif_party_created(struct map_session_data *sd,int result);
289int clif_party_member_info(struct party_data *p, struct map_session_data *sd);
290int clif_party_info(struct party_data *p, struct map_session_data *sd);
291int clif_party_invite(struct map_session_data *sd,struct map_session_data *tsd);
292void clif_party_inviteack(struct map_session_data* sd, const char* nick, int flag);
293int clif_party_option(struct party_data *p,struct map_session_data *sd,int flag);
294int clif_party_leaved(struct party_data* p, struct map_session_data* sd, int account_id, const char* name, int flag);
295int clif_party_message(struct party_data* p, int account_id, const char* mes, int len);
296void clif_party_move(struct party* p, struct map_session_data* sd, int online);
297int clif_party_xy(struct map_session_data *sd);
298int clif_party_xy_single(int fd, struct map_session_data *sd);
299int clif_party_hp(struct map_session_data *sd);
300void clif_hpmeter_single(int fd, int id, unsigned int hp, unsigned int maxhp);
301int clif_hpmeter(struct map_session_data *sd);
302
303// guild
304int clif_guild_created(struct map_session_data *sd,int flag);
305int clif_guild_belonginfo(struct map_session_data *sd,struct guild *g);
306int clif_guild_masterormember(struct map_session_data *sd);
307int clif_guild_basicinfo(struct map_session_data *sd);
308int clif_guild_allianceinfo(struct map_session_data *sd);
309int clif_guild_memberlist(struct map_session_data *sd);
310int clif_guild_skillinfo(struct map_session_data *sd);
311int clif_guild_send_onlineinfo(struct map_session_data *sd); //[LuzZza]
312int clif_guild_memberlogin_notice(struct guild *g,int idx,int flag);
313int clif_guild_invite(struct map_session_data *sd,struct guild *g);
314int clif_guild_inviteack(struct map_session_data *sd,int flag);
315int clif_guild_leave(struct map_session_data *sd,const char *name,const char *mes);
316int clif_guild_expulsion(struct map_session_data *sd,const char *name,const char *mes,int account_id);
317int clif_guild_positionchanged(struct guild *g,int idx);
318int clif_guild_memberpositionchanged(struct guild *g,int idx);
319int clif_guild_emblem(struct map_session_data *sd,struct guild *g);
320void clif_guild_emblem_area(struct block_list* bl);
321int clif_guild_notice(struct map_session_data *sd,struct guild *g);
322int clif_guild_message(struct guild *g,int account_id,const char *mes,int len);
323int clif_guild_skillup(struct map_session_data *sd,int skill_num,int lv);
324int clif_guild_reqalliance(struct map_session_data *sd,int account_id,const char *name);
325int clif_guild_allianceack(struct map_session_data *sd,int flag);
326int clif_guild_delalliance(struct map_session_data *sd,int guild_id,int flag);
327int clif_guild_oppositionack(struct map_session_data *sd,int flag);
328int clif_guild_broken(struct map_session_data *sd,int flag);
329int clif_guild_xy(struct map_session_data *sd);
330int clif_guild_xy_single(int fd, struct map_session_data *sd);
331int clif_guild_xy_remove(struct map_session_data *sd);
332
333
334// atcommand
335int clif_displaymessage(const int fd,const char* mes);
336int clif_disp_onlyself(struct map_session_data *sd,const char *mes,int len);
337void clif_disp_message(struct block_list* src, const char* mes, int len, enum send_target target);
338int clif_GMmessage(struct block_list* bl, const char* mes, int len, int flag);
339void clif_MainChatMessage(const char* message); //luzza
340int clif_announce(struct block_list *bl, const char* mes, int len, unsigned long color, int flag);
341int clif_announce_ex(struct block_list *bl, const char* mes, int len, unsigned long color, int flag, int size);
342int clif_heal(int fd,int type,int val);
343int clif_resurrection(struct block_list *bl,int type);
344void clif_set0199(struct map_session_data* sd, int mode);
345int clif_pvpset(struct map_session_data *sd, int pvprank, int pvpnum,int type);
346int clif_send0199(int map,int type);
347void clif_refine(int fd, int fail, int index, int val);
348void clif_upgrademessage(int fd, int result, int item_id);
349
350//petsystem
351int clif_catch_process(struct map_session_data *sd);
352int clif_pet_roulette(struct map_session_data *sd,int data);
353int clif_sendegg(struct map_session_data *sd);
354int clif_send_petstatus(struct map_session_data *sd);
355int clif_send_petdata(struct map_session_data *sd, struct pet_data* pd, int type, int param);
356#define clif_pet_equip(sd, pd) clif_send_petdata(sd, pd, 3, (pd)->vd.head_bottom)
357#define clif_pet_equip_area(pd) clif_send_petdata(NULL, pd, 3, (pd)->vd.head_bottom)
358#define clif_pet_performance(pd, param) clif_send_petdata(NULL, pd, 4, param)
359int clif_pet_emotion(struct pet_data *pd,int param);
360int clif_pet_food(struct map_session_data *sd,int foodid,int fail);
361
362//friends list
363int clif_friendslist_toggle_sub(struct map_session_data *sd,va_list ap);
364void clif_friendslist_send(struct map_session_data *sd);
365void clif_friendslist_reqack(struct map_session_data *sd, struct map_session_data *f_sd, int type);
366
367// [Valaris]
368int clif_mob_hp(struct mob_data *md);
369void clif_weather(int m); // [Valaris]
370int clif_specialeffect(struct block_list* bl, int type, enum send_target target); // special effects [Valaris]
371void clif_specialeffect_single(struct block_list* bl, int type, int fd);
372int clif_message(struct block_list *bl, const char* msg); // messages (from mobs/npcs) [Valaris]
373
374int clif_GM_kickack(struct map_session_data *sd,int id);
375void clif_GM_kick(struct map_session_data *sd,struct map_session_data *tsd);
376void clif_manner_message(struct map_session_data* sd, uint32 type);
377void clif_GM_silence(struct map_session_data* sd, struct map_session_data* tsd, uint8 type);
378int clif_timedout(struct map_session_data *sd);
379
380int clif_disp_overhead(struct map_session_data *sd, const char* mes);
381
382void clif_get_weapon_view(struct map_session_data* sd, unsigned short *rhand, unsigned short *lhand);
383
384int clif_party_xy_remove(struct map_session_data *sd); //Fix for minimap [Kevin]
385void clif_gospel_info(struct map_session_data *sd, int type);
386void clif_parse_ReqFeel(int fd, struct map_session_data *sd, int skilllv); 
387void clif_feel_info(struct map_session_data *sd, unsigned char feel_level, unsigned char type);
388void clif_hate_info(struct map_session_data *sd, unsigned char hate_level,int class_, unsigned char type);
389void clif_mission_info(struct map_session_data *sd, int mob_id, unsigned char progress);
390void clif_feel_hate_reset(struct map_session_data *sd);
391
392// [blackhole89]
393int clif_spawnhomun(struct homun_data *hd);
394int clif_hominfo(struct map_session_data *sd, struct homun_data *hd, int flag);
395int clif_homskillinfoblock(struct map_session_data *sd);
396void clif_homskillup(struct map_session_data *sd, int skill_num) ;      //[orn]
397int clif_hom_food(struct map_session_data *sd,int foodid,int fail);     //[orn]
398void clif_send_homdata(struct map_session_data *sd, int type, int param);       //[orn]
399int clif_hwalkok(struct homun_data *hd);        //[orn]
400
401void clif_equiptickack(struct map_session_data* sd, int flag);
402void clif_viewequip_ack(struct map_session_data* sd, struct map_session_data* tsd);
403void clif_viewequip_fail(struct map_session_data* sd);
404void clif_equipcheckbox(struct map_session_data* sd);
405
406//quest system [Kevin]
407void clif_send_questlog(struct map_session_data * sd);
408void clif_send_questlog_info(struct map_session_data * sd);
409void clif_send_quest_info(struct map_session_data * sd, struct quest * qd);
410void clif_send_quest_delete(struct map_session_data * sd, int quest_id);
411void clif_send_quest_status(struct map_session_data * sd, int quest_id, bool active);
412
413
414int clif_send(const uint8* buf, int len, struct block_list* bl, enum send_target type);
415int do_final_clif(void);
416int do_init_clif(void);
417
418#ifndef TXT_ONLY
419// MAIL SYSTEM
420void clif_Mail_window(int fd, int flag);
421void clif_Mail_read(struct map_session_data *sd, int mail_id);
422void clif_Mail_delete(int fd, int mail_id, short fail);
423void clif_Mail_return(int fd, int mail_id, short fail);
424void clif_Mail_send(int fd, bool fail);
425void clif_Mail_new(int fd, int mail_id, const char *sender, const char *title);
426void clif_Mail_refreshinbox(struct map_session_data *sd);
427void clif_Mail_getattachment(int fd, uint8 flag);
428// AUCTION SYSTEM
429void clif_Auction_openwindow(struct map_session_data *sd);
430void clif_Auction_results(struct map_session_data *sd, short count, short pages, uint8 *buf);
431void clif_Auction_message(int fd, unsigned char flag);
432void clif_Auction_close(int fd, unsigned char flag);
433void clif_parse_Auction_cancelreg(int fd, struct map_session_data *sd);
434#endif
435
436void clif_cashshop_show(struct map_session_data *sd, struct npc_data *nd);
437
438// ADOPTION
439void clif_Adopt_reply(struct map_session_data *sd, int type);
440
441#endif /* _CLIF_H_ */
Note: See TracBrowser for help on using the browser.