diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-12 17:39:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-12 17:39:04 +0300 |
commit | 8487d3de9cf9e1775d4cdb17a83cf48d4d732064 (patch) | |
tree | 5a36eb7794fb290dde3ffd4a4a879f4873c0ff68 /src/emap/data | |
parent | 009f4a01c538c44f15bfec720c6cea2dee249985 (diff) | |
download | evol-hercules-8487d3de9cf9e1775d4cdb17a83cf48d4d732064.tar.gz evol-hercules-8487d3de9cf9e1775d4cdb17a83cf48d4d732064.tar.bz2 evol-hercules-8487d3de9cf9e1775d4cdb17a83cf48d4d732064.tar.xz evol-hercules-8487d3de9cf9e1775d4cdb17a83cf48d4d732064.zip |
Add mob db field 'WalkMask' for now unused.
Diffstat (limited to 'src/emap/data')
-rw-r--r-- | src/emap/data/mobd.c | 40 | ||||
-rw-r--r-- | src/emap/data/mobd.h | 12 |
2 files changed, 52 insertions, 0 deletions
diff --git a/src/emap/data/mobd.c b/src/emap/data/mobd.c new file mode 100644 index 0000000..c0dc9ca --- /dev/null +++ b/src/emap/data/mobd.c @@ -0,0 +1,40 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#include "common/hercules.h" + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "common/HPMi.h" +#include "common/malloc.h" +#include "common/mmo.h" +#include "common/socket.h" +#include "common/strlib.h" +#include "map/battle.h" +#include "map/mob.h" + +#include "emap/data/mobd.h" +#include "emap/struct/mobdext.h" + +struct MobdExt *mobd_get(struct mob_db *md) +{ + struct MobdExt *data = getFromMOBDB(md, 0); + if (!data) + { + data = mobd_create(); + addToMOBDB(md, data, 0, true); + } + return data; +} + +struct MobdExt *mobd_create(void) +{ + struct MobdExt *data = NULL; + CREATE(data, struct MobdExt, 1); + if (!data) + return NULL; + data->walkMask = 0; + return data; +} diff --git a/src/emap/data/mobd.h b/src/emap/data/mobd.h new file mode 100644 index 0000000..0e93890 --- /dev/null +++ b/src/emap/data/mobd.h @@ -0,0 +1,12 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#ifndef EVOL_MAP_MOBD +#define EVOL_MAP_MOBD + +struct MobdExt; + +struct MobdExt *mobd_get(struct mob_db *md); +struct MobdExt *mobd_create(void); + +#endif // EVOL_MAP_MOBD |