source: network-game/server/server.cpp@ d05c484

Last change on this file since d05c484 was d05c484, checked in by dportnoy <dmp1488@…>, 11 years ago

Some game-specific functions moved from server.cpp to the Game class and a function moved to the MessageProcessor class

  • Property mode set to 100644
File size: 25.8 KB
Line 
1#include <cstdlib>
2#include <cstdio>
3#include <unistd.h>
4#include <string>
5#include <iostream>
6#include <sstream>
7#include <fstream>
8#include <cstring>
9#include <cmath>
10
11#include <vector>
12#include <map>
13
14#include <csignal>
15
16#include <sys/time.h>
17
18#include <sys/socket.h>
19#include <netdb.h>
20#include <netinet/in.h>
21#include <arpa/inet.h>
22
23#include <crypt.h>
24
25/*
26#include <openssl/bio.h>
27#include <openssl/ssl.h>
28#include <openssl/err.h>
29*/
30
31#include "../common/Compiler.h"
32#include "../common/Common.h"
33#include "../common/MessageProcessor.h"
34#include "../common/WorldMap.h"
35#include "../common/Player.h"
36#include "../common/Projectile.h"
37#include "../common/Game.h"
38#include "../common/GameSummary.h"
39
40#include "DataAccess.h"
41
42using namespace std;
43
44// from used to be const. Removed that so I could take a reference
45// and use it to send messages
46void processMessage(const NETWORK_MSG& clientMsg, struct sockaddr_in& from, MessageProcessor& msgProcessor, map<unsigned int, Player*>& mapPlayers, map<string, Game*>& mapGames, unsigned int& unusedPlayerId);
47
48void updateUnusedPlayerId(unsigned int& id, map<unsigned int, Player*>& mapPlayers);
49Player *findPlayerByName(map<unsigned int, Player*> &m, string name);
50Player *findPlayerByAddr(map<unsigned int, Player*> &m, const sockaddr_in &addr);
51
52void quit(int sig);
53
54bool done;
55
56int main(int argc, char *argv[])
57{
58 int sock, length;
59 struct sockaddr_in server;
60 struct sockaddr_in from; // info of client sending the message
61 NETWORK_MSG clientMsg, serverMsg;
62 MessageProcessor msgProcessor;
63 map<unsigned int, Player*> mapPlayers;
64 map<unsigned int, Projectile> mapProjectiles;
65 map<string, Game*> mapGames;
66 unsigned int unusedPlayerId = 1;
67 ofstream outputLog;
68
69 done = false;
70
71 signal(SIGINT, quit);
72
73 //SSL_load_error_strings();
74 //ERR_load_BIO_strings();
75 //OpenSSL_add_all_algorithms();
76
77 if (argc != 2)
78 {
79 cerr << "ERROR, expected server [domain] [port]" << endl;
80 exit(1);
81 }
82
83 outputLog.open("server.log", ios::app);
84 outputLog << "Started server on " << getCurrentDateTimeString() << endl;
85
86 sock = socket(AF_INET, SOCK_DGRAM, 0);
87 if (sock < 0)
88 error("Opening socket");
89 length = sizeof(server);
90 bzero(&server,length);
91 server.sin_family=AF_INET;
92 server.sin_port=htons(atoi(argv[1]));
93 server.sin_addr.s_addr=INADDR_ANY;
94 if ( bind(sock, (struct sockaddr *)&server, length) < 0 )
95 error("binding");
96
97 set_nonblock(sock);
98
99 msgProcessor = MessageProcessor(sock, &outputLog);
100
101 timespec ts;
102 int timeLastUpdated = 0, curTime = 0;
103 while (!done)
104 {
105 usleep(5000);
106
107 clock_gettime(CLOCK_REALTIME, &ts);
108 // make the number smaller so millis can fit in an int
109 ts.tv_sec -= 1368000000;
110 curTime = ts.tv_sec*1000 + ts.tv_nsec/1000000;
111
112 if (timeLastUpdated == 0 || (curTime-timeLastUpdated) >= 50)
113 {
114 timeLastUpdated = curTime;
115
116 msgProcessor.cleanAckedMessages();
117 msgProcessor.resendUnackedMessages();
118
119 map<unsigned int, Player*>::iterator it;
120
121 cout << "Updating player targets and respawning dead players" << endl;
122
123 // set targets for all chasing players (or make them attack if they're close enough)
124 // this should be moved into the games loop
125 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
126 {
127 Player* p = it->second;
128
129 // check if it's time to revive dead players
130 if (p->isDead)
131 {
132 cout << "Player is dead" << endl;
133
134 if (getCurrentMillis() - p->timeDied >= 10000)
135 {
136 p->isDead = false;
137
138 POSITION spawnPos;
139
140 switch (p->team)
141 {
142 case 0:// blue team
143 spawnPos = p->currentGame->getMap()->getStructureLocation(WorldMap::STRUCTURE_BLUE_FLAG);
144 break;
145 case 1:// red team
146 spawnPos = p->currentGame->getMap()->getStructureLocation(WorldMap::STRUCTURE_RED_FLAG);
147 break;
148 default:
149 // should never go here
150 cout << "Error: Invalid team" << endl;
151 break;
152 }
153
154 // spawn the player to the right of their flag location
155 spawnPos.x = (spawnPos.x+1) * 25 + 12;
156 spawnPos.y = spawnPos.y * 25 + 12;
157
158 p->pos = spawnPos.toFloat();
159 p->target = spawnPos;
160 p->health = p->maxHealth;
161
162 serverMsg.type = MSG_TYPE_PLAYER;
163 p->serialize(serverMsg.buffer);
164
165 msgProcessor.broadcastMessage(serverMsg, p->currentGame->getPlayers());
166 }
167
168 continue;
169 }
170
171 if (p->currentGame != NULL) {
172 map<unsigned int, Player*> playersInGame = p->currentGame->getPlayers();
173 if (p->updateTarget(playersInGame))
174 {
175 serverMsg.type = MSG_TYPE_PLAYER;
176 p->serialize(serverMsg.buffer);
177 msgProcessor.broadcastMessage(serverMsg, playersInGame);
178 }
179 }
180 }
181
182 cout << "Processing players in a game" << endl;
183
184 // process players currently in a game
185 map<string, Game*>::iterator itGames;
186 Game* game = NULL;
187
188 for (itGames = mapGames.begin(); itGames != mapGames.end();) {
189 game = itGames->second;
190 if (game->handleGameEvents()) {
191 // send a GAME_INFO message with 0 players to force clients to delete the game
192 int numPlayers = 0;
193 serverMsg.type = MSG_TYPE_GAME_INFO;
194 memcpy(serverMsg.buffer, &numPlayers, 4);
195 strcpy(serverMsg.buffer+4, game->getName().c_str());
196 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
197
198 delete itGames->second;
199 mapGames.erase(itGames++);
200 }else
201 itGames++;
202 }
203
204 cout << "Processing projectiles" << endl;
205
206 // move all projectiles
207 // see if this can be moved inside the game class
208 // this method can be moved when I add a MessageProcessor to the Game class
209 map<unsigned int, Projectile>::iterator itProj;
210 for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++) {
211 game = itGames->second;
212 for (itProj = game->getProjectiles().begin(); itProj != game->getProjectiles().end(); itProj++)
213 {
214 cout << "About to call projectile move" << endl;
215 if (itProj->second.move(game->getPlayers()))
216 {
217 // send a REMOVE_PROJECTILE message
218 cout << "send a REMOVE_PROJECTILE message" << endl;
219 serverMsg.type = MSG_TYPE_REMOVE_PROJECTILE;
220 memcpy(serverMsg.buffer, &itProj->second.id, 4);
221 game->removeProjectile(itProj->second.id);
222 msgProcessor.broadcastMessage(serverMsg, game->getPlayers());
223
224 Player* target = game->getPlayers()[itProj->second.target];
225 game->dealDamageToPlayer(target, itProj->second.damage);
226 }
227 }
228 }
229 }
230
231 if (msgProcessor.receiveMessage(&clientMsg, &from) >= 0)
232 {
233 processMessage(clientMsg, from, msgProcessor, mapPlayers, mapGames, unusedPlayerId);
234
235 cout << "Finished processing the message" << endl;
236 }
237 }
238
239 outputLog << "Stopped server on " << getCurrentDateTimeString() << endl;
240 outputLog.close();
241
242 // delete all games
243 map<string, Game*>::iterator itGames;
244 for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++)
245 {
246 delete itGames->second;
247 }
248
249 map<unsigned int, Player*>::iterator itPlayers;
250 for (itPlayers = mapPlayers.begin(); itPlayers != mapPlayers.end(); itPlayers++)
251 {
252 delete itPlayers->second;
253 }
254
255 return 0;
256}
257
258void processMessage(const NETWORK_MSG &clientMsg, struct sockaddr_in &from, MessageProcessor &msgProcessor, map<unsigned int, Player*>& mapPlayers, map<string, Game*>& mapGames, unsigned int& unusedPlayerId)
259{
260 NETWORK_MSG serverMsg;
261 DataAccess da;
262
263 cout << "Inside processMessage" << endl;
264
265 cout << "Received message" << endl;
266 cout << "MSG: type: " << clientMsg.type << endl;
267 cout << "MSG contents: " << clientMsg.buffer << endl;
268
269 // Check that if an invalid message is sent, the client will correctly
270 // receive and display the response. Maybe make a special error msg type
271 switch(clientMsg.type)
272 {
273 case MSG_TYPE_REGISTER:
274 {
275 string username(clientMsg.buffer);
276 string password(strchr(clientMsg.buffer, '\0')+1);
277 Player::PlayerClass playerClass;
278
279 memcpy(&playerClass, clientMsg.buffer+username.length()+password.length()+2, 4);
280
281 cout << "username: " << username << endl;
282 cout << "password: " << password << endl;
283
284 bool validClass = false;
285
286 switch(playerClass) {
287 case Player::CLASS_WARRIOR:
288 case Player::CLASS_RANGER:
289 validClass = true;
290 break;
291 default:
292 validClass = false;
293 break;
294 }
295
296 serverMsg.type = MSG_TYPE_REGISTER;
297
298 if (validClass) {
299 int error = da.insertPlayer(username, password, playerClass);
300
301 if (error)
302 strcpy(serverMsg.buffer, "Registration failed. Please try again.");
303 else
304 strcpy(serverMsg.buffer, "Registration successful.");
305 }else
306 strcpy(serverMsg.buffer, "You didn't select a class");
307
308 msgProcessor.sendMessage(&serverMsg, &from);
309
310 break;
311 }
312 case MSG_TYPE_LOGIN:
313 {
314 cout << "Got login message" << endl;
315
316 string username(clientMsg.buffer);
317 string password(strchr(clientMsg.buffer, '\0')+1);
318
319 Player* p = da.getPlayer(username);
320
321 if (p == NULL || !da.verifyPassword(password, p->password))
322 {
323 strcpy(serverMsg.buffer, "Incorrect username or password");
324 if (p != NULL)
325 delete(p);
326 }
327 else if(findPlayerByName(mapPlayers, username) != NULL)
328 {
329 strcpy(serverMsg.buffer, "Player has already logged in.");
330 delete(p);
331 }
332 else
333 {
334 updateUnusedPlayerId(unusedPlayerId, mapPlayers);
335 p->id = unusedPlayerId;
336 cout << "new player id: " << p->id << endl;
337 p->setAddr(from);
338 p->currentGame = NULL;
339
340 // choose a random team (either 0 or 1)
341 p->team = rand() % 2;
342
343 serverMsg.type = MSG_TYPE_PLAYER;
344 // tell the new player about all the existing players
345 cout << "Sending other players to new player" << endl;
346
347 map<unsigned int, Player*>::iterator it;
348 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
349 {
350 it->second->serialize(serverMsg.buffer);
351
352 cout << "sending info about " << it->second->name << endl;
353 cout << "sending id " << it->second->id << endl;
354 msgProcessor.sendMessage(&serverMsg, &from);
355 }
356
357 // send info about existing games to new player
358 map<string, Game*>::iterator itGames;
359 Game* g;
360 int numPlayers;
361 serverMsg.type = MSG_TYPE_GAME_INFO;
362
363 for (itGames = mapGames.begin(); itGames != mapGames.end(); itGames++)
364 {
365 g = itGames->second;
366 numPlayers = g->getNumPlayers();
367 memcpy(serverMsg.buffer, &numPlayers, 4);
368 strcpy(serverMsg.buffer+4, g->getName().c_str());
369 msgProcessor.sendMessage(&serverMsg, &from);
370 }
371
372 serverMsg.type = MSG_TYPE_PLAYER;
373 p->serialize(serverMsg.buffer);
374 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
375
376 mapPlayers[unusedPlayerId] = p;
377 }
378
379 serverMsg.type = MSG_TYPE_LOGIN;
380 msgProcessor.sendMessage(&serverMsg, &from);
381
382 break;
383 }
384 case MSG_TYPE_LOGOUT:
385 {
386 string name(clientMsg.buffer);
387 cout << "Player logging out: " << name << endl;
388
389 Player *p = findPlayerByName(mapPlayers, name);
390
391 if (p == NULL)
392 {
393 strcpy(serverMsg.buffer+4, "That player is not logged in. This is either a bug, or you're trying to hack the server.");
394 cout << "Player not logged in" << endl;
395 }
396 else if ( p->addr.sin_addr.s_addr != from.sin_addr.s_addr ||
397 p->addr.sin_port != from.sin_port )
398 {
399 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.");
400 cout << "Player logged in using a different connection" << endl;
401 }
402 else
403 {
404 // broadcast to all players before deleting p from the map
405 serverMsg.type = MSG_TYPE_LOGOUT;
406 memcpy(serverMsg.buffer, &p->id, 4);
407
408 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
409
410 if (p->id < unusedPlayerId)
411 unusedPlayerId = p->id;
412
413 mapPlayers.erase(p->id);
414 delete p;
415
416 strcpy(serverMsg.buffer+4, "You have successfully logged out.");
417 }
418
419 serverMsg.type = MSG_TYPE_LOGOUT;
420 msgProcessor.sendMessage(&serverMsg, &from);
421
422 break;
423 }
424 case MSG_TYPE_CHAT:
425 {
426 cout << "Got a chat message" << endl;
427
428 serverMsg.type = MSG_TYPE_CHAT;
429
430 Player *p = findPlayerByAddr(mapPlayers, from);
431
432 if (p == NULL)
433 {
434 strcpy(serverMsg.buffer, "No player is logged in using this connection. This is either a bug, or you're trying to hack the server.");
435 msgProcessor.sendMessage(&serverMsg, &from);
436 }
437 else
438 {
439 ostringstream oss;
440 oss << p->name << ": " << clientMsg.buffer;
441
442 strcpy(serverMsg.buffer, oss.str().c_str());
443 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
444 }
445
446 break;
447 }
448 case MSG_TYPE_PLAYER_MOVE:
449 {
450 cout << "PLAYER_MOVE" << endl;
451
452 int id, x, y;
453
454 memcpy(&id, clientMsg.buffer, 4);
455 memcpy(&x, clientMsg.buffer+4, 4);
456 memcpy(&y, clientMsg.buffer+8, 4);
457
458 cout << "x: " << x << endl;
459 cout << "y: " << y << endl;
460 cout << "id: " << id << endl;
461
462 Player* p = mapPlayers[id];
463 bool validMessage = false;
464
465 if ( p->addr.sin_addr.s_addr == from.sin_addr.s_addr &&
466 p->addr.sin_port == from.sin_port )
467 {
468 if (p->currentGame->startPlayerMovement(id, x, y)) {
469 serverMsg.type = MSG_TYPE_PLAYER_MOVE;
470
471 memcpy(serverMsg.buffer, &id, 4);
472 memcpy(serverMsg.buffer+4, &p->target.x, 4);
473 memcpy(serverMsg.buffer+8, &p->target.y, 4);
474
475 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
476
477 validMessage = true;
478 }
479 else
480 cout << "Bad terrain detected" << endl;
481 }
482 else
483 cout << "Player id (" << id << ") doesn't match sender" << endl;
484
485 if (!validMessage)
486 msgProcessor.sendMessage(&serverMsg, &from);
487
488 break;
489 }
490 case MSG_TYPE_PICKUP_FLAG:
491 {
492 // may want to check the id matches the sender, just like for PLAYER_NOVE
493 cout << "PICKUP_FLAG" << endl;
494
495 int id;
496
497 memcpy(&id, clientMsg.buffer, 4);
498 cout << "id: " << id << endl;
499
500 Player* p = mapPlayers[id];
501 int objectId = p->currentGame->processFlagPickupRequest(p);
502
503 if (objectId >= 0) {
504 map<unsigned int, Player*> players = p->currentGame->getPlayers();
505
506 serverMsg.type = MSG_TYPE_REMOVE_OBJECT;
507 memcpy(serverMsg.buffer, &objectId, 4);
508 msgProcessor.broadcastMessage(serverMsg, players);
509
510 serverMsg.type = MSG_TYPE_PLAYER;
511 p->serialize(serverMsg.buffer);
512 msgProcessor.broadcastMessage(serverMsg, players);
513 }
514
515 break;
516 }
517 case MSG_TYPE_DROP_FLAG:
518 {
519 // may want to check the id matches the sender, just like for PLAYER_NOVE
520 cout << "DROP_FLAG" << endl;
521
522 int id;
523
524 memcpy(&id, clientMsg.buffer, 4);
525 cout << "id: " << id << endl;
526
527 Player* p = mapPlayers[id];
528
529 WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE;
530 if (p->hasBlueFlag)
531 flagType = WorldMap::OBJECT_BLUE_FLAG;
532 else if (p->hasRedFlag)
533 flagType = WorldMap::OBJECT_RED_FLAG;
534
535 map<unsigned int, Player*> players = p->currentGame->getPlayers();
536
537 p->currentGame->addObjectToMap(flagType, p->pos.x, p->pos.y);
538
539 p->hasBlueFlag = false;
540 p->hasRedFlag = false;
541
542 serverMsg.type = MSG_TYPE_PLAYER;
543 p->serialize(serverMsg.buffer);
544 msgProcessor.broadcastMessage(serverMsg, players);
545
546 break;
547 }
548 case MSG_TYPE_ATTACK:
549 {
550 cout << "Received a START_ATTACK message" << endl;
551
552 int id, targetId;
553
554 memcpy(&id, clientMsg.buffer, 4);
555 memcpy(&targetId, clientMsg.buffer+4, 4);
556
557 // need to make sure the target is in the sender's game
558
559 Player* p = mapPlayers[id];
560 p->targetPlayer = targetId;
561 p->isChasing = true;
562
563 map<unsigned int, Player*> players = p->currentGame->getPlayers();
564
565 serverMsg.type = MSG_TYPE_ATTACK;
566 memcpy(serverMsg.buffer, &id, 4);
567 memcpy(serverMsg.buffer+4, &targetId, 4);
568 msgProcessor.broadcastMessage(serverMsg, players);
569
570 break;
571 }
572 case MSG_TYPE_CREATE_GAME:
573 {
574 cout << "Received a CREATE_GAME message" << endl;
575
576 string gameName(clientMsg.buffer);
577 cout << "Game name: " << gameName << endl;
578
579 // check if this game already exists
580 if (mapGames.find(gameName) != mapGames.end()) {
581 cout << "Error: Game already exists" << endl;
582 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
583 }else {
584 Game* g = new Game(gameName, "../data/map.txt", &msgProcessor);
585 mapGames[gameName] = g;
586
587 // add flag objects to the map
588 WorldMap* m = g->getMap();
589 for (int y=0; y<m->height; y++) {
590 for (int x=0; x<m->width; x++) {
591 switch (m->getStructure(x, y)) {
592 case WorldMap::STRUCTURE_BLUE_FLAG:
593 m->addObject(WorldMap::OBJECT_BLUE_FLAG, x*25+12, y*25+12);
594 break;
595 case WorldMap::STRUCTURE_RED_FLAG:
596 m->addObject(WorldMap::OBJECT_RED_FLAG, x*25+12, y*25+12);
597 break;
598 case WorldMap::STRUCTURE_NONE:
599 break;
600 }
601 }
602 }
603
604 serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS;
605 strcpy(serverMsg.buffer, gameName.c_str());
606 }
607
608 msgProcessor.sendMessage(&serverMsg, &from);
609
610 break;
611 }
612 case MSG_TYPE_JOIN_GAME:
613 {
614 cout << "Received a JOIN_GAME message" << endl;
615
616 string gameName(clientMsg.buffer);
617 cout << "Game name: " << gameName << endl;
618
619 // check if this game already exists
620 if (mapGames.find(gameName) == mapGames.end()) {
621 cout << "Error: Game does not exist" << endl;
622 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
623 }else {
624 Game* g = mapGames[gameName];
625 map<unsigned int, Player*>& players = g->getPlayers();
626 Player* p = findPlayerByAddr(mapPlayers, from);
627
628 if (players.find(p->id) != players.end()) {
629 cout << "Player " << p->name << " trying to join a game he's already in" << endl;
630 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
631 }else {
632 serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS;
633 strcpy(serverMsg.buffer, gameName.c_str());
634 }
635 }
636
637 msgProcessor.sendMessage(&serverMsg, &from);
638
639 break;
640 }
641 case MSG_TYPE_LEAVE_GAME:
642 {
643 cout << "Received a LEAVE_GAME message" << endl;
644
645 Player* p = findPlayerByAddr(mapPlayers, from);
646 Game* g = p->currentGame;
647
648 if (g == NULL) {
649 cout << "Player " << p->name << " is trying to leave a game, but is not currently in a game." << endl;
650
651 /// should send a response back, maybe a new message type is needed
652 // not sure what to do here
653 }else {
654 cout << "Game name: " << g->getName() << endl;
655
656 if (!p->isDead) {
657 WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE;
658 if (p->hasBlueFlag)
659 flagType = WorldMap::OBJECT_BLUE_FLAG;
660 else if (p->hasRedFlag)
661 flagType = WorldMap::OBJECT_RED_FLAG;
662
663 if (flagType != WorldMap::OBJECT_NONE)
664 g->addObjectToMap(flagType, p->pos.x, p->pos.y);
665 }
666
667 p->currentGame = NULL;
668 g->removePlayer(p->id);
669
670 serverMsg.type = MSG_TYPE_LEAVE_GAME;
671 memcpy(serverMsg.buffer, &p->id, 4);
672 strcpy(serverMsg.buffer+4, g->getName().c_str());
673 msgProcessor.broadcastMessage(serverMsg, g->getPlayers());
674
675 int numPlayers = g->getNumPlayers();
676
677 serverMsg.type = MSG_TYPE_GAME_INFO;
678 memcpy(serverMsg.buffer, &numPlayers, 4);
679 strcpy(serverMsg.buffer+4, g->getName().c_str());
680 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
681
682 // if there are no more players in the game, remove it
683 if (numPlayers == 0) {
684 mapGames.erase(g->getName());
685 delete g;
686 }
687 }
688
689 break;
690 }
691 case MSG_TYPE_JOIN_GAME_ACK:
692 {
693 cout << "Received a JOIN_GAME_ACK message" << endl;
694
695 string gameName(clientMsg.buffer);
696 cout << "Game name: " << gameName << endl;
697
698 // check if this game already exists
699 if (mapGames.find(gameName) == mapGames.end()) {
700 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
701
702 msgProcessor.sendMessage(&serverMsg, &from);
703 }
704
705 Game* g = mapGames[gameName];
706
707 Player* p = findPlayerByAddr(mapPlayers, from);
708 p->team = rand() % 2; // choose a random team (either 0 or 1)
709 p->currentGame = g;
710
711 // tell the new player about all map objects
712 // (currently just the flags)
713
714 serverMsg.type = MSG_TYPE_OBJECT;
715 vector<WorldMap::Object>* vctObjects = g->getMap()->getObjects();
716 vector<WorldMap::Object>::iterator itObjects;
717 cout << "sending items" << endl;
718 for (itObjects = vctObjects->begin(); itObjects != vctObjects->end(); itObjects++) {
719 itObjects->serialize(serverMsg.buffer);
720 cout << "sending item id " << itObjects->id << endl;
721 msgProcessor.sendMessage(&serverMsg, &from);
722 }
723
724
725 // send the current score
726 serverMsg.type = MSG_TYPE_SCORE;
727
728 int blueScore = g->getBlueScore();
729 int redScore = g->getRedScore();
730 memcpy(serverMsg.buffer, &blueScore, 4);
731 memcpy(serverMsg.buffer+4, &redScore, 4);
732
733 msgProcessor.sendMessage(&serverMsg, &from);
734
735 // send info to other players
736 serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME;
737 p->serialize(serverMsg.buffer);
738 cout << "Should be broadcasting the message" << endl;
739 msgProcessor.broadcastMessage(serverMsg, g->getPlayers());
740
741 g->addPlayer(p);
742
743
744 // tell the new player about all the players in the game (including himself)
745 cout << "Sending other players to new player" << endl;
746 serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME;
747
748
749 map<unsigned int, Player*>& allPlayers = g->getPlayers();
750 map<unsigned int, Player*>::iterator it;
751 for (it = allPlayers.begin(); it != allPlayers.end(); it++)
752 {
753 it->second->serialize(serverMsg.buffer);
754
755 cout << "sending info about " << it->second->name << endl;
756 cout << "sending id " << it->second->id << endl;
757 msgProcessor.sendMessage(&serverMsg, &from);
758 }
759
760 int numPlayers = g->getNumPlayers();
761
762 serverMsg.type = MSG_TYPE_GAME_INFO;
763 memcpy(serverMsg.buffer, &numPlayers, 4);
764 strcpy(serverMsg.buffer+4, gameName.c_str());
765 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
766
767 break;
768 }
769 default:
770 {
771 // probably want to log the error rather than sending a chat message,
772 // especially since chat isn't currently visible on all screens
773
774 serverMsg.type = MSG_TYPE_CHAT;
775 strcpy(serverMsg.buffer, "Server error occured. Report this please.");
776
777 break;
778 }
779 }
780}
781
782void updateUnusedPlayerId(unsigned int& id, map<unsigned int, Player*>& mapPlayers)
783{
784 while (mapPlayers.find(id) != mapPlayers.end())
785 id++;
786}
787
788Player *findPlayerByName(map<unsigned int, Player*> &m, string name)
789{
790 map<unsigned int, Player*>::iterator it;
791
792 for (it = m.begin(); it != m.end(); it++)
793 {
794 if ( it->second->name.compare(name) == 0 )
795 return it->second;
796 }
797
798 return NULL;
799}
800
801Player *findPlayerByAddr(map<unsigned int, Player*> &m, const sockaddr_in &addr)
802{
803 map<unsigned int, Player*>::iterator it;
804
805 for (it = m.begin(); it != m.end(); it++)
806 {
807 if ( it->second->addr.sin_addr.s_addr == addr.sin_addr.s_addr &&
808 it->second->addr.sin_port == addr.sin_port )
809 return it->second;
810 }
811
812 return NULL;
813}
814
815void quit(int sig) {
816 done = true;
817}
Note: See TracBrowser for help on using the repository browser.