source: network-game/client/Client/main.cpp@ e0fd377

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

Removed global score variables from client, removed the old STATE_GAME, and renamed STATE_NEW_GAME to STATE_GAME

  • Property mode set to 100644
File size: 43.7 KB
RevLine 
[4c202e0]1#include "../../common/Compiler.h"
2
[e08572c]3#if defined WINDOWS
[0dde5da]4 #include <winsock2.h>
[6319311]5 #include <ws2tcpip.h>
[e08572c]6#elif defined LINUX
[0dde5da]7 #include <sys/types.h>
8 #include <unistd.h>
9 #include <sys/socket.h>
10 #include <netinet/in.h>
11 #include <netdb.h>
12 #include <cstring>
[a845faf]13#endif
[1912323]14
[88cdae2]15#include <cstdio>
16#include <cstdlib>
[8c74150]17#include <cmath>
18#include <sys/types.h>
[a845faf]19#include <string>
[1912323]20#include <iostream>
[88cdae2]21#include <sstream>
[8271c78]22#include <fstream>
[3a79253]23#include <map>
24
[d352805]25#include <allegro5/allegro.h>
26#include <allegro5/allegro_font.h>
27#include <allegro5/allegro_ttf.h>
[88cdae2]28#include <allegro5/allegro_primitives.h>
[7d7df47]29
[e607c0f]30#include "../../common/Common.h"
[b35b2b2]31#include "../../common/MessageContainer.h"
[10f6fc2]32#include "../../common/MessageProcessor.h"
[62ee2ce]33#include "../../common/WorldMap.h"
[4c202e0]34#include "../../common/Player.h"
[fbcfc35]35#include "../../common/Projectile.h"
[2ee386d]36#include "../../common/Game.h"
[3e44a59]37#include "../../common/GameSummary.h"
[7d7df47]38
[87b3ee2]39#include "Window.h"
[6319311]40#include "TextLabel.h"
[87b3ee2]41#include "Button.h"
[6319311]42#include "Textbox.h"
[5c95436]43#include "RadioButtonList.h"
[6319311]44
45#include "GameRender.h"
46
[6475138]47#include "chat.h"
48
[a845faf]49#ifdef WINDOWS
[6475138]50 #pragma comment(lib, "ws2_32.lib")
[a845faf]51#endif
[1912323]52
53using namespace std;
54
[0dde5da]55void initWinSock();
56void shutdownWinSock();
[3e44a59]57void processMessage(NETWORK_MSG &msg, int &state, chat &chatConsole, WorldMap *gameMap, map<unsigned int, Player*>& mapPlayers,
[e0fd377]58 map<unsigned int, Projectile>& mapProjectiles, unsigned int& curPlayerId);
[1f1eb58]59int getRefreshRate(int width, int height);
[929b4e0]60void drawMessageStatus(ALLEGRO_FONT* font);
[87b3ee2]61
[929b4e0]62// Callback declarations
[5c95436]63void goToLoginScreen();
64void goToRegisterScreen();
[87b3ee2]65void registerAccount();
66void login();
67void logout();
68void quit();
69void sendChatMessage();
[b35b2b2]70void toggleDebugging();
[929b4e0]71void joinGame();
72void createGame();
[03ba5e3]73void leaveGame();
[3e44a59]74void closeGameSummary();
[4da5aa3]75
[d352805]76const float FPS = 60;
[9b1e12c]77const int SCREEN_W = 1024;
78const int SCREEN_H = 768;
[0cc431d]79
80enum STATE {
81 STATE_START,
[1785314]82 STATE_LOBBY,
[e0fd377]83 STATE_GAME
[d352805]84};
[87b3ee2]85
86int state;
87
88bool doexit;
89
90Window* wndLogin;
[5c95436]91Window* wndRegister;
[1785314]92Window* wndLobby;
93Window* wndGame;
[03ba5e3]94Window* wndNewGame;
[1785314]95Window* wndGameDebug;
[3e44a59]96Window* wndGameSummary;
[87b3ee2]97Window* wndCurrent;
98
[5c95436]99// wndLogin
[87b3ee2]100Textbox* txtUsername;
101Textbox* txtPassword;
[365e156]102TextLabel* lblLoginStatus;
[5c95436]103
104// wndRegister
105Textbox* txtUsernameRegister;
106Textbox* txtPasswordRegister;
107RadioButtonList* rblClasses;
[365e156]108TextLabel* lblRegisterStatus;
[5c95436]109
[929b4e0]110// wndLobby
111Textbox* txtJoinGame;
112Textbox* txtCreateGame;
113
[1785314]114// wndGame
[87b3ee2]115Textbox* txtChat;
116
117int sock;
118struct sockaddr_in server, from;
119struct hostent *hp;
120NETWORK_MSG msgTo, msgFrom;
121string username;
[b35b2b2]122chat chatConsole, debugConsole;
123bool debugging;
[321fbbc]124map<string, int> mapGames;
[803566d]125Game* game;
[3e44a59]126GameSummary* gameSummary;
[1f1eb58]127
[10f6fc2]128MessageProcessor msgProcessor;
129
[d352805]130int main(int argc, char **argv)
131{
132 ALLEGRO_DISPLAY *display = NULL;
133 ALLEGRO_EVENT_QUEUE *event_queue = NULL;
134 ALLEGRO_TIMER *timer = NULL;
135 bool key[4] = { false, false, false, false };
[e6c26b8]136 map<unsigned int, Player*> mapPlayers;
[fbcfc35]137 map<unsigned int, Projectile> mapProjectiles;
[88cdae2]138 unsigned int curPlayerId = -1;
[68d94de]139 ofstream outputLog;
140
[803566d]141 doexit = false;
[b35b2b2]142 debugging = false;
[803566d]143 bool redraw = true;
144 bool fullscreen = false;
145 game = NULL;
[3e44a59]146 gameSummary = NULL;
[15efb4e]147
[87b3ee2]148 state = STATE_START;
[9a3e6b1]149
[d352805]150 if(!al_init()) {
151 fprintf(stderr, "failed to initialize allegro!\n");
152 return -1;
153 }
154
[8271c78]155 outputLog.open("client.log", ios::app);
156 outputLog << "Started client on " << getCurrentDateTimeString() << endl;
157
[88cdae2]158 if (al_init_primitives_addon())
159 cout << "Primitives initialized" << endl;
160 else
161 cout << "Primitives not initialized" << endl;
162
[d352805]163 al_init_font_addon();
164 al_init_ttf_addon();
165
[88cdae2]166 #if defined WINDOWS
167 ALLEGRO_FONT *font = al_load_ttf_font("../pirulen.ttf", 12, 0);
168 #elif defined LINUX
169 ALLEGRO_FONT *font = al_load_ttf_font("pirulen.ttf", 12, 0);
170 #endif
171
[d352805]172 if (!font) {
173 fprintf(stderr, "Could not load 'pirulen.ttf'.\n");
174 getchar();
[803566d]175 return -1;
[d352805]176 }
177
178 if(!al_install_keyboard()) {
179 fprintf(stderr, "failed to initialize the keyboard!\n");
180 return -1;
181 }
[87b3ee2]182
183 if(!al_install_mouse()) {
184 fprintf(stderr, "failed to initialize the mouse!\n");
185 return -1;
186 }
[d352805]187
188 timer = al_create_timer(1.0 / FPS);
189 if(!timer) {
190 fprintf(stderr, "failed to create timer!\n");
191 return -1;
192 }
193
[1f1eb58]194 int refreshRate = getRefreshRate(SCREEN_W, SCREEN_H);
195 // if the computer doesn't support this resolution, just use windowed mode
196 if (refreshRate > 0 && fullscreen) {
197 al_set_new_display_flags(ALLEGRO_FULLSCREEN);
198 al_set_new_display_refresh_rate(refreshRate);
199 }
200 display = al_create_display(SCREEN_W, SCREEN_H);
[d352805]201 if(!display) {
202 fprintf(stderr, "failed to create display!\n");
203 al_destroy_timer(timer);
204 return -1;
205 }
[87b3ee2]206
[384b7e0]207 WorldMap* gameMap = WorldMap::loadMapFromFile("../../data/map.txt");
[62ee2ce]208
[365e156]209 cout << "Loaded map" << endl;
210
[b35b2b2]211 debugConsole.addLine("Debug console:");
212 debugConsole.addLine("");
213
[87b3ee2]214 wndLogin = new Window(0, 0, SCREEN_W, SCREEN_H);
[9b1e12c]215 wndLogin->addComponent(new Textbox(516, 40, 100, 20, font));
216 wndLogin->addComponent(new Textbox(516, 70, 100, 20, font));
[365e156]217 wndLogin->addComponent(new TextLabel(410, 40, 100, 20, font, "Username:", ALLEGRO_ALIGN_RIGHT));
218 wndLogin->addComponent(new TextLabel(410, 70, 100, 20, font, "Password:", ALLEGRO_ALIGN_RIGHT));
219 wndLogin->addComponent(new TextLabel((SCREEN_W-600)/2, 100, 600, 20, font, "", ALLEGRO_ALIGN_CENTRE));
220 wndLogin->addComponent(new Button(SCREEN_W/2-100, 130, 90, 20, font, "Register", goToRegisterScreen));
221 wndLogin->addComponent(new Button(SCREEN_W/2+10, 130, 90, 20, font, "Login", login));
[9b1e12c]222 wndLogin->addComponent(new Button(920, 10, 80, 20, font, "Quit", quit));
[b35b2b2]223 wndLogin->addComponent(new Button(20, 10, 160, 20, font, "Toggle Debugging", toggleDebugging));
[87b3ee2]224
225 txtUsername = (Textbox*)wndLogin->getComponent(0);
226 txtPassword = (Textbox*)wndLogin->getComponent(1);
[365e156]227 lblLoginStatus = (TextLabel*)wndLogin->getComponent(4);
228
229 cout << "Created login screen" << endl;
[87b3ee2]230
[5c95436]231 wndRegister = new Window(0, 0, SCREEN_W, SCREEN_H);
[9b1e12c]232 wndRegister->addComponent(new Textbox(516, 40, 100, 20, font));
233 wndRegister->addComponent(new Textbox(516, 70, 100, 20, font));
[365e156]234 wndRegister->addComponent(new TextLabel(410, 40, 100, 20, font, "Username:", ALLEGRO_ALIGN_RIGHT));
235 wndRegister->addComponent(new TextLabel(410, 70, 100, 20, font, "Password:", ALLEGRO_ALIGN_RIGHT));
236 wndRegister->addComponent(new RadioButtonList(432, 100, "Pick a class", font));
237 wndRegister->addComponent(new TextLabel((SCREEN_W-600)/2, 190, 600, 20, font, "", ALLEGRO_ALIGN_CENTRE));
238 wndRegister->addComponent(new Button(SCREEN_W/2-100, 220, 90, 20, font, "Back", goToLoginScreen));
239 wndRegister->addComponent(new Button(SCREEN_W/2+10, 220, 90, 20, font, "Submit", registerAccount));
[9b1e12c]240 wndRegister->addComponent(new Button(920, 10, 80, 20, font, "Quit", quit));
[b35b2b2]241 wndRegister->addComponent(new Button(20, 10, 160, 20, font, "Toggle Debugging", toggleDebugging));
[5c95436]242
243 txtUsernameRegister = (Textbox*)wndRegister->getComponent(0);
244 txtPasswordRegister = (Textbox*)wndRegister->getComponent(1);
245
[365e156]246 rblClasses = (RadioButtonList*)wndRegister->getComponent(4);
[5c95436]247 rblClasses->addRadioButton("Warrior");
248 rblClasses->addRadioButton("Ranger");
249
[365e156]250 lblRegisterStatus = (TextLabel*)wndRegister->getComponent(5);
251
252 cout << "Created register screen" << endl;
253
[1785314]254 wndLobby = new Window(0, 0, SCREEN_W, SCREEN_H);
[929b4e0]255 wndLobby->addComponent(new Button(920, 10, 80, 20, font, "Logout", logout));
[53d41ea]256 wndLobby->addComponent(new TextLabel(SCREEN_W*1/2+15-112, 40, 110, 20, font, "Game Name:", ALLEGRO_ALIGN_RIGHT));
257 wndLobby->addComponent(new Textbox(SCREEN_W*1/2+15+4, 40, 100, 20, font));
258 wndLobby->addComponent(new Button(SCREEN_W*1/2+15-100, 80, 200, 20, font, "Join Existing Game", joinGame));
[929b4e0]259 wndLobby->addComponent(new TextLabel(SCREEN_W*3/4-112, 40, 110, 20, font, "Game Name:", ALLEGRO_ALIGN_RIGHT));
260 wndLobby->addComponent(new Textbox(SCREEN_W*3/4+4, 40, 100, 20, font));
261 wndLobby->addComponent(new Button(SCREEN_W*3/4-100, 80, 200, 20, font, "Create New Game", createGame));
[53d41ea]262 wndLobby->addComponent(new Textbox(95, 40, 300, 20, font));
263 wndLobby->addComponent(new Button(95, 70, 60, 20, font, "Send", sendChatMessage));
[929b4e0]264
265 txtJoinGame = (Textbox*)wndLobby->getComponent(2);
266 txtCreateGame = (Textbox*)wndLobby->getComponent(5);
[53d41ea]267 txtChat = (Textbox*)wndLobby->getComponent(7);
[87b3ee2]268
[1785314]269 cout << "Created lobby screen" << endl;
[87b3ee2]270
[53d41ea]271 // this is the old game screen
[1785314]272 wndGame = new Window(0, 0, SCREEN_W, SCREEN_H);
273 wndGame->addComponent(new Textbox(95, 40, 300, 20, font));
274 wndGame->addComponent(new Button(95, 70, 60, 20, font, "Send", sendChatMessage));
275 wndGame->addComponent(new Button(20, 10, 160, 20, font, "Toggle Debugging", toggleDebugging));
276 wndGame->addComponent(new Button(920, 10, 80, 20, font, "Logout", logout));
[b35b2b2]277
[1785314]278 wndGameDebug = new Window(0, 0, SCREEN_W, SCREEN_H);
279 wndGameDebug->addComponent(new Button(20, 10, 160, 20, font, "Toggle Debugging", toggleDebugging));
280 wndGameDebug->addComponent(new Button(920, 10, 80, 20, font, "Logout", logout));
281
282 cout << "Created game screen" << endl;
[365e156]283
[53d41ea]284 // this is the new game screen, without a debug console
[03ba5e3]285 wndNewGame = new Window(0, 0, SCREEN_W, SCREEN_H);
286 wndNewGame->addComponent(new Button(880, 10, 120, 20, font, "Leave Game", leaveGame));
287
288 cout << "Created new game screen" << endl;
289
[3e44a59]290 wndGameSummary = new Window(0, 0, SCREEN_W, SCREEN_H);
291 wndGameSummary->addComponent(new Button(840, 730, 160, 20, font, "Back to Lobby", closeGameSummary));
292
293 cout << "Created game summary screen" << endl;
294
[49da01a]295 goToLoginScreen();
[d352805]296
297 event_queue = al_create_event_queue();
298 if(!event_queue) {
299 fprintf(stderr, "failed to create event_queue!\n");
300 al_destroy_display(display);
301 al_destroy_timer(timer);
302 return -1;
303 }
304
305 al_set_target_bitmap(al_get_backbuffer(display));
306
307 al_register_event_source(event_queue, al_get_display_event_source(display));
308 al_register_event_source(event_queue, al_get_timer_event_source(timer));
309 al_register_event_source(event_queue, al_get_keyboard_event_source());
[87b3ee2]310 al_register_event_source(event_queue, al_get_mouse_event_source());
[d352805]311
312 al_clear_to_color(al_map_rgb(0,0,0));
313
314 al_flip_display();
[9a3e6b1]315
316 if (argc != 3) {
317 cout << "Usage: server port" << endl;
318 exit(1);
319 }
320
321 initWinSock();
[803566d]322
[9a3e6b1]323 sock = socket(AF_INET, SOCK_DGRAM, 0);
324 if (sock < 0)
325 error("socket");
326
[e607c0f]327 set_nonblock(sock);
328
[9a3e6b1]329 server.sin_family = AF_INET;
330 hp = gethostbyname(argv[1]);
[9c18cb7]331 if (hp == 0)
[9a3e6b1]332 error("Unknown host");
333
334 memcpy((char *)&server.sin_addr, (char *)hp->h_addr, hp->h_length);
335 server.sin_port = htons(atoi(argv[2]));
336
[68d94de]337 msgProcessor = MessageProcessor(sock, &outputLog);
338
[d352805]339 al_start_timer(timer);
[e607c0f]340
[d352805]341 while(!doexit)
342 {
343 ALLEGRO_EVENT ev;
[3d81c0d]344
[d352805]345 al_wait_for_event(event_queue, &ev);
[87b3ee2]346
347 if(wndCurrent->handleEvent(ev)) {
348 // do nothing
349 }
350 else if(ev.type == ALLEGRO_EVENT_TIMER) {
[a1a3bd5]351 redraw = true; // seems like we should just call a draw function here instead
[d352805]352 }
353 else if(ev.type == ALLEGRO_EVENT_DISPLAY_CLOSE) {
[9a3e6b1]354 doexit = true;
[d352805]355 }
356 else if(ev.type == ALLEGRO_EVENT_KEY_DOWN) {
357 }
358 else if(ev.type == ALLEGRO_EVENT_KEY_UP) {
359 switch(ev.keyboard.keycode) {
360 case ALLEGRO_KEY_ESCAPE:
361 doexit = true;
362 break;
[4926168]363 case ALLEGRO_KEY_S: // pickup an item next to you
[e0fd377]364 if (state == STATE_GAME) {
[4926168]365 msgTo.type = MSG_TYPE_PICKUP_FLAG;
366 memcpy(msgTo.buffer, &curPlayerId, 4);
[68d94de]367 msgProcessor.sendMessage(&msgTo, &server);
[4926168]368 }
369 break;
[626e5b0]370 case ALLEGRO_KEY_D: // drop the current item
[e0fd377]371 if (state == STATE_GAME) {
[626e5b0]372 Player* p = NULL;
[6c9bcdd]373 try {
374 p = mapPlayers.at(curPlayerId);
375 } catch (const out_of_range& ex) {}
[626e5b0]376
377 if (p != NULL) {
378 int flagType = WorldMap::OBJECT_NONE;
379
380 if (p->hasBlueFlag)
381 flagType = WorldMap::OBJECT_BLUE_FLAG;
382 else if (p->hasRedFlag)
383 flagType = WorldMap::OBJECT_RED_FLAG;
384
385 if (flagType != WorldMap::OBJECT_NONE) {
386 msgTo.type = MSG_TYPE_DROP_FLAG;
387 memcpy(msgTo.buffer, &curPlayerId, 4);
[68d94de]388 msgProcessor.sendMessage(&msgTo, &server);
[626e5b0]389 }
390 }
391 }
392 break;
[d352805]393 }
394 }
[88cdae2]395 else if(ev.type == ALLEGRO_EVENT_MOUSE_BUTTON_UP) {
[3e44a59]396 if(wndCurrent == wndGame || wndCurrent == wndNewGame) {
[e1f78f5]397 if (ev.mouse.button == 1) { // left click
398 msgTo.type = MSG_TYPE_PLAYER_MOVE;
[88cdae2]399
[e1f78f5]400 POSITION pos;
401 pos.x = ev.mouse.x;
402 pos.y = ev.mouse.y;
403 pos = screenToMap(pos);
[62ee2ce]404
[e1f78f5]405 if (pos.x != -1)
406 {
407 memcpy(msgTo.buffer, &curPlayerId, 4);
408 memcpy(msgTo.buffer+4, &pos.x, 4);
409 memcpy(msgTo.buffer+8, &pos.y, 4);
410
[68d94de]411 msgProcessor.sendMessage(&msgTo, &server);
[e1f78f5]412 }
413 else
414 cout << "Invalid point: User did not click on the map" << endl;
415 }else if (ev.mouse.button == 2) { // right click
[b8abc90]416 cout << "Detected a right-click" << endl;
417 map<unsigned int, Player*>::iterator it;
[e1f78f5]418
[b8abc90]419 Player* curPlayer;
420 for(it = mapPlayers.begin(); it != mapPlayers.end(); it++)
421 {
422 if (it->second->id == curPlayerId)
423 curPlayer = it->second;
424 }
[fbcfc35]425
[b8abc90]426 cout << "Got current player" << endl;
427 cout << "current game: " << game << endl;
[e1f78f5]428
[b8abc90]429 map<unsigned int, Player*> playersInGame = game->getPlayers();
430 Player* target;
431
432 for(it = playersInGame.begin(); it != playersInGame.end(); it++)
433 {
434 // need to check if the right-click was actually on this player
435 // right now, this code will target all players other than the current one
436 target = it->second;
437 cout << "set target" << endl;
438 if (target->id != curPlayerId && target->team != curPlayer->team)
[e1f78f5]439 {
[b8abc90]440 cout << "Found valid target" << endl;
[88cdae2]441
[b8abc90]442 msgTo.type = MSG_TYPE_START_ATTACK;
443 memcpy(msgTo.buffer, &curPlayerId, 4);
444 memcpy(msgTo.buffer+4, &target->id, 4);
445
[68d94de]446 msgProcessor.sendMessage(&msgTo, &server);
[e1f78f5]447 }
[b8abc90]448 }
[62ee2ce]449 }
[ad5d122]450 }
[88cdae2]451 }
[e607c0f]452
[68d94de]453 if (msgProcessor.receiveMessage(&msgFrom, &from) >= 0)
[e0fd377]454 processMessage(msgFrom, state, chatConsole, gameMap, mapPlayers, mapProjectiles, curPlayerId);
[054b50b]455
[a1a3bd5]456 if (redraw)
[e607c0f]457 {
[d352805]458 redraw = false;
[88cdae2]459
[68d94de]460 msgProcessor.resendUnackedMessages();
[10f6fc2]461
[1785314]462 if (debugging && wndCurrent == wndGame)
463 wndGameDebug->draw(display);
[b35b2b2]464 else
465 wndCurrent->draw(display);
[9a3e6b1]466
[50e6c7a]467 if (wndCurrent == wndLobby) {
[53d41ea]468 chatConsole.draw(font, al_map_rgb(255,255,255));
469
[321fbbc]470 map<string, int>::iterator it;
[2ee386d]471 int i=0;
[2992b1a]472 ostringstream ossGame;
[2ee386d]473 for (it = mapGames.begin(); it != mapGames.end(); it++) {
[321fbbc]474 ossGame << it->first << " (" << it->second << " players)" << endl;
[b4c5b6a]475 al_draw_text(font, al_map_rgb(0, 255, 0), SCREEN_W*1/2-100, 120+i*15, ALLEGRO_ALIGN_LEFT, ossGame.str().c_str());
[2992b1a]476 ossGame.clear();
477 ossGame.str("");
[2ee386d]478 i++;
[50e6c7a]479 }
480 }
[03ba5e3]481 else if (wndCurrent == wndNewGame)
482 {
[b4c5b6a]483 al_draw_text(font, al_map_rgb(0, 255, 0), 4, 4, ALLEGRO_ALIGN_LEFT, "Players");
484
485 map<unsigned int, Player*>& gamePlayers = game->getPlayers();
486 map<unsigned int, Player*>::iterator it;
487
488 int playerCount = 0;
489 for (it = gamePlayers.begin(); it != gamePlayers.end(); it++)
490 {
491 al_draw_text(font, al_map_rgb(0, 255, 0), 4, 19+(playerCount+1)*15, ALLEGRO_ALIGN_LEFT, it->second->name.c_str());
492 playerCount++;
493 }
494
[03ba5e3]495 ostringstream ossScoreBlue, ossScoreRed;
496
497 ossScoreBlue << "Blue: " << game->getBlueScore() << endl;
498 ossScoreRed << "Red: " << game->getRedScore() << endl;
499
500 al_draw_text(font, al_map_rgb(0, 255, 0), 330, 80, ALLEGRO_ALIGN_LEFT, ossScoreBlue.str().c_str());
501 al_draw_text(font, al_map_rgb(0, 255, 0), 515, 80, ALLEGRO_ALIGN_LEFT, ossScoreRed.str().c_str());
[0693e25]502
[fef7c69]503 // update players
504 for (it = game->getPlayers().begin(); it != game->getPlayers().end(); it++)
505 {
506 it->second->updateTarget(game->getPlayers());
507 }
508
509 for (it = game->getPlayers().begin(); it != game->getPlayers().end(); it++)
510 {
511 it->second->move(game->getMap()); // ignore return value
512 }
513
[58ca135]514 // update projectile positions
515 map<unsigned int, Projectile>::iterator it2;
516 for (it2 = game->getProjectiles().begin(); it2 != game->getProjectiles().end(); it2++)
517 {
518 it2->second.move(game->getPlayers());
519 }
520
[6319311]521 GameRender::drawMap(game->getMap());
522 GameRender::drawPlayers(game->getPlayers(), font, curPlayerId);
[58ca135]523
524 // draw projectiles
525 for (it2 = game->getProjectiles().begin(); it2 != game->getProjectiles().end(); it2++)
526 {
527 Projectile proj = it2->second;
528
529 FLOAT_POSITION target = game->getPlayers()[proj.target]->pos;
530 float angle = atan2(target.y-proj.pos.toFloat().y, target.x-proj.pos.toFloat().x);
531
532 POSITION start, end;
533 start.x = cos(angle)*15+proj.pos.x;
534 start.y = sin(angle)*15+proj.pos.y;
535 end.x = proj.pos.x;
536 end.y = proj.pos.y;
537
538 start = mapToScreen(start);
539 end = mapToScreen(end);
540
541 al_draw_line(start.x, start.y, end.x, end.y, al_map_rgb(0, 0, 0), 4);
542 }
[03ba5e3]543 }
[50e6c7a]544 else if (wndCurrent == wndGame)
545 {
[b35b2b2]546 if (!debugging)
547 chatConsole.draw(font, al_map_rgb(255,255,255));
[bc70282]548
[87b3ee2]549 al_draw_text(font, al_map_rgb(0, 255, 0), 4, 43, ALLEGRO_ALIGN_LEFT, "Message:");
[62ee2ce]550
[15efb4e]551 ostringstream ossScoreBlue, ossScoreRed;
552
[e0fd377]553 ossScoreBlue << "Blue: " << game->getBlueScore() << endl;
554 ossScoreRed << "Red: " << game->getRedScore() << endl;
[15efb4e]555
556 al_draw_text(font, al_map_rgb(0, 255, 0), 330, 80, ALLEGRO_ALIGN_LEFT, ossScoreBlue.str().c_str());
557 al_draw_text(font, al_map_rgb(0, 255, 0), 515, 80, ALLEGRO_ALIGN_LEFT, ossScoreRed.str().c_str());
558
[032e550]559 // update players
[e6c26b8]560 map<unsigned int, Player*>::iterator it;
[032e550]561 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
562 {
[e6c26b8]563 it->second->updateTarget(mapPlayers);
[032e550]564 }
565
[a1a3bd5]566 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
567 {
[e6c26b8]568 it->second->move(gameMap); // ignore return value
[a1a3bd5]569 }
570
[8c74150]571 // update projectile positions
572 map<unsigned int, Projectile>::iterator it2;
573 for (it2 = mapProjectiles.begin(); it2 != mapProjectiles.end(); it2++)
574 {
575 it2->second.move(mapPlayers);
576 }
577
[6319311]578 GameRender::drawMap(gameMap);
579 GameRender::drawPlayers(mapPlayers, font, curPlayerId);
[8c74150]580
581 // draw projectiles
582 for (it2 = mapProjectiles.begin(); it2 != mapProjectiles.end(); it2++)
583 {
584 Projectile proj = it2->second;
585
[e6c26b8]586 FLOAT_POSITION target = mapPlayers[proj.target]->pos;
[8c74150]587 float angle = atan2(target.y-proj.pos.toFloat().y, target.x-proj.pos.toFloat().x);
588
589 POSITION start, end;
590 start.x = cos(angle)*15+proj.pos.x;
591 start.y = sin(angle)*15+proj.pos.y;
592 end.x = proj.pos.x;
593 end.y = proj.pos.y;
594
595 start = mapToScreen(start);
596 end = mapToScreen(end);
597
598 al_draw_line(start.x, start.y, end.x, end.y, al_map_rgb(0, 0, 0), 4);
599 }
[3e44a59]600 }else if (wndCurrent == wndGameSummary) {
[635ad9b]601 cout << "Drawing game summary" << endl;
602
603 cout << "blue score from obj: " << gameSummary->getBlueScore() << endl;
604 cout << "red score from obj: " << gameSummary->getRedScore() << endl;
605
606 ostringstream ossBlueScore, ossRedScore;
607
608 cout << "Declared scores" << endl;
609
610 ossBlueScore << "Blue Score: " << gameSummary->getBlueScore();
611 ossRedScore << "Red Score: " << gameSummary->getRedScore();
612
613 cout << "set scores" << endl;
[3e44a59]614
615 string strWinner;
616
617 if (gameSummary->getWinner() == 0)
[635ad9b]618 strWinner = "Blue Team Wins";
[3e44a59]619 else if (gameSummary->getWinner() == 1)
[635ad9b]620 strWinner = "Red Team Wins";
621 else
622 strWinner = "winner set to wrong value";
623
624 cout << "Calling the drawing routines" << endl;
[3e44a59]625
626 al_draw_text(font, al_map_rgb(0, 255, 0), 512, 40, ALLEGRO_ALIGN_CENTRE, gameSummary->getName().c_str());
[635ad9b]627 al_draw_text(font, al_map_rgb(0, 255, 0), 330, 80, ALLEGRO_ALIGN_LEFT, ossBlueScore.str().c_str());
628 al_draw_text(font, al_map_rgb(0, 255, 0), 515, 80, ALLEGRO_ALIGN_LEFT, ossRedScore.str().c_str());
[3e44a59]629 al_draw_text(font, al_map_rgb(0, 255, 0), 512, 120, ALLEGRO_ALIGN_CENTRE, strWinner.c_str());
[635ad9b]630
631 cout << "Done drawing game summary" << endl;
[87b3ee2]632 }
633
[b35b2b2]634 if (debugging) {
635 //debugConsole.draw(font, al_map_rgb(255,255,255));
636 drawMessageStatus(font);
637 }
638
[d352805]639 al_flip_display();
640 }
641 }
[9a3e6b1]642
643 #if defined WINDOWS
644 closesocket(sock);
645 #elif defined LINUX
646 close(sock);
647 #endif
648
649 shutdownWinSock();
[d352805]650
[87b3ee2]651 delete wndLogin;
[1785314]652 delete wndRegister;
653 delete wndLobby;
654 delete wndGame;
655 delete wndGameDebug;
[87b3ee2]656
[62ee2ce]657 delete gameMap;
[d519032]658
659 if (game != NULL)
660 delete game;
[62ee2ce]661
[3e44a59]662 if (gameSummary != NULL)
663 delete gameSummary;
664
[e6c26b8]665 map<unsigned int, Player*>::iterator it;
666
667 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++) {
668 delete it->second;
669 }
670
[d352805]671 al_destroy_event_queue(event_queue);
672 al_destroy_display(display);
673 al_destroy_timer(timer);
[8271c78]674
675 outputLog << "Stopped client on " << getCurrentDateTimeString() << endl;
676 outputLog.close();
677
[d352805]678 return 0;
679}
680
[0dde5da]681void initWinSock()
682{
683#if defined WINDOWS
684 WORD wVersionRequested;
685 WSADATA wsaData;
686 int wsaerr;
687
688 wVersionRequested = MAKEWORD(2, 2);
689 wsaerr = WSAStartup(wVersionRequested, &wsaData);
[803566d]690
[0dde5da]691 if (wsaerr != 0) {
692 cout << "The Winsock dll not found." << endl;
693 exit(1);
694 }else
695 cout << "The Winsock dll was found." << endl;
696#endif
697}
698
699void shutdownWinSock()
700{
701#if defined WINDOWS
702 WSACleanup();
703#endif
[1912323]704}
705
[3e44a59]706void processMessage(NETWORK_MSG &msg, int &state, chat &chatConsole, WorldMap *gameMap, map<unsigned int, Player*>& mapPlayers,
[e0fd377]707 map<unsigned int, Projectile>& mapProjectiles, unsigned int& curPlayerId)
[1912323]708{
[53ba300]709 // this is outdated since most messages now don't contain just a text string
[4da5aa3]710 string response = string(msg.buffer);
711
712 switch(state)
713 {
714 case STATE_START:
715 {
[e607c0f]716 cout << "In STATE_START" << endl;
717
[87b3ee2]718 switch(msg.type)
[4da5aa3]719 {
[87b3ee2]720 case MSG_TYPE_REGISTER:
721 {
[365e156]722 lblRegisterStatus->setText(response);
[87b3ee2]723 break;
724 }
[bc70282]725 default:
726 {
727 cout << "(STATE_REGISTER) Received invalid message of type " << msg.type << endl;
728 break;
729 }
730 }
731
732 break;
733 }
[1785314]734 case STATE_LOBBY:
[bc70282]735 {
[e0fd377]736 cout << "In STATE_LOBBY" << endl;
[bc70282]737 switch(msg.type)
738 {
[87b3ee2]739 case MSG_TYPE_LOGIN:
740 {
741 if (response.compare("Player has already logged in.") == 0)
742 {
[bc70282]743 goToLoginScreen();
744 state = STATE_START;
745
[365e156]746 lblLoginStatus->setText(response);
[87b3ee2]747 }
748 else if (response.compare("Incorrect username or password") == 0)
749 {
[bc70282]750 goToLoginScreen();
751 state = STATE_START;
752
[365e156]753 lblLoginStatus->setText(response);
[87b3ee2]754 }
755 else
756 {
[1785314]757 wndCurrent = wndLobby;
[95ffe57]758
759 // this message should only be sent when a player first logs in so they know their id
760
761 Player* p = new Player("", "");
762 p->deserialize(msg.buffer);
[e6c26b8]763
[95ffe57]764 if (mapPlayers.find(p->id) != mapPlayers.end())
765 delete mapPlayers[p->id];
766 mapPlayers[p->id] = p;
767 curPlayerId = p->id;
[88cdae2]768
769 cout << "Got a valid login response with the player" << endl;
[1f1eb58]770 cout << "Player id: " << curPlayerId << endl;
[95ffe57]771 cout << "Player health: " << p->health << endl;
[bc70282]772 cout << "player map size: " << mapPlayers.size() << endl;
[87b3ee2]773 }
[88cdae2]774
[a1a3bd5]775 break;
776 }
777 case MSG_TYPE_LOGOUT:
778 {
[054b50b]779 cout << "Got a logout message" << endl;
[a1a3bd5]780
[53ba300]781 int playerId;
782
783 // Check if it's about you or another player
784 memcpy(&playerId, msg.buffer, 4);
785 response = string(msg.buffer+4);
786
787 if (playerId == curPlayerId)
[87b3ee2]788 {
[53ba300]789 if (response.compare("You have successfully logged out.") == 0)
790 {
791 cout << "Logged out" << endl;
792 state = STATE_START;
793 goToLoginScreen();
794 }
795
796 // if there was an error logging out, nothing happens
797 }
798 else
799 {
800 delete mapPlayers[playerId];
[87b3ee2]801 }
[054b50b]802
803 break;
804 }
[4c202e0]805 case MSG_TYPE_PLAYER:
806 {
[1f1eb58]807 cout << "Received MSG_TYPE_PLAYER" << endl;
808
[31b347a]809 Player p("", "");
810 p.deserialize(msg.buffer);
811 p.timeLastUpdated = getCurrentMillis();
812 p.isChasing = false;
813 if (p.health <= 0)
814 p.isDead = true;
[5a5f131]815 else
[31b347a]816 p.isDead = false;
[5a5f131]817
[31b347a]818 if (mapPlayers.find(p.id) != mapPlayers.end())
819 *(mapPlayers[p.id]) = p;
820 else
821 mapPlayers[p.id] = new Player(p);
[4c202e0]822
[eb8adb1]823 break;
824 }
[a1a3bd5]825 case MSG_TYPE_PLAYER_MOVE:
826 {
827 unsigned int id;
828 int x, y;
829
830 memcpy(&id, msg.buffer, 4);
831 memcpy(&x, msg.buffer+4, 4);
832 memcpy(&y, msg.buffer+8, 4);
833
[e6c26b8]834 mapPlayers[id]->target.x = x;
835 mapPlayers[id]->target.y = y;
[a1a3bd5]836
837 break;
838 }
[eb8adb1]839 case MSG_TYPE_CHAT:
840 {
841 chatConsole.addLine(response);
[4c202e0]842
[87b3ee2]843 break;
844 }
[45b2750]845 case MSG_TYPE_OBJECT:
846 {
[d519032]847 cout << "Received OBJECT message" << endl;
[45b2750]848
849 WorldMap::Object o(0, WorldMap::OBJECT_NONE, 0, 0);
850 o.deserialize(msg.buffer);
[bc70282]851 cout << "object id: " << o.id << endl;
[45b2750]852 gameMap->updateObject(o.id, o.type, o.pos.x, o.pos.y);
853
854 break;
855 }
[2df63d6]856 case MSG_TYPE_REMOVE_OBJECT:
857 {
[7511a2b]858 cout << "Received REMOVE_OBJECT message!" << endl;
859
[2df63d6]860 int id;
861 memcpy(&id, msg.buffer, 4);
[7511a2b]862
863 cout << "Removing object with id " << id << endl;
864
[2df63d6]865 if (!gameMap->removeObject(id))
866 cout << "Did not remove the object" << endl;
[7511a2b]867
868 break;
[2df63d6]869 }
[b978503]870 case MSG_TYPE_ATTACK:
871 {
[032e550]872 cout << "Received ATTACK message" << endl;
873
874 break;
875 }
876 case MSG_TYPE_START_ATTACK:
877 {
878 cout << "Received START_ATTACK message" << endl;
879
880 unsigned int id, targetID;
881 memcpy(&id, msg.buffer, 4);
882 memcpy(&targetID, msg.buffer+4, 4);
883
884 cout << "source id: " << id << endl;
885 cout << "target id: " << targetID << endl;
886
[e6c26b8]887 Player* source = mapPlayers[id];
[032e550]888 source->targetPlayer = targetID;
889 source->isChasing = true;
890
[b978503]891 break;
892 }
893 case MSG_TYPE_PROJECTILE:
894 {
[8c74150]895 cout << "Received a PROJECTILE message" << endl;
[fbcfc35]896
[50e6c7a]897 unsigned int id, x, y, targetId;
[fbcfc35]898
899 memcpy(&id, msg.buffer, 4);
900 memcpy(&x, msg.buffer+4, 4);
901 memcpy(&y, msg.buffer+8, 4);
902 memcpy(&targetId, msg.buffer+12, 4);
903
[8c74150]904 cout << "id: " << id << endl;
905 cout << "x: " << x << endl;
906 cout << "y: " << y << endl;
907 cout << "Target: " << targetId << endl;
908
909 Projectile proj(x, y, targetId, 0);
910 proj.setId(id);
911
912 mapProjectiles[id] = proj;
[fbcfc35]913
[b978503]914 break;
915 }
916 case MSG_TYPE_REMOVE_PROJECTILE:
917 {
[8c74150]918 cout << "Received a REMOVE_PROJECTILE message" << endl;
919
920 int id;
921 memcpy(&id, msg.buffer, 4);
922
923 mapProjectiles.erase(id);
924
[b978503]925 break;
926 }
[50e6c7a]927 case MSG_TYPE_GAME_INFO:
928 {
[803566d]929 cout << "Received a GAME_INFO message" << endl;
[50e6c7a]930
[2ee386d]931 string gameName(msg.buffer+4);
[50e6c7a]932 int numPlayers;
933
934 memcpy(&numPlayers, msg.buffer, 4);
935
[2ee386d]936 cout << "Received game info for " << gameName << " (num players: " << numPlayers << ")" << endl;
937
[e103b51]938 if (numPlayers > 0)
939 mapGames[gameName] = numPlayers;
940 else
941 mapGames.erase(gameName);
[50e6c7a]942
943 break;
944 }
[d519032]945 case MSG_TYPE_JOIN_GAME_SUCCESS:
946 {
947 cout << "Received a JOIN_GAME_SUCCESS message" << endl;
948
[03ba5e3]949 string gameName(msg.buffer);
[233e736]950 game = new Game(gameName, "../../data/map.txt");
[03ba5e3]951 cout << "Game name: " << gameName << endl;
[d519032]952
[e0fd377]953 state = STATE_GAME;
[03ba5e3]954 wndCurrent = wndNewGame;
[d519032]955
956 msgTo.type = MSG_TYPE_JOIN_GAME_ACK;
957 strcpy(msgTo.buffer, gameName.c_str());
958
[68d94de]959 msgProcessor.sendMessage(&msgTo, &server);
[d519032]960
961 break;
962 }
963 case MSG_TYPE_JOIN_GAME_FAILURE:
964 {
965 cout << "Received a JOIN_GAME_FAILURE message" << endl;
966
967 break;
968 }
[45b2750]969 default:
970 {
[1785314]971 cout << "(STATE_LOBBY) Received invlaid message of type " << msg.type << endl;
[50e6c7a]972
[365e156]973 break;
[45b2750]974 }
[4da5aa3]975 }
[eb8adb1]976
[4da5aa3]977 break;
978 }
[e0fd377]979 case STATE_GAME:
[803566d]980 {
[e0fd377]981 cout << "(STATE_GAME) ";
[803566d]982 switch(msg.type)
983 {
984 case MSG_TYPE_GAME_INFO:
985 {
[d519032]986 cout << "Received a GAME_INFO message" << endl;
[803566d]987
988 string gameName(msg.buffer+4);
989 int numPlayers;
990
991 memcpy(&numPlayers, msg.buffer, 4);
992
993 cout << "Received game info for " << gameName << " (num players: " << numPlayers << ")" << endl;
994
[e103b51]995 if (numPlayers > 0)
996 mapGames[gameName] = numPlayers;
997 else
998 mapGames.erase(gameName);
[803566d]999
1000 break;
1001 }
[3e44a59]1002 case MSG_TYPE_SCORE:
1003 {
1004 cout << "Received SCORE message!" << endl;
1005
1006 int blueScore;
1007 memcpy(&blueScore, msg.buffer, 4);
1008 cout << "blue score: " << blueScore << endl;
1009 game->setBlueScore(blueScore);
1010
1011 int redScore;
1012 memcpy(&redScore, msg.buffer+4, 4);
1013 cout << "red score: " << redScore << endl;
1014 game->setRedScore(redScore);
1015
1016 cout << "Processed SCORE message!" << endl;
1017
1018 break;
1019 }
1020 case MSG_TYPE_FINISH_GAME:
1021 {
1022 cout << "Got a finish game message" << endl;
1023 cout << "Should switch to STATE_LOBBY and show the final score" << endl;
1024
1025 unsigned int winner, blueScore, redScore;
[635ad9b]1026 memcpy(&winner, msg.buffer, 4);
1027 memcpy(&blueScore, msg.buffer+4, 4);
1028 memcpy(&redScore, msg.buffer+8, 4);
1029
1030 string gameName(msg.buffer+12);
1031
1032 cout << "winner: " << winner << endl;
1033 cout << "blueScore: " << blueScore << endl;
1034 cout << "redScore: " << redScore << endl;
1035 cout << "gameName: " << gameName << endl;
[3e44a59]1036
1037 gameSummary = new GameSummary(gameName, winner, blueScore, redScore);
1038
1039 delete game;
1040 game = NULL;
1041 state = STATE_LOBBY;
1042 wndCurrent = wndGameSummary;
1043
[635ad9b]1044
1045 cout << "winner from obj: " << gameSummary->getWinner() << endl;
1046 cout << "blueScore from obj: " << gameSummary->getBlueScore() << endl;
1047 cout << "redScore from obj: " << gameSummary->getRedScore() << endl;
1048 cout << "gameName from obj: " << gameSummary->getName() << endl;
[3e44a59]1049 break;
1050 }
[b4c5b6a]1051 case MSG_TYPE_PLAYER:
1052 {
1053 cout << "Received MSG_TYPE_PLAYER" << endl;
1054
[31b347a]1055 Player p("", "");
1056 p.deserialize(msg.buffer);
1057 p.timeLastUpdated = getCurrentMillis();
1058 p.isChasing = false;
1059 if (p.health <= 0)
1060 p.isDead = true;
1061 else
1062 p.isDead = false;
1063
1064 if (mapPlayers.find(p.id) != mapPlayers.end())
1065 *(mapPlayers[p.id]) = p;
[b4c5b6a]1066 else
[31b347a]1067 mapPlayers[p.id] = new Player(p);
[b4c5b6a]1068
[31b347a]1069 break;
[6012178]1070 }
1071 case MSG_TYPE_PLAYER_JOIN_GAME:
1072 {
1073 cout << "Received MSG_TYPE_PLAYER_JOIN_GAME" << endl;
1074
1075 Player p("", "");
1076 p.deserialize(msg.buffer);
1077 p.timeLastUpdated = getCurrentMillis();
1078 p.isChasing = false;
1079 if (p.health <= 0)
1080 p.isDead = true;
1081 else
1082 p.isDead = false;
1083
1084 if (mapPlayers.find(p.id) != mapPlayers.end())
1085 *(mapPlayers[p.id]) = p;
1086 else
1087 mapPlayers[p.id] = new Player(p);
[b4c5b6a]1088
[31b347a]1089 game->addPlayer(mapPlayers[p.id]);
[b4c5b6a]1090
1091 break;
1092 }
[fef7c69]1093 case MSG_TYPE_PLAYER_MOVE:
1094 {
1095 cout << "Received PLAYER_MOVE message" << endl;
1096
1097 unsigned int id;
1098 int x, y;
1099
1100 memcpy(&id, msg.buffer, 4);
1101 memcpy(&x, msg.buffer+4, 4);
1102 memcpy(&y, msg.buffer+8, 4);
1103
1104 cout << "id: " << id << endl;
1105
1106 mapPlayers[id]->target.x = x;
1107 mapPlayers[id]->target.y = y;
1108
1109 break;
1110 }
[803566d]1111 case MSG_TYPE_OBJECT:
1112 {
[e0fd377]1113 cout << "Received object message in STATE_GAME" << endl;
[803566d]1114
1115 WorldMap::Object o(0, WorldMap::OBJECT_NONE, 0, 0);
1116 o.deserialize(msg.buffer);
1117 cout << "object id: " << o.id << endl;
1118 game->getMap()->updateObject(o.id, o.type, o.pos.x, o.pos.y);
1119
1120 break;
1121 }
1122 case MSG_TYPE_REMOVE_OBJECT:
1123 {
[d519032]1124 cout << "Received REMOVE_OBJECT message!" << endl;
[803566d]1125
1126 int id;
1127 memcpy(&id, msg.buffer, 4);
1128
1129 cout << "Removing object with id " << id << endl;
1130
1131 if (!game->getMap()->removeObject(id))
1132 cout << "Did not remove the object" << endl;
1133
1134 break;
1135 }
[b8abc90]1136 case MSG_TYPE_ATTACK:
1137 {
1138 cout << "Received ATTACK message" << endl;
1139
1140 break;
1141 }
1142 case MSG_TYPE_START_ATTACK:
1143 {
1144 cout << "Received START_ATTACK message" << endl;
1145
1146 unsigned int id, targetId;
1147 memcpy(&id, msg.buffer, 4);
1148 memcpy(&targetId, msg.buffer+4, 4);
1149
1150 cout << "source id: " << id << endl;
1151 cout << "target id: " << targetId << endl;
1152
1153 // need to check the target exists in the current game
1154 Player* source = game->getPlayers()[id];
1155 source->targetPlayer = targetId;
1156 source->isChasing = true;
1157
1158 break;
1159 }
[58ca135]1160 case MSG_TYPE_PROJECTILE:
1161 {
1162 cout << "Received a PROJECTILE message" << endl;
1163
1164 unsigned int projId, x, y, targetId;
1165
1166 memcpy(&projId, msg.buffer, 4);
1167 memcpy(&x, msg.buffer+4, 4);
1168 memcpy(&y, msg.buffer+8, 4);
1169 memcpy(&targetId, msg.buffer+12, 4);
1170
1171 cout << "projId: " << projId << endl;
1172 cout << "x: " << x << endl;
1173 cout << "y: " << y << endl;
1174 cout << "Target: " << targetId << endl;
1175
1176 Projectile proj(x, y, targetId, 0);
1177 proj.setId(projId);
1178
1179 game->addProjectile(proj);
1180
1181 break;
1182 }
1183 case MSG_TYPE_REMOVE_PROJECTILE:
1184 {
1185 cout << "Received a REMOVE_PROJECTILE message" << endl;
1186
1187 unsigned int id;
1188 memcpy(&id, msg.buffer, 4);
1189
1190 game->removeProjectile(id);
1191
1192 break;
1193 }
[803566d]1194 default:
1195 {
[d519032]1196 cout << "Received invalid message of type " << msg.type << endl;
[803566d]1197
1198 break;
1199 }
1200 }
1201
1202 break;
1203 }
[4da5aa3]1204 default:
1205 {
1206 cout << "The state has an invalid value: " << state << endl;
1207
1208 break;
1209 }
1210 }
[0dde5da]1211}
[87b3ee2]1212
[929b4e0]1213int getRefreshRate(int width, int height)
1214{
1215 int numRefreshRates = al_get_num_display_modes();
1216 ALLEGRO_DISPLAY_MODE displayMode;
1217
1218 for(int i=0; i<numRefreshRates; i++) {
1219 al_get_display_mode(i, &displayMode);
1220
1221 if (displayMode.width == width && displayMode.height == height)
1222 return displayMode.refresh_rate;
1223 }
1224
1225 return 0;
1226}
1227
1228void drawMessageStatus(ALLEGRO_FONT* font)
1229{
1230 int clientMsgOffset = 5;
1231 int serverMsgOffset = 950;
1232
1233 al_draw_text(font, al_map_rgb(0, 255, 255), 0+clientMsgOffset, 43, ALLEGRO_ALIGN_LEFT, "ID");
1234 al_draw_text(font, al_map_rgb(0, 255, 255), 20+clientMsgOffset, 43, ALLEGRO_ALIGN_LEFT, "Type");
1235 al_draw_text(font, al_map_rgb(0, 255, 255), 240+clientMsgOffset, 43, ALLEGRO_ALIGN_LEFT, "Acked?");
1236
1237 al_draw_text(font, al_map_rgb(0, 255, 255), serverMsgOffset, 43, ALLEGRO_ALIGN_LEFT, "ID");
1238
1239 map<unsigned int, map<unsigned long, MessageContainer> >& sentMessages = msgProcessor.getSentMessages();
1240 int id, type;
1241 bool acked;
1242 ostringstream ossId, ossAcked;
1243
1244 map<unsigned int, map<unsigned long, MessageContainer> >::iterator it;
1245
1246 int msgCount = 0;
1247 for (it = sentMessages.begin(); it != sentMessages.end(); it++) {
1248 map<unsigned long, MessageContainer> playerMessage = it->second;
1249 map<unsigned long, MessageContainer>::iterator it2;
1250 for (it2 = playerMessage.begin(); it2 != playerMessage.end(); it2++) {
1251
1252 id = it->first;
1253 ossId.str("");;
1254 ossId << id;
1255
1256 type = it2->second.getMessage()->type;
1257 string typeStr = MessageContainer::getMsgTypeString(type);
1258
1259 acked = it2->second.getAcked();
1260 ossAcked.str("");;
1261 ossAcked << boolalpha << acked;
1262
1263 al_draw_text(font, al_map_rgb(0, 255, 0), clientMsgOffset, 60+15*msgCount, ALLEGRO_ALIGN_LEFT, ossId.str().c_str());
1264 al_draw_text(font, al_map_rgb(0, 255, 0), 20+clientMsgOffset, 60+15*msgCount, ALLEGRO_ALIGN_LEFT, typeStr.c_str());
1265 al_draw_text(font, al_map_rgb(0, 255, 0), 240+clientMsgOffset, 60+15*msgCount, ALLEGRO_ALIGN_LEFT, ossAcked.str().c_str());
1266
1267 msgCount++;
1268 }
1269 }
1270
1271 if (msgProcessor.getAckedMessages().size() > 0) {
1272 map<unsigned int, unsigned long long> ackedMessages = msgProcessor.getAckedMessages()[0];
1273 map<unsigned int, unsigned long long>::iterator it3;
1274
1275 msgCount = 0;
1276 for (it3 = ackedMessages.begin(); it3 != ackedMessages.end(); it3++) {
1277 ossId.str("");;
1278 ossId << it3->first;
1279
1280 al_draw_text(font, al_map_rgb(255, 0, 0), 25+serverMsgOffset, 60+15*msgCount, ALLEGRO_ALIGN_LEFT, ossId.str().c_str());
1281
1282 msgCount++;
1283 }
1284 }
1285}
1286
1287// Callback definitions
1288
[5c95436]1289void goToRegisterScreen()
1290{
1291 txtUsernameRegister->clear();
1292 txtPasswordRegister->clear();
[49da01a]1293 lblRegisterStatus->setText("");
1294 rblClasses->setSelectedButton(-1);
1295
1296 wndCurrent = wndRegister;
[5c95436]1297}
1298
1299void goToLoginScreen()
[87b3ee2]1300{
1301 txtUsername->clear();
1302 txtPassword->clear();
[49da01a]1303 lblLoginStatus->setText("");
1304
1305 wndCurrent = wndLogin;
[5c95436]1306}
1307
[bc70282]1308// maybe need a goToGameScreen function as well and add state changes to these functions as well
1309
[5c95436]1310void registerAccount()
1311{
1312 string username = txtUsernameRegister->getStr();
1313 string password = txtPasswordRegister->getStr();
1314
1315 txtUsernameRegister->clear();
1316 txtPasswordRegister->clear();
1317 // maybe clear rblClasses as well (add a method to RadioButtonList to enable this)
1318
1319 Player::PlayerClass playerClass;
1320
1321 switch (rblClasses->getSelectedButton()) {
1322 case 0:
1323 playerClass = Player::CLASS_WARRIOR;
1324 break;
1325 case 1:
1326 playerClass = Player::CLASS_RANGER;
1327 break;
1328 default:
1329 cout << "Invalid class selection" << endl;
1330 playerClass = Player::CLASS_NONE;
1331 break;
1332 }
[87b3ee2]1333
1334 msgTo.type = MSG_TYPE_REGISTER;
1335
1336 strcpy(msgTo.buffer, username.c_str());
1337 strcpy(msgTo.buffer+username.size()+1, password.c_str());
[5c95436]1338 memcpy(msgTo.buffer+username.size()+password.size()+2, &playerClass, 4);
[87b3ee2]1339
[68d94de]1340 msgProcessor.sendMessage(&msgTo, &server);
[87b3ee2]1341}
1342
1343void login()
1344{
1345 string strUsername = txtUsername->getStr();
1346 string strPassword = txtPassword->getStr();
1347 username = strUsername;
1348
1349 txtUsername->clear();
1350 txtPassword->clear();
1351
1352 msgTo.type = MSG_TYPE_LOGIN;
1353
1354 strcpy(msgTo.buffer, strUsername.c_str());
1355 strcpy(msgTo.buffer+username.size()+1, strPassword.c_str());
1356
[68d94de]1357 msgProcessor.sendMessage(&msgTo, &server);
[bc70282]1358
[1785314]1359 state = STATE_LOBBY;
[87b3ee2]1360}
1361
1362void logout()
1363{
[929b4e0]1364 switch(state) {
1365 case STATE_LOBBY:
1366 txtJoinGame->clear();
1367 txtCreateGame->clear();
1368 break;
1369 default:
1370 cout << "Logout called from invalid state: " << state << endl;
1371 break;
1372 }
[87b3ee2]1373
1374 msgTo.type = MSG_TYPE_LOGOUT;
1375
1376 strcpy(msgTo.buffer, username.c_str());
1377
[68d94de]1378 msgProcessor.sendMessage(&msgTo, &server);
[87b3ee2]1379}
1380
1381void quit()
1382{
1383 doexit = true;
1384}
1385
1386void sendChatMessage()
1387{
1388 string msg = txtChat->getStr();
1389 txtChat->clear();
1390
1391 msgTo.type = MSG_TYPE_CHAT;
1392 strcpy(msgTo.buffer, msg.c_str());
1393
[68d94de]1394 msgProcessor.sendMessage(&msgTo, &server);
[87b3ee2]1395}
[1f1eb58]1396
[b35b2b2]1397void toggleDebugging()
1398{
1399 debugging = !debugging;
1400}
1401
[929b4e0]1402void joinGame()
[b35b2b2]1403{
[929b4e0]1404 cout << "Joining game" << endl;
[bbebe9c]1405
1406 string msg = txtJoinGame->getStr();
1407 txtJoinGame->clear();
1408
1409 msgTo.type = MSG_TYPE_JOIN_GAME;
1410 strcpy(msgTo.buffer, msg.c_str());
1411
[68d94de]1412 msgProcessor.sendMessage(&msgTo, &server);
[dee75cc]1413}
[b35b2b2]1414
[929b4e0]1415void createGame()
[b35b2b2]1416{
[929b4e0]1417 cout << "Creating game" << endl;
[bbebe9c]1418
1419 string msg = txtCreateGame->getStr();
1420 txtCreateGame->clear();
1421
[d519032]1422 cout << "Sending message: " << msg.c_str() << endl;
1423
[bbebe9c]1424 msgTo.type = MSG_TYPE_CREATE_GAME;
1425 strcpy(msgTo.buffer, msg.c_str());
1426
[68d94de]1427 msgProcessor.sendMessage(&msgTo, &server);
[03ba5e3]1428}
1429
1430void leaveGame()
1431{
1432 cout << "Leaving game" << endl;
1433
1434 game = NULL;
1435
1436 state = STATE_LOBBY;
1437 wndCurrent = wndLobby;
1438
1439 msgTo.type = MSG_TYPE_LEAVE_GAME;
1440
[68d94de]1441 msgProcessor.sendMessage(&msgTo, &server);
[95ffe57]1442}
[3e44a59]1443
1444void closeGameSummary()
1445{
1446 delete gameSummary;
[635ad9b]1447 gameSummary = NULL;
[3e44a59]1448 wndCurrent = wndLobby;
[635ad9b]1449 cout << "Processed button actions" << endl;
[3e44a59]1450}
Note: See TracBrowser for help on using the repository browser.