summaryrefslogtreecommitdiff
path: root/src/emap/data/mapd.c
blob: 52440d783239e3e6b0d812b2498aec9b7134ead8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// 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/memmgr.h"
#include "common/mmo.h"
#include "common/socket.h"
#include "common/strlib.h"
#include "map/map.h"

#include "emap/data/mapd.h"
#include "emap/struct/mapdext.h"

struct MapdExt *mapd_get(int m)
{
    if (m < 0 || m >= map->count)
        return NULL;

    struct map_data *md = &map->list[m];
    struct MapdExt *data = getFromMAPD(md, 0);
    if (!data)
    {
        data = mapd_create();
        addToMAPD(md, data, 0, true);
    }
    return data;
}

struct MapdExt *mapd_create(void)
{
    struct MapdExt *data = NULL;
    CREATE(data, struct MapdExt, 1);
    if (!data)
        return NULL;
    data->mask = 1;
    data->invisible = false;
    data->flag.nopve = 0;
    VECTOR_INIT(data->npcs);
    return data;
}