diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/config.c | 38 | ||||
-rw-r--r-- | src/common/config.h | 16 | ||||
-rw-r--r-- | src/common/init.c | 2 |
3 files changed, 55 insertions, 1 deletions
diff --git a/src/common/config.c b/src/common/config.c new file mode 100644 index 0000000..232b199 --- /dev/null +++ b/src/common/config.c @@ -0,0 +1,38 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "../../../common/HPMi.h" +#include "../../../common/malloc.h" +#include "../../../common/mapindex.h" +#include "../../../common/mmo.h" +#include "../../../common/socket.h" +#include "../../../common/strlib.h" + +#include "common/config.h" + +const char *default_map = NULL; +int default_x = 0; +int default_y = 0; + +void config_default_map(const char *val) +{ + mapindex->default_map = aStrdup(val); +} + +void config_default_x(const char *val) +{ + mapindex->default_x = atoi(val); +} + +void config_default_y(const char *val) +{ + mapindex->default_y = atoi(val); +} + +void common_config_final(void) +{ +} diff --git a/src/common/config.h b/src/common/config.h new file mode 100644 index 0000000..9c24932 --- /dev/null +++ b/src/common/config.h @@ -0,0 +1,16 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_COMMON_CONFIG +#define EVOL_COMMON_CONFIG + +void config_default_map(const char *val); +void config_default_x(const char *val); +void config_default_y(const char *val); +void common_config_final(void); + +extern const char *default_map; +extern int default_x; +extern int default_y; + +#endif // EVOL_COMMON_CONFIG diff --git a/src/common/init.c b/src/common/init.c index 38797dc..9b70e50 100644 --- a/src/common/init.c +++ b/src/common/init.c @@ -32,7 +32,7 @@ void interfaces_init_common(void) void setDefaultMap(void) { - mapindex->default_map = "000-1"; + mapindex->default_map = aStrdup("000-1"); mapindex->default_x = 80; mapindex->default_y = 109; } |