OpenMiner/source/client/network/ClientCommandHandler.cpp

338 lines
11 KiB
C++
Raw Normal View History

/*
* =====================================================================================
*
* OpenMiner
*
* Copyright (C) 2018-2020 Unarelith, Quentin Bazin <openminer@unarelith.net>
* Copyright (C) 2019-2020 the OpenMiner contributors (see CONTRIBUTORS.md)
*
* This file is part of OpenMiner.
*
* OpenMiner is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* OpenMiner is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with OpenMiner; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* =====================================================================================
*/
#include <gk/core/Debug.hpp>
#include <gk/gl/Camera.hpp>
#include <entt/entt.hpp>
2020-04-29 00:27:05 +02:00
#include "AnimationComponent.hpp"
#include "Client.hpp"
#include "ClientPlayer.hpp"
#include "ClientWorld.hpp"
#include "ClientCommandHandler.hpp"
#include "DrawableComponent.hpp"
#include "DrawableDef.hpp"
#include "LuaGUIState.hpp"
#include "NetworkComponent.hpp"
#include "PositionComponent.hpp"
2020-04-28 22:57:24 +02:00
#include "RotationComponent.hpp"
#include "Registry.hpp"
void ClientCommandHandler::sendPlayerInvUpdate() {
Network::Packet invPacket;
invPacket << Network::Command::PlayerInvUpdate;
// FIXME: Sending client id shouldn't be necessary
invPacket << m_client.id();
invPacket << m_player.inventory();
m_client.send(invPacket);
}
void ClientCommandHandler::sendPlayerPosUpdate() {
Network::Packet packet;
packet << Network::Command::PlayerPosUpdate;
// FIXME: Sending client id shouldn't be necessary
packet << m_client.id();
packet << m_player.x();
packet << m_player.y();
packet << m_player.z();
packet << false;
m_client.send(packet);
}
void ClientCommandHandler::sendPlayerDigBlock(const glm::ivec4 &selectedBlock) {
Network::Packet packet;
packet << Network::Command::PlayerDigBlock
<< s32(selectedBlock.x)
<< s32(selectedBlock.y)
<< s32(selectedBlock.z);
m_client.send(packet);
}
void ClientCommandHandler::sendPlayerPlaceBlock(s32 x, s32 y, s32 z, u32 block) {
Network::Packet packet;
packet << Network::Command::PlayerPlaceBlock << x << y << z << block;
m_client.send(packet);
}
void ClientCommandHandler::sendPlayerInventoryRequest() {
Network::Packet packet;
packet << Network::Command::PlayerInventory
<< u16(Config::screenWidth) << u16(Config::screenHeight) << u8(Config::guiScale);
m_client.send(packet);
}
2020-02-29 18:07:01 +01:00
void ClientCommandHandler::sendPlayerCreativeWindowRequest() {
Network::Packet packet;
2020-02-29 18:07:01 +01:00
packet << Network::Command::PlayerCreativeWindow
<< u16(Config::screenWidth) << u16(Config::screenHeight) << u8(Config::guiScale);
m_client.send(packet);
}
void ClientCommandHandler::sendBlockActivated(const glm::ivec4 &selectedBlock) {
Network::Packet packet;
packet << Network::Command::BlockActivated
<< s32(selectedBlock.x)
<< s32(selectedBlock.y)
<< s32(selectedBlock.z)
<< u16(Config::screenWidth) << u16(Config::screenHeight) << u8(Config::guiScale);
m_client.send(packet);
}
void ClientCommandHandler::sendBlockInvUpdate(Inventory &inventory) {
Network::Packet packet;
packet << Network::Command::BlockInvUpdate;
packet << s32(inventory.blockPos().x) << s32(inventory.blockPos().y) << s32(inventory.blockPos().z);
packet << inventory;
m_client.send(packet);
}
void ClientCommandHandler::sendChunkRequest(s32 chunkX, s32 chunkY, s32 chunkZ) {
Network::Packet packet;
packet << Network::Command::ChunkRequest;
packet << chunkX << chunkY << chunkZ;
m_client.send(packet);
}
2020-02-21 17:25:56 +09:00
void ClientCommandHandler::sendChatMessage(const std::string &message) {
Network::Packet packet;
2020-02-21 17:25:56 +09:00
packet << Network::Command::ChatMessage;
// FIXME: Sending client id shouldn't be necessary
packet << m_client.id();
packet << message;
m_client.send(packet);
}
void ClientCommandHandler::setupCallbacks() {
m_client.setCommandCallback(Network::Command::ClientDisconnect, [this](Network::Packet &packet) {
u16 clientID;
packet >> clientID;
auto it = m_playerBoxes.find(clientID);
if (it != m_playerBoxes.end())
m_playerBoxes.erase(it);
});
m_client.setCommandCallback(Network::Command::RegistryData, [this](Network::Packet &packet) {
2020-03-08 18:13:32 +01:00
// FIXME: This is a quick fix for concurrency between client and server in singleplayer
if (!m_isSingleplayer)
Registry::getInstance().deserialize(packet);
m_isRegistryInitialized = true;
});
m_client.setCommandCallback(Network::Command::ChunkData, [this](Network::Packet &packet) {
m_world.receiveChunkData(packet);
});
m_client.setCommandCallback(Network::Command::BlockUpdate, [this](Network::Packet &packet) {
s32 x, y, z;
u32 block;
packet >> x >> y >> z >> block;
m_world.setBlock(x, y, z, block);
m_world.setData(x, y, z, block >> 16);
});
m_client.setCommandCallback(Network::Command::PlayerInvUpdate, [this](Network::Packet &packet) {
u16 clientId;
packet >> clientId;
if (clientId == m_client.id())
packet >> m_player.inventory();
else
packet >> m_playerBoxes.at(clientId).inventory();
});
m_client.setCommandCallback(Network::Command::PlayerPosUpdate, [this](Network::Packet &packet) {
double x, y, z;
u16 clientId;
bool isTeleportation;
packet >> clientId;
packet >> x >> y >> z;
packet >> isTeleportation;
if (clientId != m_client.id()) {
auto it = m_playerBoxes.find(clientId);
if (it != m_playerBoxes.end())
it->second.setPosition(x, y, z);
}
else if (isTeleportation) {
m_player.setPosition(x, y, z);
}
});
m_client.setCommandCallback(Network::Command::PlayerSpawn, [this](Network::Packet &packet) {
u16 clientId;
gk::Vector3d pos;
packet >> clientId >> pos.x >> pos.y >> pos.z;
if (clientId != m_client.id()) {
m_playerBoxes.emplace(clientId, PlayerBox{m_player.camera()});
m_playerBoxes.at(clientId).setPosition(pos.x, pos.y, pos.z);
m_playerBoxes.at(clientId).setClientID(clientId);
}
else {
m_player.setPosition(pos.x, pos.y, pos.z);
}
});
m_client.setCommandCallback(Network::Command::PlayerChangeDimension, [this](Network::Packet &packet) {
u16 clientId, dimension;
s32 x, y, z;
packet >> clientId >> x >> y >> z >> dimension;
if (clientId == m_client.id()) {
m_player.setDimension(dimension);
m_player.setPosition(x, y, z);
m_world.clear();
2020-03-09 19:36:46 +01:00
m_world.updateSky(dimension);
m_entityMap.clear();
}
});
m_client.setCommandCallback(Network::Command::BlockGUIData, [this](Network::Packet &packet) {
gk::ApplicationStateStack::getInstance().push<LuaGUIState>(*this, m_player, m_world, packet, &gk::ApplicationStateStack::getInstance().top());
});
m_client.setCommandCallback(Network::Command::BlockInvUpdate, [this](Network::Packet &packet) {
gk::Vector3<s32> pos;
packet >> pos.x >> pos.y >> pos.z;
BlockData *data = m_world.getBlockData(pos.x, pos.y, pos.z);
2020-02-07 23:15:44 +09:00
if (!data)
data = m_world.addBlockData(pos.x, pos.y, pos.z);
if (data)
packet >> data->inventory;
});
m_client.setCommandCallback(Network::Command::BlockDataUpdate, [this](Network::Packet &packet) {
gk::Vector3<s32> pos;
packet >> pos.x >> pos.y >> pos.z;
Chunk *chunk = m_world.getChunkAtBlockPos(pos.x, pos.y, pos.z);
if (chunk) {
BlockData *data = chunk->getBlockData(pos.x & (CHUNK_WIDTH - 1), pos.y & (CHUNK_DEPTH - 1), pos.z & (CHUNK_HEIGHT - 1));
2020-02-07 23:15:44 +09:00
if (!data)
data = m_world.addBlockData(pos.x, pos.y, pos.z);
if (data) {
bool useAltTiles;
packet >> data->meta >> useAltTiles;
if (data->useAltTiles != useAltTiles) {
chunk->setChanged(true);
data->useAltTiles = useAltTiles;
}
}
}
});
m_client.setCommandCallback(Network::Command::EntitySpawn, [this](Network::Packet &packet) {
entt::entity entityID;
packet >> entityID;
auto &registry = m_world.scene().registry();
auto it = m_entityMap.find(entityID);
if (it == m_entityMap.end()) {
entt::entity entity = registry.create();
m_entityMap.emplace(entityID, entity);
registry.emplace<NetworkComponent>(entity, entityID);
}
else if (registry.get<NetworkComponent>(it->second).entityID != entityID) {
gkError() << "EntitySpawn: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
}
});
m_client.setCommandCallback(Network::Command::EntityDespawn, [this](Network::Packet &packet) {
entt::entity entityID;
packet >> entityID;
auto it = m_entityMap.find(entityID);
if (it != m_entityMap.end()) {
m_world.scene().registry().destroy(it->second);
}
else
gkError() << "EntityDespawn: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
});
m_client.setCommandCallback(Network::Command::EntityPosition, [this](Network::Packet &packet) {
entt::entity entityID;
packet >> entityID;
auto it = m_entityMap.find(entityID);
if (it != m_entityMap.end()) {
auto &position = m_world.scene().registry().get_or_emplace<PositionComponent>(it->second);
packet >> position.x >> position.y >> position.z;
}
else
gkError() << "EntityPosition: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
2020-04-28 22:57:24 +02:00
});
m_client.setCommandCallback(Network::Command::EntityRotation, [this](Network::Packet &packet) {
entt::entity entityID;
2020-04-28 22:57:24 +02:00
packet >> entityID;
auto it = m_entityMap.find(entityID);
if (it != m_entityMap.end()) {
float w, x, y, z;
packet >> w >> x >> y >> z;
auto &rotation = m_world.scene().registry().get_or_emplace<RotationComponent>(it->second);
2020-04-28 22:57:24 +02:00
rotation.quat = glm::quat(w, x, y, z);
}
else
gkError() << "EntityRotation: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
});
m_client.setCommandCallback(Network::Command::EntityAnimation, [this](Network::Packet &packet) {
entt::entity entityID;
2020-04-29 00:27:05 +02:00
packet >> entityID;
auto it = m_entityMap.find(entityID);
if (it != m_entityMap.end()) {
auto &animation = m_world.scene().registry().get_or_emplace<AnimationComponent>(it->second);
2020-04-29 00:27:05 +02:00
animation.deserialize(packet);
}
else
gkError() << "EntityAnimation: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
2020-04-29 00:27:05 +02:00
});
m_client.setCommandCallback(Network::Command::EntityDrawableDef, [this](Network::Packet &packet) {
entt::entity entityID;
packet >> entityID;
auto it = m_entityMap.find(entityID);
if (it != m_entityMap.end()) {
packet >> m_world.scene().registry().get_or_emplace<DrawableDef>(it->second);
}
else
gkError() << "EntityDrawableDef: Entity ID" << std::underlying_type_t<entt::entity>(entityID) << "is invalid";
});
}