2020-08-18 20:42:30 +00:00
|
|
|
#ifndef _CNLS_HPP
|
|
|
|
#define _CNLS_HPP
|
|
|
|
|
|
|
|
#include "CNProtocol.hpp"
|
2020-08-22 15:25:42 +00:00
|
|
|
#include "Defines.hpp"
|
2020-08-18 20:42:30 +00:00
|
|
|
#include "Player.hpp"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
struct CNLoginData {
|
|
|
|
std::map<int64_t, Player> characters;
|
|
|
|
int64_t selectedChar;
|
|
|
|
};
|
|
|
|
|
|
|
|
// WARNING: THERE CAN ONLY BE ONE OF THESE SERVERS AT A TIME!!!!!! TODO: change loginSessions & packet handlers to be non-static
|
|
|
|
class CNLoginServer : public CNServer {
|
|
|
|
private:
|
|
|
|
static void handlePacket(CNSocket* sock, CNPacketData* data);
|
|
|
|
static std::map<CNSocket*, CNLoginData> loginSessions;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CNLoginServer(uint16_t p);
|
|
|
|
|
2020-08-22 23:31:09 +00:00
|
|
|
void newConnection(CNSocket* cns);
|
2020-08-18 20:42:30 +00:00
|
|
|
void killConnection(CNSocket* cns);
|
|
|
|
};
|
|
|
|
|
2020-08-22 15:25:42 +00:00
|
|
|
#endif
|