[1502] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Oliver Scheuss, (C) 2007 |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | // |
---|
| 30 | // C++ Implementation: Server |
---|
| 31 | // |
---|
| 32 | // Description: |
---|
| 33 | // |
---|
| 34 | // |
---|
| 35 | // Author: Oliver Scheuss, (C) 2007 |
---|
| 36 | // |
---|
| 37 | // Copyright: See COPYING file that comes with this distribution |
---|
| 38 | // |
---|
| 39 | // |
---|
| 40 | |
---|
| 41 | #include "Server.h" |
---|
| 42 | |
---|
| 43 | #include <iostream> |
---|
[1755] | 44 | #include <cassert> |
---|
[1502] | 45 | |
---|
| 46 | |
---|
| 47 | #include "ConnectionManager.h" |
---|
[1939] | 48 | #include "ClientConnectionListener.h" |
---|
[1735] | 49 | #include "GamestateManager.h" |
---|
[1502] | 50 | #include "ClientInformation.h" |
---|
| 51 | #include "util/Sleep.h" |
---|
[1534] | 52 | #include "core/ConsoleCommand.h" |
---|
[1752] | 53 | #include "core/CoreIncludes.h" |
---|
[1747] | 54 | #include "core/Iterator.h" |
---|
[1735] | 55 | #include "packet/Chat.h" |
---|
| 56 | #include "packet/Packet.h" |
---|
| 57 | #include "packet/Welcome.h" |
---|
[1907] | 58 | #include "packet/DeleteObjects.h" |
---|
[1751] | 59 | #include <util/Convert.h> |
---|
[1502] | 60 | |
---|
| 61 | namespace network |
---|
| 62 | { |
---|
[1785] | 63 | const int MAX_FAILURES = 20; |
---|
| 64 | const int NETWORK_FREQUENCY = 30; |
---|
[1747] | 65 | |
---|
[1502] | 66 | /** |
---|
| 67 | * Constructor for default values (bindaddress is set to ENET_HOST_ANY |
---|
| 68 | * |
---|
| 69 | */ |
---|
| 70 | Server::Server() { |
---|
| 71 | timeSinceLastUpdate_=0; |
---|
[1735] | 72 | connection = new ConnectionManager(); |
---|
| 73 | gamestates_ = new GamestateManager(); |
---|
[1502] | 74 | } |
---|
[1747] | 75 | |
---|
[1502] | 76 | Server::Server(int port){ |
---|
| 77 | timeSinceLastUpdate_=0; |
---|
[1735] | 78 | connection = new ConnectionManager(port); |
---|
| 79 | gamestates_ = new GamestateManager(); |
---|
[1502] | 80 | } |
---|
| 81 | |
---|
| 82 | /** |
---|
| 83 | * Constructor |
---|
| 84 | * @param port Port to listen on |
---|
| 85 | * @param bindAddress Address to listen on |
---|
| 86 | */ |
---|
| 87 | Server::Server(int port, std::string bindAddress) { |
---|
| 88 | timeSinceLastUpdate_=0; |
---|
[1735] | 89 | connection = new ConnectionManager(port, bindAddress); |
---|
| 90 | gamestates_ = new GamestateManager(); |
---|
[1502] | 91 | } |
---|
| 92 | |
---|
| 93 | /** |
---|
| 94 | * Constructor |
---|
| 95 | * @param port Port to listen on |
---|
| 96 | * @param bindAddress Address to listen on |
---|
| 97 | */ |
---|
| 98 | Server::Server(int port, const char *bindAddress) { |
---|
| 99 | timeSinceLastUpdate_=0; |
---|
[1735] | 100 | connection = new ConnectionManager(port, bindAddress); |
---|
| 101 | gamestates_ = new GamestateManager(); |
---|
[1502] | 102 | } |
---|
[1916] | 103 | |
---|
[1907] | 104 | /** |
---|
| 105 | * @brief Destructor |
---|
| 106 | */ |
---|
| 107 | Server::~Server(){ |
---|
| 108 | if(connection) |
---|
| 109 | delete connection; |
---|
| 110 | if(gamestates_) |
---|
| 111 | delete gamestates_; |
---|
| 112 | } |
---|
[1502] | 113 | |
---|
| 114 | /** |
---|
| 115 | * This function opens the server by creating the listener thread |
---|
| 116 | */ |
---|
| 117 | void Server::open() { |
---|
| 118 | connection->createListener(); |
---|
| 119 | return; |
---|
| 120 | } |
---|
| 121 | |
---|
| 122 | /** |
---|
| 123 | * This function closes the server |
---|
| 124 | */ |
---|
| 125 | void Server::close() { |
---|
| 126 | connection->quitListener(); |
---|
| 127 | return; |
---|
| 128 | } |
---|
| 129 | |
---|
[1907] | 130 | bool Server::processChat(std::string message, unsigned int playerID){ |
---|
[1735] | 131 | ClientInformation *temp = ClientInformation::getBegin(); |
---|
[1907] | 132 | packet::Chat *chat; |
---|
[1735] | 133 | while(temp){ |
---|
[1907] | 134 | chat = new packet::Chat(message, playerID); |
---|
[1735] | 135 | chat->setClientID(temp->getID()); |
---|
| 136 | if(!chat->send()) |
---|
| 137 | COUT(3) << "could not send Chat message to client ID: " << temp->getID() << std::endl; |
---|
[1907] | 138 | temp = temp->next(); |
---|
[1735] | 139 | } |
---|
[1907] | 140 | COUT(1) << "Player " << playerID << ": " << message << std::endl; |
---|
| 141 | return true; |
---|
[1502] | 142 | } |
---|
| 143 | |
---|
| 144 | |
---|
| 145 | /** |
---|
| 146 | * Run this function once every tick |
---|
| 147 | * calls processQueue and updateGamestate |
---|
| 148 | * @param time time since last tick |
---|
| 149 | */ |
---|
| 150 | void Server::tick(float time) { |
---|
| 151 | processQueue(); |
---|
| 152 | //this steers our network frequency |
---|
| 153 | timeSinceLastUpdate_+=time; |
---|
| 154 | if(timeSinceLastUpdate_>=(1./NETWORK_FREQUENCY)){ |
---|
[1548] | 155 | timeSinceLastUpdate_=(float)((int)(timeSinceLastUpdate_*NETWORK_FREQUENCY))/timeSinceLastUpdate_; |
---|
[1735] | 156 | gamestates_->processGamestates(); |
---|
[1502] | 157 | updateGamestate(); |
---|
| 158 | } |
---|
| 159 | } |
---|
[1747] | 160 | |
---|
[1735] | 161 | bool Server::queuePacket(ENetPacket *packet, int clientID){ |
---|
| 162 | return connection->addPacket(packet, clientID); |
---|
| 163 | } |
---|
[1502] | 164 | |
---|
| 165 | /** |
---|
| 166 | * processes all the packets waiting in the queue |
---|
| 167 | */ |
---|
| 168 | void Server::processQueue() { |
---|
| 169 | ENetEvent *event; |
---|
| 170 | while(!connection->queueEmpty()){ |
---|
| 171 | //std::cout << "Client " << clientID << " sent: " << std::endl; |
---|
| 172 | //clientID here is a reference to grab clientID from ClientInformation |
---|
| 173 | event = connection->getEvent(); |
---|
| 174 | if(!event) |
---|
| 175 | continue; |
---|
| 176 | assert(event->type != ENET_EVENT_TYPE_NONE); |
---|
| 177 | switch( event->type ) { |
---|
| 178 | case ENET_EVENT_TYPE_CONNECT: |
---|
| 179 | COUT(3) << "processing event_Type_connect" << std::endl; |
---|
| 180 | addClient(event); |
---|
| 181 | break; |
---|
| 182 | case ENET_EVENT_TYPE_DISCONNECT: |
---|
[1735] | 183 | if(ClientInformation::findClient(&event->peer->address)) |
---|
[1502] | 184 | disconnectClient(event); |
---|
| 185 | break; |
---|
| 186 | case ENET_EVENT_TYPE_RECEIVE: |
---|
[1735] | 187 | if(!processPacket(event->packet, event->peer)) |
---|
| 188 | COUT(3) << "processing incoming packet failed" << std::endl; |
---|
[1502] | 189 | break; |
---|
[1556] | 190 | default: |
---|
| 191 | break; |
---|
[1502] | 192 | } |
---|
| 193 | delete event; |
---|
| 194 | //if statement to catch case that packetbuffer is empty |
---|
| 195 | } |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | /** |
---|
| 199 | * takes a new snapshot of the gamestate and sends it to the clients |
---|
| 200 | */ |
---|
| 201 | void Server::updateGamestate() { |
---|
[1735] | 202 | gamestates_->update(); |
---|
[1534] | 203 | COUT(5) << "Server: one gamestate update complete, goig to sendGameState" << std::endl; |
---|
[1502] | 204 | //std::cout << "updated gamestate, sending it" << std::endl; |
---|
| 205 | //if(clients->getGamestateID()!=GAMESTATEID_INITIAL) |
---|
| 206 | sendGameState(); |
---|
[1907] | 207 | sendObjectDeletes(); |
---|
[1534] | 208 | COUT(5) << "Server: one sendGameState turn complete, repeat in next tick" << std::endl; |
---|
[1502] | 209 | //std::cout << "sent gamestate" << std::endl; |
---|
| 210 | } |
---|
| 211 | |
---|
[1735] | 212 | bool Server::processPacket( ENetPacket *packet, ENetPeer *peer ){ |
---|
| 213 | packet::Packet *p = packet::Packet::createPacket(packet, peer); |
---|
| 214 | return p->process(); |
---|
| 215 | } |
---|
[1747] | 216 | |
---|
[1502] | 217 | /** |
---|
| 218 | * sends the gamestate |
---|
| 219 | */ |
---|
| 220 | bool Server::sendGameState() { |
---|
| 221 | COUT(5) << "Server: starting function sendGameState" << std::endl; |
---|
[1735] | 222 | ClientInformation *temp = ClientInformation::getBegin(); |
---|
[1502] | 223 | bool added=false; |
---|
| 224 | while(temp != NULL){ |
---|
| 225 | if( !(temp->getSynched()) ){ |
---|
| 226 | COUT(5) << "Server: not sending gamestate" << std::endl; |
---|
| 227 | temp=temp->next(); |
---|
[1735] | 228 | if(!temp) |
---|
| 229 | break; |
---|
[1502] | 230 | //think this works without continue |
---|
| 231 | continue; |
---|
| 232 | } |
---|
[1534] | 233 | COUT(4) << "client id: " << temp->getID() << " RTT: " << temp->getRTT() << " loss: " << temp->getPacketLoss() << std::endl; |
---|
[1502] | 234 | COUT(5) << "Server: doing gamestate gamestate preparation" << std::endl; |
---|
| 235 | int gid = temp->getGamestateID(); //get gamestate id |
---|
| 236 | int cid = temp->getID(); //get client id |
---|
| 237 | COUT(5) << "Server: got acked (gamestate) ID from clientlist: " << gid << std::endl; |
---|
[1735] | 238 | packet::Gamestate *gs = gamestates_->popGameState(cid); |
---|
[1502] | 239 | if(gs==NULL){ |
---|
| 240 | COUT(2) << "Server: could not generate gamestate (NULL from compress)" << std::endl; |
---|
[1944] | 241 | temp = temp->next(); |
---|
[1502] | 242 | continue; |
---|
| 243 | } |
---|
| 244 | //std::cout << "adding gamestate" << std::endl; |
---|
[1735] | 245 | gs->setClientID(cid); |
---|
| 246 | if ( !gs->send() ){ |
---|
[1747] | 247 | COUT(3) << "Server: packet with client id (cid): " << cid << " not sended: " << temp->getFailures() << std::endl; |
---|
[1502] | 248 | temp->addFailure(); |
---|
| 249 | }else |
---|
| 250 | temp->resetFailures(); |
---|
| 251 | added=true; |
---|
| 252 | temp=temp->next(); |
---|
[1735] | 253 | // gs gets automatically deleted by enet callback |
---|
[1502] | 254 | } |
---|
| 255 | return true; |
---|
| 256 | } |
---|
[1747] | 257 | |
---|
[1907] | 258 | bool Server::sendObjectDeletes(){ |
---|
| 259 | ClientInformation *temp = ClientInformation::getBegin(); |
---|
| 260 | packet::DeleteObjects *del = new packet::DeleteObjects(); |
---|
| 261 | if(!del->fetchIDs()) |
---|
| 262 | return true; //everything ok (no deletes this tick) |
---|
| 263 | // COUT(3) << "sending DeleteObjects" << std::endl; |
---|
| 264 | while(temp != NULL){ |
---|
| 265 | if( !(temp->getSynched()) ){ |
---|
| 266 | COUT(5) << "Server: not sending gamestate" << std::endl; |
---|
| 267 | temp=temp->next(); |
---|
| 268 | continue; |
---|
| 269 | } |
---|
| 270 | int cid = temp->getID(); //get client id |
---|
| 271 | packet::DeleteObjects *cd = new packet::DeleteObjects(*del); |
---|
| 272 | assert(cd); |
---|
| 273 | cd->setClientID(cid); |
---|
| 274 | if ( !cd->send() ) |
---|
| 275 | COUT(3) << "Server: packet with client id (cid): " << cid << " not sended: " << temp->getFailures() << std::endl; |
---|
| 276 | temp=temp->next(); |
---|
| 277 | // gs gets automatically deleted by enet callback |
---|
| 278 | } |
---|
| 279 | return true; |
---|
| 280 | } |
---|
[1747] | 281 | |
---|
[1907] | 282 | |
---|
[1502] | 283 | bool Server::addClient(ENetEvent *event){ |
---|
[1952] | 284 | static unsigned int newid=1; |
---|
[1942] | 285 | |
---|
[1952] | 286 | COUT(2) << "Server: adding client" << std::endl; |
---|
[1735] | 287 | ClientInformation *temp = ClientInformation::insertBack(new ClientInformation); |
---|
[1502] | 288 | if(!temp){ |
---|
| 289 | COUT(2) << "Server: could not add client" << std::endl; |
---|
| 290 | return false; |
---|
| 291 | } |
---|
[1952] | 292 | /*if(temp==ClientInformation::getBegin()) { //not good if you use anything else than insertBack |
---|
[1939] | 293 | newid=1; |
---|
[1502] | 294 | } |
---|
| 295 | else |
---|
[1952] | 296 | newid=temp->prev()->getID()+1;*/ |
---|
[1939] | 297 | temp->setID(newid); |
---|
[1502] | 298 | temp->setPeer(event->peer); |
---|
[1942] | 299 | |
---|
[1939] | 300 | // inform all the listeners |
---|
| 301 | orxonox::ObjectList<ClientConnectionListener>::iterator listener = orxonox::ObjectList<ClientConnectionListener>::begin(); |
---|
| 302 | while(listener){ |
---|
| 303 | listener->clientConnected(newid); |
---|
[1941] | 304 | listener++; |
---|
[1939] | 305 | } |
---|
[1952] | 306 | |
---|
| 307 | newid++; |
---|
[1942] | 308 | |
---|
[1502] | 309 | COUT(3) << "Server: added client id: " << temp->getID() << std::endl; |
---|
[1942] | 310 | return createClient(temp->getID()); |
---|
[1939] | 311 | } |
---|
[1747] | 312 | |
---|
[1502] | 313 | bool Server::createClient(int clientID){ |
---|
[1735] | 314 | ClientInformation *temp = ClientInformation::findClient(clientID); |
---|
[1502] | 315 | if(!temp){ |
---|
| 316 | COUT(2) << "Conn.Man. could not create client with id: " << clientID << std::endl; |
---|
| 317 | return false; |
---|
| 318 | } |
---|
| 319 | COUT(4) << "Con.Man: creating client id: " << temp->getID() << std::endl; |
---|
| 320 | connection->syncClassid(temp->getID()); |
---|
| 321 | temp->setSynched(true); |
---|
| 322 | COUT(3) << "sending welcome" << std::endl; |
---|
[1735] | 323 | packet::Welcome *w = new packet::Welcome(temp->getID(), temp->getShipID()); |
---|
| 324 | w->setClientID(temp->getID()); |
---|
[1907] | 325 | bool b = w->send(); |
---|
| 326 | assert(b); |
---|
[1751] | 327 | packet::Gamestate *g = new packet::Gamestate(); |
---|
| 328 | g->setClientID(temp->getID()); |
---|
[1907] | 329 | b = g->collectData(0); |
---|
[1944] | 330 | if(!b) |
---|
| 331 | return false; //no data for the client |
---|
[1907] | 332 | b = g->compressData(); |
---|
| 333 | assert(b); |
---|
| 334 | b = g->send(); |
---|
| 335 | assert(b); |
---|
[1502] | 336 | return true; |
---|
| 337 | } |
---|
[1747] | 338 | |
---|
[1502] | 339 | bool Server::disconnectClient(ENetEvent *event){ |
---|
| 340 | COUT(4) << "removing client from list" << std::endl; |
---|
| 341 | //return removeClient(head_->findClient(&(peer->address))->getID()); |
---|
[1747] | 342 | |
---|
[1502] | 343 | //boost::recursive_mutex::scoped_lock lock(head_->mutex_); |
---|
[1735] | 344 | ClientInformation *client = ClientInformation::findClient(&event->peer->address); |
---|
[1502] | 345 | if(!client) |
---|
| 346 | return false; |
---|
[1751] | 347 | gamestates_->removeClient(client); |
---|
[1939] | 348 | |
---|
| 349 | // inform all the listeners |
---|
| 350 | orxonox::ObjectList<ClientConnectionListener>::iterator listener = orxonox::ObjectList<ClientConnectionListener>::begin(); |
---|
| 351 | while(listener){ |
---|
| 352 | listener->clientDisconnected(client->getID()); |
---|
[1942] | 353 | listener++; |
---|
[1939] | 354 | } |
---|
| 355 | |
---|
[1916] | 356 | return ClientInformation::removeClient(event->peer); |
---|
[1502] | 357 | } |
---|
| 358 | |
---|
| 359 | void Server::disconnectClient(int clientID){ |
---|
[1735] | 360 | ClientInformation *client = ClientInformation::findClient(clientID); |
---|
[1502] | 361 | if(client) |
---|
| 362 | disconnectClient(client); |
---|
| 363 | } |
---|
| 364 | void Server::disconnectClient( ClientInformation *client){ |
---|
| 365 | connection->disconnectClient(client); |
---|
[1735] | 366 | gamestates_->removeClient(client); |
---|
[1502] | 367 | } |
---|
[1916] | 368 | |
---|
[1907] | 369 | bool Server::chat(std::string message){ |
---|
| 370 | ClientInformation *temp = ClientInformation::getBegin(); |
---|
| 371 | packet::Chat *chat; |
---|
| 372 | while(temp){ |
---|
| 373 | chat = new packet::Chat(message, Host::getPlayerID()); |
---|
| 374 | chat->setClientID(temp->getID()); |
---|
| 375 | if(!chat->send()) |
---|
| 376 | COUT(3) << "could not send Chat message to client ID: " << temp->getID() << std::endl; |
---|
| 377 | temp = temp->next(); |
---|
| 378 | } |
---|
| 379 | COUT(1) << "Player " << Host::getPlayerID() << ": " << message << std::endl; |
---|
| 380 | return true; |
---|
| 381 | } |
---|
[1747] | 382 | |
---|
[1502] | 383 | } |
---|