| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- /*
- * LobbyWindow.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "LobbyWindow.h"
- #include "../gui/CGuiHandler.h"
- #include "../gui/WindowHandler.h"
- #include "../widgets/TextControls.h"
- #include "../windows/InfoWindows.h"
- #include "../../lib/MetaString.h"
- #include "../../lib/CConfigHandler.h"
- #include "../../lib/network/NetworkClient.h"
- GlobalLobbyClient::GlobalLobbyClient(GlobalLobbyWindow * window)
- : networkClient(std::make_unique<NetworkClient>(*this))
- , window(window)
- {}
- static std::string getCurrentTimeFormatted(int timeOffsetSeconds = 0)
- {
- // FIXME: better/unified way to format date
- auto timeNowChrono = std::chrono::system_clock::now();
- timeNowChrono += std::chrono::seconds(timeOffsetSeconds);
- std::time_t timeNowC = std::chrono::system_clock::to_time_t(timeNowChrono);
- std::tm timeNowTm = *std::localtime(&timeNowC);
- MetaString timeFormatted;
- timeFormatted.appendRawString("%d:%d");
- timeFormatted.replaceNumber(timeNowTm.tm_hour);
- timeFormatted.replaceNumber(timeNowTm.tm_min);
- return timeFormatted.toString();
- }
- void GlobalLobbyClient::onPacketReceived(const std::shared_ptr<NetworkConnection> &, const std::vector<uint8_t> & message)
- {
- // FIXME: find better approach
- const char * payloadBegin = reinterpret_cast<const char*>(message.data());
- JsonNode json(payloadBegin, message.size());
- if (json["type"].String() == "chatHistory")
- {
- for (auto const & entry : json["messages"].Vector())
- {
- std::string senderName = entry["senderName"].String();
- std::string messageText = entry["messageText"].String();
- int ageSeconds = entry["ageSeconds"].Integer();
- std::string timeFormatted = getCurrentTimeFormatted(-ageSeconds);
- window->onGameChatMessage(senderName, messageText, timeFormatted);
- }
- }
- if (json["type"].String() == "chatMessage")
- {
- std::string senderName = json["senderName"].String();
- std::string messageText = json["messageText"].String();
- std::string timeFormatted = getCurrentTimeFormatted();
- window->onGameChatMessage(senderName, messageText, timeFormatted);
- }
- }
- void GlobalLobbyClient::onConnectionEstablished(const std::shared_ptr<NetworkConnection> &)
- {
- JsonNode toSend;
- toSend["type"].String() = "authentication";
- toSend["accountName"].String() = settings["general"]["playerName"].String();
- sendMessage(toSend);
- }
- void GlobalLobbyClient::onConnectionFailed(const std::string & errorMessage)
- {
- GH.windows().popWindows(1);
- CInfoWindow::showInfoDialog("Failed to connect to game lobby!\n" + errorMessage, {});
- }
- void GlobalLobbyClient::onDisconnected(const std::shared_ptr<NetworkConnection> &)
- {
- GH.windows().popWindows(1);
- CInfoWindow::showInfoDialog("Connection to game lobby was lost!", {});
- }
- void GlobalLobbyClient::onTimer()
- {
- // no-op
- }
- void GlobalLobbyClient::sendMessage(const JsonNode & data)
- {
- std::string payloadString = data.toJson(true);
- // FIXME: find better approach
- uint8_t * payloadBegin = reinterpret_cast<uint8_t*>(payloadString.data());
- uint8_t * payloadEnd = payloadBegin + payloadString.size();
- std::vector<uint8_t> payloadBuffer(payloadBegin, payloadEnd);
- networkClient->sendPacket(payloadBuffer);
- }
- void GlobalLobbyClient::start(const std::string & host, uint16_t port)
- {
- networkClient->start(host, port);
- }
- void GlobalLobbyClient::run()
- {
- networkClient->run();
- }
- void GlobalLobbyClient::poll()
- {
- networkClient->poll();
- }
- GlobalLobbyWidget::GlobalLobbyWidget(GlobalLobbyWindow * window)
- : window(window)
- {
- addCallback("closeWindow", [](int) { GH.windows().popWindows(1); });
- addCallback("sendMessage", [this](int) { this->window->doSendChatMessage(); });
- const JsonNode config(JsonPath::builtin("config/widgets/lobbyWindow.json"));
- build(config);
- }
- std::shared_ptr<CLabel> GlobalLobbyWidget::getAccountNameLabel()
- {
- return widget<CLabel>("accountNameLabel");
- }
- std::shared_ptr<CTextInput> GlobalLobbyWidget::getMessageInput()
- {
- return widget<CTextInput>("messageInput");
- }
- std::shared_ptr<CTextBox> GlobalLobbyWidget::getGameChat()
- {
- return widget<CTextBox>("gameChat");
- }
- GlobalLobbyWindow::GlobalLobbyWindow():
- CWindowObject(BORDERED)
- {
- OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
- widget = std::make_shared<GlobalLobbyWidget>(this);
- pos = widget->pos;
- center();
- connection = std::make_shared<GlobalLobbyClient>(this);
- connection->start("127.0.0.1", 30303);
- widget->getAccountNameLabel()->setText(settings["general"]["playerName"].String());
- addUsedEvents(TIME);
- }
- void GlobalLobbyWindow::tick(uint32_t msPassed)
- {
- connection->poll();
- }
- void GlobalLobbyWindow::doSendChatMessage()
- {
- std::string messageText = widget->getMessageInput()->getText();
- JsonNode toSend;
- toSend["type"].String() = "sendChatMessage";
- toSend["messageText"].String() = messageText;
- connection->sendMessage(toSend);
- widget->getMessageInput()->setText("");
- }
- void GlobalLobbyWindow::onGameChatMessage(const std::string & sender, const std::string & message, const std::string & when)
- {
- MetaString chatMessageFormatted;
- chatMessageFormatted.appendRawString("[%s] {%s}: %s\n");
- chatMessageFormatted.replaceRawString(when);
- chatMessageFormatted.replaceRawString(sender);
- chatMessageFormatted.replaceRawString(message);
- chatHistory += chatMessageFormatted.toString();
- widget->getGameChat()->setText(chatHistory);
- }
|