summaryrefslogblamecommitdiff
path: root/src/char/char.hpp
blob: 377b1c6225eba3c6e1334ef5c2d6a3de9f45eeb7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                          
 
                              
 



                                      
 
               
 
                                   
 

                     
                  
               
              
                                     

  


                                                          
 
                                                        

                                                                       
 
                            
 
                             
                                            
 
                            
#ifndef TMWA_CHAR_CHAR_HPP
#define TMWA_CHAR_CHAR_HPP

# include "../strings/fwd.hpp"

# include "../generic/const_array.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;
    MapName maps[MAX_MAP_PER_SERVER];
};

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