Document Server
This commit is contained in:
parent
7d706b122d
commit
0612494277
156
include/server.h
156
include/server.h
@ -38,46 +38,198 @@ class AOClient;
|
|||||||
class DBManager;
|
class DBManager;
|
||||||
class AreaData;
|
class AreaData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The class that represents the actual server as it is.
|
||||||
|
*/
|
||||||
class Server : public QObject {
|
class Server : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* @brief Creates a Server instance.
|
||||||
|
*
|
||||||
|
* @param p_port The TCP port to listen for connections on.
|
||||||
|
* @param p_ws_port The WebSocket port to listen for connections on.
|
||||||
|
* @param parent Qt-based parent, passed along to inherited constructor from QObject.
|
||||||
|
*/
|
||||||
Server(int p_port, int p_ws_port, QObject* parent = nullptr);
|
Server(int p_port, int p_ws_port, QObject* parent = nullptr);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Destructor for the Server class.
|
||||||
|
*
|
||||||
|
* @details Marks every Client, the WSProxy, the underlying #server, and the database manager to be deleted later.
|
||||||
|
*/
|
||||||
~Server();
|
~Server();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Starts the server.
|
||||||
|
*
|
||||||
|
* @details Amongst other things, this function starts the listening on the given TCP port, sets up the server
|
||||||
|
* according to the configuration file, and starts listening on the WebSocket port if it is not `-1`.
|
||||||
|
*
|
||||||
|
* Advertising is not done here -- see Advertiser::contactMasterServer() for that.
|
||||||
|
*/
|
||||||
void start();
|
void start();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Gets a pointer to a client by IPID.
|
||||||
|
*
|
||||||
|
* @param ipid The IPID to look for.
|
||||||
|
*
|
||||||
|
* @return A pointer to the client if found, a nullpointer if not.
|
||||||
|
*/
|
||||||
AOClient* getClient(QString ipid);
|
AOClient* getClient(QString ipid);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Gets a pointer to a client by user ID.
|
||||||
|
*
|
||||||
|
* @param id The user ID to look for.
|
||||||
|
*
|
||||||
|
* @return A pointer to the client if found, a nullpointer if not.
|
||||||
|
*/
|
||||||
AOClient* getClientByID(int id);
|
AOClient* getClientByID(int id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Updates which characters are taken in the given area, and sends out an update packet to
|
||||||
|
* all clients present the area.
|
||||||
|
*
|
||||||
|
* @param area The area in which to update the list of characters.
|
||||||
|
*/
|
||||||
void updateCharsTaken(AreaData* area);
|
void updateCharsTaken(AreaData* area);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Sends a packet to all clients in a given area.
|
||||||
|
*
|
||||||
|
* @param packet The packet to send to the clients.
|
||||||
|
* @param area_index The index of the area to look for clients in.
|
||||||
|
*
|
||||||
|
* @note Does nothing if an area by the given index does not exist.
|
||||||
|
*/
|
||||||
void broadcast(AOPacket packet, int area_index);
|
void broadcast(AOPacket packet, int area_index);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Sends a packet to all clients in the server.
|
||||||
|
*
|
||||||
|
* @param packet The packet to send to the clients.
|
||||||
|
*/
|
||||||
void broadcast(AOPacket packet);
|
void broadcast(AOPacket packet);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Returns the server's name according to the configuration file.
|
||||||
|
*
|
||||||
|
* @return See brief description.
|
||||||
|
*/
|
||||||
QString getServerName();
|
QString getServerName();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Returns some value regarding the @ref AOClient::diceThrower "dice thrower commands".
|
||||||
|
*
|
||||||
|
* @param value_type `max_value` for the maximum amount of faces a die may have,
|
||||||
|
* `max_dice` for the maximum amount of dice that may be thrown at once.
|
||||||
|
*
|
||||||
|
* @return The associated value if it is found in the configuration file under the "Dice" section,
|
||||||
|
* or `100` if not.
|
||||||
|
*/
|
||||||
int getDiceValue(QString value_type);
|
int getDiceValue(QString value_type);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Returns the character's character ID (= their index in the character list).
|
||||||
|
*
|
||||||
|
* @param char_name The 'internal' name for the character whose character ID to look up. This is equivalent to
|
||||||
|
* the name of the directory of the character.
|
||||||
|
*
|
||||||
|
* @return The character ID if a character with that name exists in the character selection list, `-1` if not.
|
||||||
|
*/
|
||||||
int getCharID(QString char_name);
|
int getCharID(QString char_name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The collection of all currently connected clients.
|
||||||
|
*/
|
||||||
QVector<AOClient*> clients;
|
QVector<AOClient*> clients;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The overall player count in the server.
|
||||||
|
*/
|
||||||
int player_count;
|
int player_count;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The characters available on the server to use.
|
||||||
|
*/
|
||||||
QStringList characters;
|
QStringList characters;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The areas on the server.
|
||||||
|
*/
|
||||||
QVector<AreaData*> areas;
|
QVector<AreaData*> areas;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The names of the areas on the server.
|
||||||
|
*
|
||||||
|
* @details Equivalent to iterating over #areas and getting the area names individually, but grouped together
|
||||||
|
* here for faster access.
|
||||||
|
*/
|
||||||
QStringList area_names;
|
QStringList area_names;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The available songs on the server.
|
||||||
|
*
|
||||||
|
* @details Does **not** include the area names, the actual music list packet should be constructed from
|
||||||
|
* #area_names and this combined.
|
||||||
|
*/
|
||||||
QStringList music_list;
|
QStringList music_list;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The backgrounds on the server that may be used in areas.
|
||||||
|
*/
|
||||||
QStringList backgrounds;
|
QStringList backgrounds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The database manager on the server, used to store users' bans and authorisation details.
|
||||||
|
*/
|
||||||
DBManager* db_manager;
|
DBManager* db_manager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The user-facing server name.
|
||||||
|
*
|
||||||
|
* @note Unused. getServerName() serves its purpose instead.
|
||||||
|
*/
|
||||||
QString server_name;
|
QString server_name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The server-wide global timer.
|
||||||
|
*/
|
||||||
QTimer* timer;
|
QTimer* timer;
|
||||||
|
|
||||||
signals:
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
/**
|
||||||
|
* @brief Handles a new connection.
|
||||||
|
*
|
||||||
|
* @details The function creates an AOClient to represent the user, assigns a user ID to them, and
|
||||||
|
* checks if the client is banned.
|
||||||
|
*/
|
||||||
void clientConnected();
|
void clientConnected();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
/**
|
||||||
|
* @brief The proxy used for WebSocket connections.
|
||||||
|
*
|
||||||
|
* @see WSProxy and WSClient for an explanation as to why this is a thing.
|
||||||
|
*/
|
||||||
WSProxy* proxy;
|
WSProxy* proxy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Listens for incoming TCP connections.
|
||||||
|
*/
|
||||||
QTcpServer* server;
|
QTcpServer* server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The port through which the server will accept TCP connections.
|
||||||
|
*/
|
||||||
int port;
|
int port;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The port through which the server will accept WebSocket connections.
|
||||||
|
*/
|
||||||
int ws_port;
|
int ws_port;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,17 +17,17 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "include/server.h"
|
#include "include/server.h"
|
||||||
|
|
||||||
Server::Server(int p_port, int p_ws_port, QObject* parent) : QObject(parent)
|
Server::Server(int p_port, int p_ws_port, QObject* parent) :
|
||||||
|
QObject(parent),
|
||||||
|
player_count(0),
|
||||||
|
port(p_port),
|
||||||
|
ws_port(p_ws_port)
|
||||||
{
|
{
|
||||||
server = new QTcpServer(this);
|
server = new QTcpServer(this);
|
||||||
connect(server, SIGNAL(newConnection()), this, SLOT(clientConnected()));
|
connect(server, SIGNAL(newConnection()), this, SLOT(clientConnected()));
|
||||||
|
|
||||||
port = p_port;
|
|
||||||
ws_port = p_ws_port;
|
|
||||||
timer = new QTimer();
|
timer = new QTimer();
|
||||||
|
|
||||||
player_count = 0;
|
|
||||||
|
|
||||||
db_manager = new DBManager();
|
db_manager = new DBManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user