diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-27 21:11:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-27 21:11:19 +0300 |
commit | b87137d73e40be12dbca7ba5fc6c66f1bc8571de (patch) | |
tree | fbffc6e504f6ef3de423b1153be751d111691948 /src/map/clif.c | |
parent | 8befbfe358915a6ee19b9c4be64d3473c98a70f4 (diff) | |
download | evol-hercules-b87137d73e40be12dbca7ba5fc6c66f1bc8571de.tar.gz evol-hercules-b87137d73e40be12dbca7ba5fc6c66f1bc8571de.tar.bz2 evol-hercules-b87137d73e40be12dbca7ba5fc6c66f1bc8571de.tar.xz evol-hercules-b87137d73e40be12dbca7ba5fc6c66f1bc8571de.zip |
Impliment invisible map flag.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 38 |
1 files changed, 37 insertions, 1 deletions
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); +} |