summaryrefslogtreecommitdiff
path: root/src/emap/data/mobd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emap/data/mobd.c')
-rw-r--r--src/emap/data/mobd.c40
1 files changed, 40 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;
+}