FreeKill/src/client/client.cpp

71 lines
2.0 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0-or-later
#include "client.h"
#include "client_socket.h"
#include "clientplayer.h"
#include "parser.h"
2023-04-12 12:51:09 +00:00
#include "util.h"
Client *ClientInstance;
ClientPlayer *Self;
2023-04-12 12:51:09 +00:00
Client::Client(QObject *parent) : QObject(parent), callback(0) {
ClientInstance = this;
Self = new ClientPlayer(0, this);
QQmlApplicationEngine *engine = Backend->getEngine();
engine->rootContext()->setContextProperty("ClientInstance", ClientInstance);
engine->rootContext()->setContextProperty("Self", Self);
ClientSocket *socket = new ClientSocket;
connect(socket, &ClientSocket::error_message, this, &Client::error_message);
router = new Router(this, socket, Router::TYPE_CLIENT);
Parser::parseFkp();
L = CreateLuaState();
DoLuaScript(L, "lua/freekill.lua");
DoLuaScript(L, "lua/client/client.lua");
}
2023-04-12 12:51:09 +00:00
Client::~Client() {
ClientInstance = nullptr;
lua_close(L);
router->getSocket()->disconnectFromHost();
router->getSocket()->deleteLater();
}
2023-04-12 12:51:09 +00:00
void Client::connectToHost(const QString &server, ushort port) {
router->getSocket()->connectToHost(server, port);
}
2023-04-12 12:51:09 +00:00
void Client::replyToServer(const QString &command, const QString &jsonData) {
int type = Router::TYPE_REPLY | Router::SRC_CLIENT | Router::DEST_SERVER;
router->reply(type, command, jsonData);
}
2023-04-12 12:51:09 +00:00
void Client::notifyServer(const QString &command, const QString &jsonData) {
int type =
Router::TYPE_NOTIFICATION | Router::SRC_CLIENT | Router::DEST_SERVER;
router->notify(type, command, jsonData);
}
2023-04-12 12:51:09 +00:00
ClientPlayer *Client::addPlayer(int id, const QString &name,
const QString &avatar) {
ClientPlayer *player = new ClientPlayer(id);
player->setScreenName(name);
player->setAvatar(avatar);
players[id] = player;
return player;
}
void Client::removePlayer(int id) {
ClientPlayer *p = players[id];
p->deleteLater();
players[id] = nullptr;
}
2023-04-12 12:51:09 +00:00
void Client::clearPlayers() { players.clear(); }
2023-04-12 12:51:09 +00:00
lua_State *Client::getLuaState() { return L; }