source: network-game/server/server.cpp@ 949cf70

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

All ids should now be unsigned ints

  • Property mode set to 100644
File size: 25.9 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[p->targetPlayer]))
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 unsigned int id;
453 int x, y;
454
455 memcpy(&id, clientMsg.buffer, 4);
456 memcpy(&x, clientMsg.buffer+4, 4);
457 memcpy(&y, clientMsg.buffer+8, 4);
458
459 cout << "x: " << x << endl;
460 cout << "y: " << y << endl;
461 cout << "id: " << id << endl;
462
463 Player* p = mapPlayers[id];
464 bool validMessage = false;
465
466 if ( p->addr.sin_addr.s_addr == from.sin_addr.s_addr &&
467 p->addr.sin_port == from.sin_port )
468 {
469 if (p->currentGame->startPlayerMovement(id, x, y)) {
470 serverMsg.type = MSG_TYPE_PLAYER_MOVE;
471
472 memcpy(serverMsg.buffer, &id, 4);
473 memcpy(serverMsg.buffer+4, &p->target.x, 4);
474 memcpy(serverMsg.buffer+8, &p->target.y, 4);
475
476 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
477
478 validMessage = true;
479 }
480 else
481 cout << "Bad terrain detected" << endl;
482 }
483 else
484 cout << "Player id (" << id << ") doesn't match sender" << endl;
485
486 if (!validMessage)
487 msgProcessor.sendMessage(&serverMsg, &from);
488
489 break;
490 }
491 case MSG_TYPE_PICKUP_FLAG:
492 {
493 // may want to check the id matches the sender, just like for PLAYER_NOVE
494 cout << "PICKUP_FLAG" << endl;
495
496 unsigned int id;
497
498 memcpy(&id, clientMsg.buffer, 4);
499 cout << "id: " << id << endl;
500
501 Player* p = mapPlayers[id];
502 unsigned int objectId = p->currentGame->processFlagPickupRequest(p);
503
504 if (objectId >= 0) {
505 map<unsigned int, Player*> players = p->currentGame->getPlayers();
506
507 serverMsg.type = MSG_TYPE_REMOVE_OBJECT;
508 memcpy(serverMsg.buffer, &objectId, 4);
509 msgProcessor.broadcastMessage(serverMsg, players);
510
511 serverMsg.type = MSG_TYPE_PLAYER;
512 p->serialize(serverMsg.buffer);
513 msgProcessor.broadcastMessage(serverMsg, players);
514 }
515
516 break;
517 }
518 case MSG_TYPE_DROP_FLAG:
519 {
520 // may want to check the id matches the sender, just like for PLAYER_NOVE
521 cout << "DROP_FLAG" << endl;
522
523 unsigned int id;
524
525 memcpy(&id, clientMsg.buffer, 4);
526 cout << "id: " << id << endl;
527
528 Player* p = mapPlayers[id];
529
530 WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE;
531 if (p->hasBlueFlag)
532 flagType = WorldMap::OBJECT_BLUE_FLAG;
533 else if (p->hasRedFlag)
534 flagType = WorldMap::OBJECT_RED_FLAG;
535
536 map<unsigned int, Player*> players = p->currentGame->getPlayers();
537
538 p->currentGame->addObjectToMap(flagType, p->pos.x, p->pos.y);
539
540 p->hasBlueFlag = false;
541 p->hasRedFlag = false;
542
543 serverMsg.type = MSG_TYPE_PLAYER;
544 p->serialize(serverMsg.buffer);
545 msgProcessor.broadcastMessage(serverMsg, players);
546
547 break;
548 }
549 case MSG_TYPE_ATTACK:
550 {
551 cout << "Received a START_ATTACK message" << endl;
552
553 unsigned int id, targetId;
554
555 memcpy(&id, clientMsg.buffer, 4);
556 memcpy(&targetId, clientMsg.buffer+4, 4);
557
558 // need to make sure the target is in the sender's game
559
560 Player* p = mapPlayers[id];
561 p->targetPlayer = targetId;
562 p->isChasing = true;
563
564 map<unsigned int, Player*> players = p->currentGame->getPlayers();
565
566 serverMsg.type = MSG_TYPE_ATTACK;
567 memcpy(serverMsg.buffer, &id, 4);
568 memcpy(serverMsg.buffer+4, &targetId, 4);
569 msgProcessor.broadcastMessage(serverMsg, players);
570
571 break;
572 }
573 case MSG_TYPE_CREATE_GAME:
574 {
575 cout << "Received a CREATE_GAME message" << endl;
576
577 string gameName(clientMsg.buffer);
578 cout << "Game name: " << gameName << endl;
579
580 // check if this game already exists
581 if (mapGames.find(gameName) != mapGames.end()) {
582 cout << "Error: Game already exists" << endl;
583 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
584 }else {
585 Game* g = new Game(gameName, "../data/map.txt", &msgProcessor);
586 mapGames[gameName] = g;
587
588 // add flag objects to the map
589 WorldMap* m = g->getMap();
590 for (int y=0; y<m->height; y++) {
591 for (int x=0; x<m->width; x++) {
592 switch (m->getStructure(x, y)) {
593 case WorldMap::STRUCTURE_BLUE_FLAG:
594 m->addObject(WorldMap::OBJECT_BLUE_FLAG, x*25+12, y*25+12);
595 break;
596 case WorldMap::STRUCTURE_RED_FLAG:
597 m->addObject(WorldMap::OBJECT_RED_FLAG, x*25+12, y*25+12);
598 break;
599 case WorldMap::STRUCTURE_NONE:
600 break;
601 }
602 }
603 }
604
605 serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS;
606 strcpy(serverMsg.buffer, gameName.c_str());
607 }
608
609 msgProcessor.sendMessage(&serverMsg, &from);
610
611 break;
612 }
613 case MSG_TYPE_JOIN_GAME:
614 {
615 cout << "Received a JOIN_GAME message" << endl;
616
617 string gameName(clientMsg.buffer);
618 cout << "Game name: " << gameName << endl;
619
620 // check if this game already exists
621 if (mapGames.find(gameName) == mapGames.end()) {
622 cout << "Error: Game does not exist" << endl;
623 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
624 }else {
625 Game* g = mapGames[gameName];
626 map<unsigned int, Player*>& players = g->getPlayers();
627 Player* p = findPlayerByAddr(mapPlayers, from);
628
629 if (players.find(p->id) != players.end()) {
630 cout << "Player " << p->name << " trying to join a game he's already in" << endl;
631 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
632 }else {
633 serverMsg.type = MSG_TYPE_JOIN_GAME_SUCCESS;
634 strcpy(serverMsg.buffer, gameName.c_str());
635 }
636 }
637
638 msgProcessor.sendMessage(&serverMsg, &from);
639
640 break;
641 }
642 case MSG_TYPE_LEAVE_GAME:
643 {
644 cout << "Received a LEAVE_GAME message" << endl;
645
646 Player* p = findPlayerByAddr(mapPlayers, from);
647 Game* g = p->currentGame;
648
649 if (g == NULL) {
650 cout << "Player " << p->name << " is trying to leave a game, but is not currently in a game." << endl;
651
652 /// should send a response back, maybe a new message type is needed
653 // not sure what to do here
654 }else {
655 cout << "Game name: " << g->getName() << endl;
656
657 if (!p->isDead) {
658 WorldMap::ObjectType flagType = WorldMap::OBJECT_NONE;
659 if (p->hasBlueFlag)
660 flagType = WorldMap::OBJECT_BLUE_FLAG;
661 else if (p->hasRedFlag)
662 flagType = WorldMap::OBJECT_RED_FLAG;
663
664 if (flagType != WorldMap::OBJECT_NONE)
665 g->addObjectToMap(flagType, p->pos.x, p->pos.y);
666 }
667
668 p->currentGame = NULL;
669 g->removePlayer(p->id);
670
671 serverMsg.type = MSG_TYPE_LEAVE_GAME;
672 memcpy(serverMsg.buffer, &p->id, 4);
673 strcpy(serverMsg.buffer+4, g->getName().c_str());
674 msgProcessor.broadcastMessage(serverMsg, g->getPlayers());
675
676 int numPlayers = g->getNumPlayers();
677
678 serverMsg.type = MSG_TYPE_GAME_INFO;
679 memcpy(serverMsg.buffer, &numPlayers, 4);
680 strcpy(serverMsg.buffer+4, g->getName().c_str());
681 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
682
683 // if there are no more players in the game, remove it
684 if (numPlayers == 0) {
685 mapGames.erase(g->getName());
686 delete g;
687 }
688 }
689
690 break;
691 }
692 case MSG_TYPE_JOIN_GAME_ACK:
693 {
694 cout << "Received a JOIN_GAME_ACK message" << endl;
695
696 string gameName(clientMsg.buffer);
697 cout << "Game name: " << gameName << endl;
698
699 // check if this game already exists
700 if (mapGames.find(gameName) == mapGames.end()) {
701 serverMsg.type = MSG_TYPE_JOIN_GAME_FAILURE;
702
703 msgProcessor.sendMessage(&serverMsg, &from);
704 }
705
706 Game* g = mapGames[gameName];
707
708 Player* p = findPlayerByAddr(mapPlayers, from);
709 p->team = rand() % 2; // choose a random team (either 0 or 1)
710 p->currentGame = g;
711
712 // tell the new player about all map objects
713 // (currently just the flags)
714
715 serverMsg.type = MSG_TYPE_OBJECT;
716 vector<WorldMap::Object>* vctObjects = g->getMap()->getObjects();
717 vector<WorldMap::Object>::iterator itObjects;
718 cout << "sending items" << endl;
719 for (itObjects = vctObjects->begin(); itObjects != vctObjects->end(); itObjects++) {
720 itObjects->serialize(serverMsg.buffer);
721 cout << "sending item id " << itObjects->id << endl;
722 msgProcessor.sendMessage(&serverMsg, &from);
723 }
724
725
726 // send the current score
727 serverMsg.type = MSG_TYPE_SCORE;
728
729 unsigned int blueScore = g->getBlueScore();
730 unsigned int redScore = g->getRedScore();
731 memcpy(serverMsg.buffer, &blueScore, 4);
732 memcpy(serverMsg.buffer+4, &redScore, 4);
733
734 msgProcessor.sendMessage(&serverMsg, &from);
735
736 // send info to other players
737 serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME;
738 p->serialize(serverMsg.buffer);
739 cout << "Should be broadcasting the message" << endl;
740 msgProcessor.broadcastMessage(serverMsg, g->getPlayers());
741
742 g->addPlayer(p);
743
744
745 // tell the new player about all the players in the game (including himself)
746 cout << "Sending other players to new player" << endl;
747 serverMsg.type = MSG_TYPE_PLAYER_JOIN_GAME;
748
749
750 map<unsigned int, Player*>& allPlayers = g->getPlayers();
751 map<unsigned int, Player*>::iterator it;
752 for (it = allPlayers.begin(); it != allPlayers.end(); it++)
753 {
754 it->second->serialize(serverMsg.buffer);
755
756 cout << "sending info about " << it->second->name << endl;
757 cout << "sending id " << it->second->id << endl;
758 msgProcessor.sendMessage(&serverMsg, &from);
759 }
760
761 int numPlayers = g->getNumPlayers();
762
763 serverMsg.type = MSG_TYPE_GAME_INFO;
764 memcpy(serverMsg.buffer, &numPlayers, 4);
765 strcpy(serverMsg.buffer+4, gameName.c_str());
766 msgProcessor.broadcastMessage(serverMsg, mapPlayers);
767
768 break;
769 }
770 default:
771 {
772 // probably want to log the error rather than sending a chat message,
773 // especially since chat isn't currently visible on all screens
774
775 serverMsg.type = MSG_TYPE_CHAT;
776 strcpy(serverMsg.buffer, "Server error occured. Report this please.");
777
778 break;
779 }
780 }
781}
782
783void updateUnusedPlayerId(unsigned int& id, map<unsigned int, Player*>& mapPlayers)
784{
785 while (mapPlayers.find(id) != mapPlayers.end())
786 id++;
787}
788
789Player *findPlayerByName(map<unsigned int, Player*> &m, string name)
790{
791 map<unsigned int, Player*>::iterator it;
792
793 for (it = m.begin(); it != m.end(); it++)
794 {
795 if ( it->second->name.compare(name) == 0 )
796 return it->second;
797 }
798
799 return NULL;
800}
801
802Player *findPlayerByAddr(map<unsigned int, Player*> &m, const sockaddr_in &addr)
803{
804 map<unsigned int, Player*>::iterator it;
805
806 for (it = m.begin(); it != m.end(); it++)
807 {
808 if ( it->second->addr.sin_addr.s_addr == addr.sin_addr.s_addr &&
809 it->second->addr.sin_port == addr.sin_port )
810 return it->second;
811 }
812
813 return NULL;
814}
815
816void quit(int sig) {
817 done = true;
818}
Note: See TracBrowser for help on using the repository browser.