From b87137d73e40be12dbca7ba5fc6c66f1bc8571de Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 27 Nov 2014 21:11:19 +0300 Subject: Impliment invisible map flag. --- src/map/clif.c | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) (limited to 'src/map/clif.c') diff --git a/src/map/clif.c b/src/map/clif.c index 68edd81..c4766dc 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17,6 +17,8 @@ #include "map/clif.h" #include "map/lang.h" +#include "map/mapd.h" +#include "map/mapdext.h" #include "map/send.h" void eclif_quest_send_list(struct map_session_data *sd) @@ -115,6 +117,9 @@ static void eclif_send_additional_slots(struct map_session_data* sd, struct map_ struct item_data *item; short equip; + struct MapdExt *data = mapd_get(sd->bl.m); + if (data->invisible) + return; equipPos(EQI_HEAD_LOW, LOOK_HEAD_BOTTOM); equipPos(EQI_HEAD_TOP, LOOK_HEAD_TOP); @@ -131,7 +136,6 @@ static void eclif_send_additional_slots(struct map_session_data* sd, struct map_ void eclif_getareachar_unit_post(struct map_session_data* sd, struct block_list *bl) { - // need replace it to _post if (bl->type == BL_PC) { eclif_send_additional_slots(sd, (struct map_session_data *)bl); @@ -143,3 +147,35 @@ void eclif_authok_post(struct map_session_data *sd) { eclif_send_additional_slots(sd, sd); } + +void eclif_handle_invisible_map(struct block_list *bl, enum send_target target) +{ + if (!bl || bl->type != BL_PC) + return; + struct MapdExt *data = mapd_get(bl->m); + if (data->invisible) + hookStop(); +} + +void eclif_sendlook(struct block_list *bl, int *id, int *type, int *val, int *val2, enum send_target *target) +{ + if (*target == SELF) + return; + eclif_handle_invisible_map(bl, *target); +} + +bool eclif_send(const void* buf, int *len, struct block_list* bl, enum send_target *type) +{ + if (*type == SELF) + return; + eclif_handle_invisible_map(bl, *type); + return true; +} + +void eclif_set_unit_idle(struct block_list* bl, struct map_session_data *tsd, enum send_target *target) +{ + if (tsd && bl && bl->id == tsd->bl.id && *target == SELF) + return; + + eclif_handle_invisible_map(bl, *target); +} -- cgit v1.2.3-70-g09d2