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