summaryrefslogtreecommitdiff
path: root/src/char/char.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/char/char.hpp')
-rw-r--r--src/char/char.hpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/char/char.hpp b/src/char/char.hpp
index f93e86b..be9167e 100644
--- a/src/char/char.hpp
+++ b/src/char/char.hpp
@@ -1,33 +1,33 @@
-// $Id: char.h,v 1.1.1.1 2004/09/10 17:26:50 MagicalTux Exp $
#ifndef CHAR_HPP
#define CHAR_HPP
-#define MAX_MAP_SERVERS 30
+#include "../common/const_array.hpp"
+#include "../common/mmo.hpp"
-#define CHAR_CONF_NAME "conf/char_athena.conf"
+constexpr int MAX_MAP_SERVERS = 30;
-#define LOGIN_LAN_CONF_NAME "conf/lan_support.conf"
+#define CHAR_CONF_NAME "conf/char_athena.conf"
-#define DEFAULT_AUTOSAVE_INTERVAL 300*1000
+#define LOGIN_LAN_CONF_NAME "conf/lan_support.conf"
struct mmo_map_server
{
long ip;
short port;
- int users;
+ int users;
char map[MAX_MAP_PER_SERVER][16];
};
-int search_character_index (const char *character_name);
-char *search_character_name (int index);
+int search_character_index(const char *character_name);
+char *search_character_name(int index);
-int mapif_sendall (const uint8_t *buf, unsigned int len);
-int mapif_sendallwos (int fd, const uint8_t *buf, unsigned int len);
-int mapif_send (int fd, const uint8_t *buf, unsigned int len);
+int mapif_sendall(const uint8_t *buf, unsigned int len);
+int mapif_sendallwos(int fd, const uint8_t *buf, unsigned int len);
+int mapif_send(int fd, const uint8_t *buf, unsigned int len);
-__attribute__((format(printf, 1, 2)))
-int char_log (const char *fmt, ...);
+void char_log(const_string line);
-extern int autosave_interval;
+#define CHAR_LOG(fmt, ...) \
+ char_log(static_cast<const std::string&>(STRPRINTF(fmt, ## __VA_ARGS__)))
-#endif
+#endif // CHAR_HPP