#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* #include #include #include */ #include "../common/Compiler.h" #include "../common/Common.h" #include "../common/MessageProcessor.h" #include "../common/WorldMap.h" #include "../common/Player.h" #include "../common/Projectile.h" #include "../common/Game.h" #include "../common/GameSummary.h" #include "DataAccess.h" using namespace std; // from used to be const. Removed that so I could take a reference // and use it to send messages void processMessage(const NETWORK_MSG& clientMsg, struct sockaddr_in& from, MessageProcessor& msgProcessor, map& mapPlayers, map& mapGames, unsigned int& unusedPlayerId); void updateUnusedPlayerId(unsigned int& id, map& mapPlayers); Player *findPlayerByName(map &m, string name); Player *findPlayerByAddr(map &m, const sockaddr_in &addr); void quit(int sig); bool done; int main(int argc, char *argv[]) { int sock, length; struct sockaddr_in server; struct sockaddr_in from; // info of client sending the message NETWORK_MSG clientMsg, serverMsg; MessageProcessor msgProcessor; map mapPlayers; map mapProjectiles; map mapGames; unsigned int unusedPlayerId = 1; ofstream outputLog; done = false; signal(SIGINT, quit); //SSL_load_error_strings(); //ERR_load_BIO_strings(); //OpenSSL_add_all_algorithms(); if (argc != 2) { cerr << "ERROR, expected server [domain] [port]" << endl; exit(1); } outputLog.open("server.log", ios::app); outputLog << "Started server on " << getCurrentDateTimeString() << endl; sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) error("Opening socket"); length = sizeof(server); bzero(&server,length); server.sin_family=AF_INET; server.sin_port=htons(atoi(argv[1])); server.sin_addr.s_addr=INADDR_ANY; if ( bind(sock, (struct sockaddr *)&server, length) < 0 ) error("binding"); set_nonblock(sock); msgProcessor = MessageProcessor(sock, &outputLog); timespec ts; int timeLastUpdated = 0, curTime = 0; while (!done) { usleep(5000); clock_gettime(CLOCK_REALTIME, &ts); // make the number smaller so millis can fit in an int ts.tv_sec -= 1368000000; curTime = ts.tv_sec*1000 + ts.tv_nsec/1000000; if (timeLastUpdated == 0 || (curTime-timeLastUpdated) >= 50) { timeLastUpdated = curTime; msgProcessor.cleanAckedMessages(); msgProcessor.resendUnackedMessages(); map::iterator it; cout << "Updating player targets and respawning dead players" << endl; // set targets for all chasing players (or make them attack if they're close enough) // this should be moved into the games loop for (it = mapPlayers.begin(); it != mapPlayers.end(); it++) { Player* p = it->second; // check if it's time to revive dead players if (p->isDead) { cout << "Player is dead" << endl; if (getCurrentMillis() - p->timeDied >= 10000) { p->isDead = false; POSITION spawnPos; switch (p->team) { case 0:// blue team spawnPos = p->currentGame->getMap()->getStructureLocation(WorldMap::STRUCTURE_BLUE_FLAG); break; case 1:// red team spawnPos = p->currentGame->getMap()->getStructureLocation(WorldMap::STRUCTURE_RED_FLAG); break; default: // should never go here cout << "Error: Invalid team" << endl; break; } // spawn the player to the right of their flag location spawnPos.x = (spawnPos.x+1) * 25 + 12; spawnPos.y = spawnPos.y * 25 + 12; p->pos = spawnPos.toFloat(); p->target = spawnPos; p->health = p->maxHealth; serverMsg.type = MSG_TYPE_PLAYER; p->serialize(serverMsg.buffer); msgProcessor.broadcastMessage(serverMsg, p->currentGame->getPlayers()); } continue; } if (p->currentGame != NULL) { map playersInGame = p->currentGame->getPlayers(); if (p->updateTarget(playersInGame)) { serverMsg.type = MSG_TYPE_PLAYER; p->serialize(serverMsg.buffer); msgProcessor.broadcastMessage(serverMsg, playersInGame); } } } cout << "Processing players in a game" << endl; // process players currently in a game map::iterator itGames; Game* game = NULL; for (itGames = mapGames.begin(); itGames != mapGames.end();) { game = itGames->second; if (game->handleGameEvents()) { // send a GAME_INFO message with 0 players to force clients to delete the game int numPlayers = 0; serverMsg.type = MSG_TYPE_GAME_INFO; memcpy(serverMsg.buffer, &numPlayers, 4); strcpy(serverMsg.buffer+4, game->getName().c_str()); msgProcessor.broadcastMessage(serverMsg, mapPlayers); delete itGames->second; mapGames.erase(itGames++); }else itGames++; } cout << "Processing projectiles" << endl; // move all projectiles // see if this can be moved inside the game class // this method can be moved when I add a MessageProcessor to the Game class map::iterator itProj; for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++) { game = itGames->second; for (itProj = game->getProjectiles().begin(); itProj != game->getProjectiles().end(); itProj++) { cout << "About to call projectile move" << endl; if (itProj->second.move(game->getPlayers())) { // send a REMOVE_PROJECTILE message cout << "send a REMOVE_PROJECTILE message" << endl; serverMsg.type = MSG_TYPE_REMOVE_PROJECTILE; memcpy(serverMsg.buffer, &itProj->second.id, 4); game->removeProjectile(itProj->second.id); msgProcessor.broadcastMessage(serverMsg, game->getPlayers()); Player* target = game->getPlayers()[itProj->second.target]; game->dealDamageToPlayer(target, itProj->second.damage); } } } } if (msgProcessor.receiveMessage(&clientMsg, &from) >= 0) { processMessage(clientMsg, from, msgProcessor, mapPlayers, mapGames, unusedPlayerId); cout << "Finished processing the message" << endl; } } outputLog << "Stopped server on " << getCurrentDateTimeString() << endl; outputLog.close(); // delete all games map::iterator itGames; for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++) { delete itGames->second; } map::iterator itPlayers; for (itPlayers = mapPlayers.begin(); itPlayers != mapPlayers.end(); itPlayers++) { delete itPlayers->second; } return 0; } void processMessage(const NETWORK_MSG &clientMsg, struct sockaddr_in &from, MessageProcessor &msgProcessor, map& mapPlayers, map& mapGames, unsigned int& unusedPlayerId) { NETWORK_MSG serverMsg; DataAccess da; cout << "Inside processMessage" << endl; cout << "Received message" << endl; cout << "MSG: type: " << clientMsg.type << endl; cout << "MSG contents: " << clientMsg.buffer << endl; // Check that if an invalid message is sent, the client will correctly // receive and display the response. Maybe make a special error msg type switch(clientMsg.type) { case MSG_TYPE_REGISTER: { string username(clientMsg.buffer); string password(strchr(clientMsg.buffer, '\0')+1); Player::PlayerClass playerClass; memcpy(&playerClass, clientMsg.buffer+username.length()+password.length()+2, 4); cout << "username: " << username << endl; cout << "password: " << password << endl; bool validClass = false; switch(playerClass) { case Player::CLASS_WARRIOR: case Player::CLASS_RANGER: validClass = true; break; default: validClass = false; break; } serverMsg.type = MSG_TYPE_REGISTER; if (validClass) { int error = da.insertPlayer(username, password, playerClass); if (error) strcpy(serverMsg.buffer, "Registration failed. Please try again."); else strcpy(serverMsg.buffer, "Registration successful."); }else strcpy(serverMsg.buffer, "You didn't select a class"); msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_LOGIN: { cout << "Got login message" << endl; string username(clientMsg.buffer); string password(strchr(clientMsg.buffer, '\0')+1); Player* p = da.getPlayer(username); if (p == NULL || !da.verifyPassword(password, p->password)) { strcpy(serverMsg.buffer, "Incorrect username or password"); if (p != NULL) delete(p); } else if(findPlayerByName(mapPlayers, username) != NULL) { strcpy(serverMsg.buffer, "Player has already logged in."); delete(p); } else { updateUnusedPlayerId(unusedPlayerId, mapPlayers); p->setId(unusedPlayerId); cout << "new player id: " << p->getId() << endl; p->setAddr(from); p->currentGame = NULL; // choose a random team (either 0 or 1) p->team = rand() % 2; serverMsg.type = MSG_TYPE_PLAYER; // tell the new player about all the existing players cout << "Sending other players to new player" << endl; map::iterator it; for (it = mapPlayers.begin(); it != mapPlayers.end(); it++) { it->second->serialize(serverMsg.buffer); cout << "sending info about " << it->second->name << endl; cout << "sending id " << it->second->getId() << endl; msgProcessor.sendMessage(&serverMsg, &from); } // send info about existing games to new player map::iterator itGames; Game* g; int numPlayers; serverMsg.type = MSG_TYPE_GAME_INFO; for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++) { g = itGames->second; numPlayers = g->getNumPlayers(); memcpy(serverMsg.buffer, &numPlayers, 4); strcpy(serverMsg.buffer+4, g->getName().c_str()); msgProcessor.sendMessage(&serverMsg, &from); } serverMsg.type = MSG_TYPE_PLAYER; p->serialize(serverMsg.buffer); msgProcessor.broadcastMessage(serverMsg, mapPlayers); mapPlayers[unusedPlayerId] = p; } serverMsg.type = MSG_TYPE_LOGIN; msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_LOGOUT: { string name(clientMsg.buffer); cout << "Player logging out: " << name << endl; Player *p = findPlayerByName(mapPlayers, name); if (p == NULL) { strcpy(serverMsg.buffer+4, "That player is not logged in. This is either a bug, or you're trying to hack the server."); cout << "Player not logged in" << endl; } else if ( p->addr.sin_addr.s_addr != from.sin_addr.s_addr || p->addr.sin_port != from.sin_port ) { strcpy(serverMsg.buffer+4, "That player is logged in using a differemt connection. This is either a bug, or you're trying to hack the server."); cout << "Player logged in using a different connection" << endl; } else { // broadcast to all players before deleting p from the map unsigned int playerId = p->getId(); serverMsg.type = MSG_TYPE_LOGOUT; memcpy(serverMsg.buffer, &playerId, 4); msgProcessor.broadcastMessage(serverMsg, mapPlayers); if (p->getId() < unusedPlayerId) unusedPlayerId = p->getId(); mapPlayers.erase(p->getId()); delete p; strcpy(serverMsg.buffer+4, "You have successfully logged out."); } serverMsg.type = MSG_TYPE_LOGOUT; msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_CHAT: { cout << "Got a chat message" << endl; serverMsg.type = MSG_TYPE_CHAT; Player *p = findPlayerByAddr(mapPlayers, from); if (p == NULL) { strcpy(serverMsg.buffer, "No player is logged in using this connection. This is either a bug, or you're trying to hack the server."); msgProcessor.sendMessage(&serverMsg, &from); } else { ostringstream oss; oss << p->name << ": " << clientMsg.buffer; strcpy(serverMsg.buffer, oss.str().c_str()); msgProcessor.broadcastMessage(serverMsg, mapPlayers); } break; } case MSG_TYPE_PLAYER_MOVE: { cout << "PLAYER_MOVE" << endl; unsigned int id; int x, y; memcpy(&id, clientMsg.buffer, 4); memcpy(&x, clientMsg.buffer+4, 4); memcpy(&y, clientMsg.buffer+8, 4); cout << "x: " << x << endl; cout << "y: " << y << endl; cout << "id: " << id << endl; Player* p = mapPlayers[id]; bool validMessage = false; if ( p->addr.sin_addr.s_addr == from.sin_addr.s_addr && p->addr.sin_port == from.sin_port ) { if (p->currentGame->startPlayerMovement(id, x, y)) { serverMsg.type = MSG_TYPE_PLAYER_MOVE; memcpy(serverMsg.buffer, &id, 4); memcpy(serverMsg.buffer+4, &p->target.x, 4); memcpy(serverMsg.buffer+8, &p->target.y, 4); msgProcessor.broadcastMessage(serverMsg, mapPlayers); validMessage = true; } else cout << "Bad terrain detected" << endl; } else cout << "Player id (" << id << ") doesn't match sender" << endl; if (!validMessage) msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_PICKUP_FLAG: { // may want to check the id matches the sender, just like for PLAYER_NOVE cout << "PICKUP_FLAG" << endl; unsigned int id; memcpy(&id, clientMsg.buffer, 4); cout << "id: " << id << endl; Player* p = mapPlayers[id]; unsigned int objectId = p->currentGame->processFlagPickupRequest(p); if (objectId >= 0) { map players = p->currentGame->getPlayers(); serverMsg.type = MSG_TYPE_REMOVE_OBJECT; memcpy(serverMsg.buffer, &objectId, 4); msgProcessor.broadcastMessage(serverMsg, players); serverMsg.type = MSG_TYPE_PLAYER; p->serialize(serverMsg.buffer); msgProcessor.broadcastMessage(serverMsg, players); } break; } case MSG_TYPE_DROP_FLAG: { // may want to check the id matches the sender, just like for PLAYER_NOVE cout << "DROP_FLAG" << endl; unsigned int id; memcpy(&id, clientMsg.buffer, 4); cout << "id: " << id << endl; Player* p = mapPlayers[id]; WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE; if (p->hasBlueFlag) flagType = WorldMap::OBJECT_BLUE_FLAG; else if (p->hasRedFlag) flagType = WorldMap::OBJECT_RED_FLAG; map players = p->currentGame->getPlayers(); p->currentGame->addObjectToMap(flagType, p->pos.x, p->pos.y); p->hasBlueFlag = false; p->hasRedFlag = false; serverMsg.type = MSG_TYPE_PLAYER; p->serialize(serverMsg.buffer); msgProcessor.broadcastMessage(serverMsg, players); break; } case MSG_TYPE_ATTACK: { cout << "Received a START_ATTACK message" << endl; unsigned int id, targetId; memcpy(&id, clientMsg.buffer, 4); memcpy(&targetId, clientMsg.buffer+4, 4); // need to make sure the target is in the sender's game Player* p = mapPlayers[id]; p->setTargetPlayer(targetId); p->isChasing = true; map players = p->currentGame->getPlayers(); serverMsg.type = MSG_TYPE_ATTACK; memcpy(serverMsg.buffer, &id, 4); memcpy(serverMsg.buffer+4, &targetId, 4); msgProcessor.broadcastMessage(serverMsg, players); break; } case MSG_TYPE_CREATE_GAME: { cout << "Received a CREATE_GAME message" << endl; string gameName(clientMsg.buffer); cout << "Game name: " << gameName << endl; // check if this game already exists if (mapGames.find(gameName) != mapGames.end()) { cout << "Error: Game already exists" << endl; serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE; }else { Game* g = new Game(gameName, "../data/map.txt", &msgProcessor); mapGames[gameName] = g; // add flag objects to the map WorldMap* m = g->getMap(); m->createObjectsFromStructures(); serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS; strcpy(serverMsg.buffer, gameName.c_str()); } msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_JOIN_GAME: { cout << "Received a JOIN_GAME message" << endl; string gameName(clientMsg.buffer); cout << "Game name: " << gameName << endl; // check if this game already exists if (mapGames.find(gameName) == mapGames.end()) { cout << "Error: Game does not exist" << endl; serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE; }else { Game* g = mapGames[gameName]; map& players = g->getPlayers(); Player* p = findPlayerByAddr(mapPlayers, from); if (players.find(p->getId()) != players.end()) { cout << "Player " << p->name << " trying to join a game he's already in" << endl; serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE; }else { serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS; strcpy(serverMsg.buffer, gameName.c_str()); } } msgProcessor.sendMessage(&serverMsg, &from); break; } case MSG_TYPE_LEAVE_GAME: { cout << "Received a LEAVE_GAME message" << endl; Player* p = findPlayerByAddr(mapPlayers, from); Game* g = p->currentGame; if (g == NULL) { cout << "Player " << p->name << " is trying to leave a game, but is not currently in a game." << endl; /// should send a response back, maybe a new message type is needed // not sure what to do here }else { cout << "Game name: " << g->getName() << endl; if (!p->isDead) { WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE; if (p->hasBlueFlag) flagType = WorldMap::OBJECT_BLUE_FLAG; else if (p->hasRedFlag) flagType = WorldMap::OBJECT_RED_FLAG; if (flagType != WorldMap::OBJECT_NONE) g->addObjectToMap(flagType, p->pos.x, p->pos.y); } p->currentGame = NULL; g->removePlayer(p->getId()); unsigned int playerId = p->getId(); serverMsg.type = MSG_TYPE_LEAVE_GAME; memcpy(serverMsg.buffer, &playerId, 4); strcpy(serverMsg.buffer+4, g->getName().c_str()); msgProcessor.broadcastMessage(serverMsg, g->getPlayers()); int numPlayers = g->getNumPlayers(); serverMsg.type = MSG_TYPE_GAME_INFO; memcpy(serverMsg.buffer, &numPlayers, 4); strcpy(serverMsg.buffer+4, g->getName().c_str()); msgProcessor.broadcastMessage(serverMsg, mapPlayers); // if there are no more players in the game, remove it if (numPlayers == 0) { mapGames.erase(g->getName()); delete g; } } break; } case MSG_TYPE_JOIN_GAME_ACK: { cout << "Received a JOIN_GAME_ACK message" << endl; string gameName(clientMsg.buffer); cout << "Game name: " << gameName << endl; // check if this game already exists if (mapGames.find(gameName) == mapGames.end()) { serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE; msgProcessor.sendMessage(&serverMsg, &from); } Game* g = mapGames[gameName]; Player* p = findPlayerByAddr(mapPlayers, from); p->team = rand() % 2; // choose a random team (either 0 or 1) p->currentGame = g; // tell the new player about all map objects // (currently just the flags) serverMsg.type = MSG_TYPE_OBJECT; vector* vctObjects = g->getMap()->getObjects(); vector::iterator itObjects; cout << "sending items" << endl; for (itObjects = vctObjects->begin(); itObjects != vctObjects->end(); itObjects++) { itObjects->serialize(serverMsg.buffer); cout << "sending item id " << itObjects->id << endl; msgProcessor.sendMessage(&serverMsg, &from); } // send the current score serverMsg.type = MSG_TYPE_SCORE; unsigned int blueScore = g->getBlueScore(); unsigned int redScore = g->getRedScore(); memcpy(serverMsg.buffer, &blueScore, 4); memcpy(serverMsg.buffer+4, &redScore, 4); msgProcessor.sendMessage(&serverMsg, &from); // send info to other players serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME; p->serialize(serverMsg.buffer); cout << "Should be broadcasting the message" << endl; msgProcessor.broadcastMessage(serverMsg, g->getPlayers()); g->addPlayer(p); // tell the new player about all the players in the game (including himself) cout << "Sending other players to new player" << endl; serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME; map& allPlayers = g->getPlayers(); map::iterator it; for (it = allPlayers.begin(); it != allPlayers.end(); it++) { it->second->serialize(serverMsg.buffer); cout << "sending info about " << it->second->name << endl; cout << "sending id " << it->second->getId() << endl; msgProcessor.sendMessage(&serverMsg, &from); } int numPlayers = g->getNumPlayers(); serverMsg.type = MSG_TYPE_GAME_INFO; memcpy(serverMsg.buffer, &numPlayers, 4); strcpy(serverMsg.buffer+4, gameName.c_str()); msgProcessor.broadcastMessage(serverMsg, mapPlayers); break; } default: { // probably want to log the error rather than sending a chat message, // especially since chat isn't currently visible on all screens serverMsg.type = MSG_TYPE_CHAT; strcpy(serverMsg.buffer, "Server error occured. Report this please."); break; } } } void updateUnusedPlayerId(unsigned int& id, map& mapPlayers) { while (mapPlayers.find(id) != mapPlayers.end()) id++; } Player *findPlayerByName(map &m, string name) { map::iterator it; for (it = m.begin(); it != m.end(); it++) { if ( it->second->name.compare(name) == 0 ) return it->second; } return NULL; } Player *findPlayerByAddr(map &m, const sockaddr_in &addr) { map::iterator it; for (it = m.begin(); it != m.end(); it++) { if ( it->second->addr.sin_addr.s_addr == addr.sin_addr.s_addr && it->second->addr.sin_port == addr.sin_port ) return it->second; } return NULL; } void quit(int sig) { done = true; }