FreeKill/src/client/client.cpp

71 lines
1.9 KiB
C++
Raw Normal View History

#include "client.h"
#include "client_socket.h"
#include "clientplayer.h"
#include "qmlbackend.h"
#include "util.h"
Client *ClientInstance;
ClientPlayer *Self;
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);
L = CreateLuaState();
DoLuaScript(L, "lua/freekill.lua");
DoLuaScript(L, "lua/client/client.lua");
}
Client::~Client()
{
ClientInstance = nullptr;
lua_close(L);
2022-03-01 05:18:00 +00:00
router->getSocket()->disconnectFromHost();
router->getSocket()->deleteLater();
}
void Client::connectToHost(const QHostAddress& server, ushort port)
{
router->getSocket()->connectToHost(server, port);
}
2022-03-02 12:56:37 +00:00
void Client::replyToServer(const QString& command, const QString& jsonData)
{
2022-03-01 05:18:00 +00:00
int type = Router::TYPE_REPLY | Router::SRC_CLIENT | Router::DEST_SERVER;
2022-03-02 12:56:37 +00:00
router->reply(type, command, jsonData);
}
2022-03-02 12:56:37 +00:00
void Client::notifyServer(const QString& command, const QString& jsonData)
{
2022-03-01 05:18:00 +00:00
int type = Router::TYPE_NOTIFICATION | Router::SRC_CLIENT | Router::DEST_SERVER;
2022-03-02 12:56:37 +00:00
router->notify(type, command, jsonData);
}
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;
}
void Client::clearPlayers() {
players.clear();
}