
* Moved hardcoded `DEFAULT_MAP`, `DEFAULT_MAP_X`, and `DEFAULT_MAP_Y` definition to conf/char_athena.conf: `default_map`, `default_map_x`, and `default_map_y` for `DEFAULT_MAP` * Default map existance check only will be checked once, after map_index finished load by char-server, previously map-server also do a check that maybe cause unnecessary debug message * `instance_start` value should be init'd with `map_num` not by `map_num + 1`. I was causing send extra 1 empty map to char-server. * A little clean up in `chmapif_parse_getmapname()` and `doc/packet_interserv.txt` Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _MAPINDEX_H_
|
|
#define _MAPINDEX_H_
|
|
|
|
#define MAX_MAPINDEX 2000
|
|
|
|
//Some definitions for the mayor city maps.
|
|
#define MAP_PRONTERA "prontera"
|
|
#define MAP_GEFFEN "geffen"
|
|
#define MAP_MORROC "morocc"
|
|
#define MAP_ALBERTA "alberta"
|
|
#define MAP_PAYON "payon"
|
|
#define MAP_IZLUDE "izlude"
|
|
#define MAP_ALDEBARAN "aldebaran"
|
|
#define MAP_LUTIE "xmas"
|
|
#define MAP_COMODO "comodo"
|
|
#define MAP_YUNO "yuno"
|
|
#define MAP_AMATSU "amatsu"
|
|
#define MAP_GONRYUN "gonryun"
|
|
#define MAP_UMBALA "umbala"
|
|
#define MAP_NIFLHEIM "niflheim"
|
|
#define MAP_LOUYANG "louyang"
|
|
#define MAP_JAWAII "jawaii"
|
|
#define MAP_AYOTHAYA "ayothaya"
|
|
#define MAP_EINBROCH "einbroch"
|
|
#define MAP_LIGHTHALZEN "lighthalzen"
|
|
#define MAP_EINBECH "einbech"
|
|
#define MAP_HUGEL "hugel"
|
|
#define MAP_RACHEL "rachel"
|
|
#define MAP_VEINS "veins"
|
|
#define MAP_JAIL "sec_pri"
|
|
#define MAP_NOVICE "new_1-1"
|
|
#define MAP_MOSCOVIA "moscovia"
|
|
#define MAP_MIDCAMP "mid_camp"
|
|
#define MAP_MANUK "manuk"
|
|
#define MAP_SPLENDIDE "splendide"
|
|
#define MAP_BRASILIS "brasilis"
|
|
#define MAP_DICASTES "dicastes01"
|
|
#define MAP_MORA "mora"
|
|
#define MAP_DEWATA "dewata"
|
|
#define MAP_MALANGDO "malangdo"
|
|
#define MAP_MALAYA "malaya"
|
|
#define MAP_ECLAGE "eclage"
|
|
#define MAP_ECLAGE_IN "ecl_in01"
|
|
|
|
const char* mapindex_getmapname(const char* string, char* output);
|
|
const char* mapindex_getmapname_ext(const char* string, char* output);
|
|
|
|
unsigned short mapindex_name2idx(const char* name, const char *func);
|
|
#define mapindex_name2id(mapname) mapindex_name2idx((mapname), __FUNCTION__)
|
|
|
|
const char* mapindex_idx2name(unsigned short id, const char *func);
|
|
#define mapindex_id2name(mapindex) mapindex_idx2name((mapindex), __FUNCTION__)
|
|
|
|
int mapindex_addmap(int index, const char* name);
|
|
int mapindex_removemap(int index);
|
|
|
|
void mapindex_check_mapdefault(const char *mapname);
|
|
|
|
void mapindex_init(void);
|
|
void mapindex_final(void);
|
|
|
|
#endif /* _MAPINDEX_H_ */
|