/* Copyright: (c) Kayne Ruse 2014 * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * * 3. This notice may not be removed or altered from any source * distribution. */ #include "server_application.hpp" #include #include #include //------------------------- //basic connections //------------------------- //SET: utility void ServerApplication::HandleBroadcastRequest(ServerPacket* const argPacket) { //send the server's data ServerPacket newPacket; newPacket.type = SerialPacketType::BROADCAST_RESPONSE; strncpy(newPacket.name, config["server.name"].c_str(), PACKET_STRING_SIZE); newPacket.playerCount = characterMgr.GetLoadedCount(); newPacket.version = NETWORK_VERSION; network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); } //SET: connections void ServerApplication::HandleJoinRequest(ClientPacket* const argPacket) { //register the client int clientIndex = clientMgr.Create(argPacket->srcAddress); //load the user account //TODO: handle passwords int accountIndex = accountMgr.Load(argPacket->username, clientIndex); //Cannot load if (accountIndex < 0) { std::ostringstream msg; msg << "Account already loaded: " << argPacket->username; TextPacket newPacket; newPacket.type = SerialPacketType::JOIN_REJECTION; memset(newPacket.name, 0, PACKET_STRING_SIZE); strncpy(newPacket.text, msg.str().c_str(), PACKET_STRING_SIZE); network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); clientMgr.Unload(clientIndex); return; } //send the client their info ClientPacket newPacket; newPacket.type = SerialPacketType::JOIN_RESPONSE; newPacket.clientIndex = clientIndex; newPacket.accountIndex = accountIndex; network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); //finished this routine std::cout << "New connection, " << clientMgr.GetLoadedCount() << " clients and " << accountMgr.GetLoadedCount() << " accounts total" << std::endl; } //SET: connections void ServerApplication::HandleDisconnect(ClientPacket* const argPacket) { //TODO: authenticate who is disconnecting/kicking /*Pseudocode: if sender's account index -> client index -> address == sender's address then continue end if sender's account index -> admin == true OR sender's account index -> mod == true then continue end if neither of the above is true, then output a warning to the console, and return */ //forward to the specified client network.SendTo( clientMgr.Get(accountMgr.Get(argPacket->accountIndex)->GetClientIndex())->GetAddress(), static_cast(argPacket) ); //save and unload this account's characters characterMgr.UnloadIf([&](std::pair it) -> bool { if (argPacket->accountIndex == it.second.GetOwner()) { //pump the unload message to all remaining clients PumpCharacterUnload(it.first); return true; } return false; }); //erase the in-memory stuff clientMgr.Unload(accountMgr.Get(argPacket->accountIndex)->GetClientIndex()); accountMgr.Unload(argPacket->accountIndex); //finished this routine std::cout << "Disconnection, " << clientMgr.GetLoadedCount() << " clients and " << accountMgr.GetLoadedCount() << " accounts total" << std::endl; } //SET: connections void ServerApplication::HandleShutdown(ClientPacket* const argPacket) { //TODO: authenticate who is shutting the server down /*Pseudocode: if sender's account -> admin is not true then print a warning return end */ //end the server running = false; //disconnect all clients ClientPacket newPacket; newPacket.type = SerialPacketType::DISCONNECT_FORCED; PumpPacket(&newPacket); //finished this routine std::cout << "Shutdown signal accepted" << std::endl; } //------------------------- //map management //------------------------- //SET: resources void ServerApplication::HandleRegionRequest(RegionPacket* const argPacket) { RegionPacket newPacket; newPacket.type = SerialPacketType::REGION_CONTENT; newPacket.roomIndex = argPacket->roomIndex; newPacket.x = argPacket->x; newPacket.y = argPacket->y; //BUG: possibly related to #35 newPacket.region = roomMgr.Get(argPacket->roomIndex)->GetPager()->GetRegion(argPacket->x, argPacket->y); //send the content network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); } //------------------------- //Character Management //------------------------- //SET: entities void ServerApplication::HandleCharacterNew(CharacterPacket* const argPacket) { //NOTE: misnomer, try to load the character first int characterIndex = characterMgr.Load(argPacket->accountIndex, argPacket->handle, argPacket->avatar); //cannot load or create if (characterIndex < 0) { //build the error message std::ostringstream msg; if (characterIndex == -1) { msg << "Character already loaded: "; } else if (characterIndex == -2) { msg << "Character already exists: "; } msg << argPacket->handle; //create, fill and send the packet TextPacket newPacket; newPacket.type = SerialPacketType::CHARACTER_REJECTION; memset(newPacket.name, 0, PACKET_STRING_SIZE); strncpy(newPacket.text, msg.str().c_str(), PACKET_STRING_SIZE); network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); return; } //send this new character to all clients CharacterPacket newPacket; newPacket.type = SerialPacketType::CHARACTER_CREATE; CopyCharacterToPacket(&newPacket, characterIndex); PumpPacket(&newPacket); } //SET: entities void ServerApplication::HandleCharacterDelete(CharacterPacket* const argPacket) { //NOTE: Disconnecting only unloads a character, this explicitly deletes it //Authenticate the owner is doing this int characterIndex = characterMgr.Load(argPacket->accountIndex, argPacket->handle, argPacket->avatar); //if this is not your character if (characterIndex < 0 && characterMgr.Get(characterIndex)->GetOwner() != argPacket->accountIndex) { //send the rejection packet TextPacket newPacket; newPacket.type = SerialPacketType::CHARACTER_REJECTION; memset(newPacket.name, 0, PACKET_STRING_SIZE); strncpy(newPacket.text, "Character cannot be deleted", PACKET_STRING_SIZE); network.SendTo(argPacket->srcAddress, static_cast(&newPacket)); //unload an unneeded character if (characterIndex != -1) { characterMgr.Unload(characterIndex); } return; } //delete it characterMgr.Delete(characterIndex); //TODO: success packet //Unload this character from all clients PumpCharacterUnload(characterIndex); } //SET: entities void ServerApplication::HandleCharacterUpdate(CharacterPacket* const argPacket) { CharacterData* character = characterMgr.Get(argPacket->characterIndex); //make a new character if this one doesn't exist if (!character) { HandleCharacterNew(argPacket); return; } //accept client-side logic character->SetRoomIndex(argPacket->roomIndex); character->SetOrigin(argPacket->origin); character->SetMotion(argPacket->motion); //TODO: gameplay components: equipment, items, buffs, debuffs PumpPacket(argPacket); } //------------------------- //mismanagement //------------------------- //SET: delete void ServerApplication::HandleSynchronize(ClientPacket* const argPacket) { //TODO: compensate for large distances //NOTE: I quite dislike this function //send all of the server's data to this client ClientData* client = clientMgr.Get(argPacket->clientIndex); //send all characters CharacterPacket newPacket; newPacket.type = SerialPacketType::CHARACTER_SET_ORIGIN; for (auto& it : *characterMgr.GetContainer()) { CopyCharacterToPacket(&newPacket, it.first); network.SendTo(client->GetAddress(), static_cast(&newPacket)); } //TODO: more in HandleSynchronize() } //------------------------- //utility methods //------------------------- //SET: utility/manager void ServerApplication::CleanupLostConnection(int clientIndex) { //NOTE: This assumes each player has only one account and character at a time //TODO: handle multiple characters (bots, etc.) //send a disconnection message just in case ClientPacket newPacket; newPacket.type = SerialPacketType::DISCONNECT_FORCED; network.SendTo(clientMgr.Get(clientIndex)->GetAddress(), &newPacket); //find the account int accountIndex = -1; for (auto& it : *accountMgr.GetContainer()) { if (it.second.GetClientIndex() == clientIndex) { accountIndex = it.first; break; } } //find the character int characterIndex = -1; for (auto& it : *characterMgr.GetContainer()) { if (it.second.GetOwner() == accountIndex) { characterIndex = it.first; break; } } //clean up this mess characterMgr.Unload(characterIndex); accountMgr.Unload(accountIndex); clientMgr.Unload(clientIndex); PumpCharacterUnload(characterIndex); //output a message std::cerr << "Connection lost: " << std::endl; std::cerr << "\tClient: " << clientIndex << std::endl; std::cerr << "\tAccount: " << accountIndex << std::endl; std::cerr << "\tCharacter: " << characterIndex << std::endl; std::cout << clientMgr.GetLoadedCount() << " clients and " << accountMgr.GetLoadedCount() << " accounts total" << std::endl; } //SET: utility //TODO: a function that only sends to characters in a certain proximity //SET: utility void ServerApplication::PumpPacket(SerialPacket* const argPacket) { for (auto& it : *clientMgr.GetContainer()) { network.SendTo(it.second.GetAddress(), argPacket); } } //SET: utility/delete void ServerApplication::PumpCharacterUnload(int uid) { //delete the client-side character(s) //NOTE: This is a strange function CharacterPacket newPacket; newPacket.type = SerialPacketType::CHARACTER_DELETE; newPacket.characterIndex = uid; PumpPacket(static_cast(&newPacket)); } //SET: utility/delete void ServerApplication::CopyCharacterToPacket(CharacterPacket* const packet, int characterIndex) { CharacterData* character = characterMgr.Get(characterIndex); if (!character) { throw(std::runtime_error("Failed to copy a character to a packet")); } //TODO: keep this up to date when the character changes packet->characterIndex = characterIndex; strncpy(packet->handle, character->GetHandle().c_str(), PACKET_STRING_SIZE); strncpy(packet->avatar, character->GetAvatar().c_str(), PACKET_STRING_SIZE); packet->accountIndex = character->GetOwner(); packet->roomIndex = character->GetRoomIndex(); packet->origin = character->GetOrigin(); packet->motion = character->GetMotion(); }