blob: f765b39f61269ea95c211d8427b80f11af0a35b3 (
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
|
#ifndef TMWA_CHAR_CHAR_HPP
#define TMWA_CHAR_CHAR_HPP
# include "../strings/fwd.hpp"
# include "../mmo/ip.hpp"
# include "../mmo/mmo.hpp"
struct Session;
constexpr int MAX_MAP_SERVERS = 30;
struct mmo_map_server
{
IP4Address ip;
short port;
int users;
Array<MapName, MAX_MAP_PER_SERVER> maps;
};
const CharPair *search_character(CharName character_name);
const CharPair *search_character_id(int char_id);
Session *server_for(const CharPair *mcs);
int mapif_sendall(const uint8_t *buf, unsigned int len);
int mapif_sendallwos(Session *s, const uint8_t *buf, unsigned int len);
int mapif_send(Session *s, const uint8_t *buf, unsigned int len);
void char_log(XString line);
# define CHAR_LOG(fmt, ...) \
char_log(STRPRINTF(fmt, ## __VA_ARGS__))
#endif // TMWA_CHAR_CHAR_HPP
|