Changeset c51da03 in network-game for client/Client
- Timestamp:
- Jan 26, 2014, 9:46:43 PM (11 years ago)
- Branches:
- master
- Children:
- c991530
- Parents:
- 5c7f28d (diff), 1e250bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- client/Client
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/GameRender.cpp
r5c7f28d rc51da03 1 1 #include "GameRender.h" 2 3 #include <cmath> 2 4 3 5 #include <allegro5/allegro_primitives.h> … … 62 64 case OBJECT_RED_FLAG: 63 65 al_draw_filled_rectangle(it->pos.x-8+mapPos.x, it->pos.y-8+mapPos.y, it->pos.x+8+mapPos.x, it->pos.y+8+mapPos.y, al_map_rgb(255, 0, 0)); 66 break; 67 case OBJECT_NONE: 64 68 break; 65 69 } -
client/Client/RadioButtonList.cpp
r5c7f28d rc51da03 23 23 al_clear_to_color(al_map_rgb(0, 0, 0)); 24 24 25 int fontHeight = al_get_font_line_height(font);25 //int fontHeight = al_get_font_line_height(font); 26 26 27 27 al_draw_text(font, al_map_rgb(0, 255, 0), 0, 0, ALLEGRO_ALIGN_LEFT, this->strLabel.c_str()); … … 44 44 if (e.type == ALLEGRO_EVENT_MOUSE_BUTTON_UP) { 45 45 if (e.mouse.button == 1) { 46 for ( int i=0; i<this->vctRadioButtons.size(); i++) {46 for (unsigned int i=0; i<this->vctRadioButtons.size(); i++) { 47 47 centerY = y+26+i*20; 48 48 -
client/Client/RadioButtonList.h
r5c7f28d rc51da03 15 15 string strLabel; 16 16 vector<string> vctRadioButtons; 17 int selectedButton;17 unsigned int selectedButton; 18 18 19 19 public: -
client/Client/main.cpp
r5c7f28d rc51da03 15 15 #include <cstdio> 16 16 #include <cstdlib> 17 #include <cmath>17 //#include <cmath> 18 18 #include <sys/types.h> 19 19 #include <string> … … 133 133 ALLEGRO_EVENT_QUEUE *event_queue = NULL; 134 134 ALLEGRO_TIMER *timer = NULL; 135 bool key[4] = { false, false, false, false };136 135 map<unsigned int, Player*> mapPlayers; 137 136 unsigned int curPlayerId = -1; … … 697 696 cout << "Got a logout message" << endl; 698 697 699 int playerId;698 unsigned int playerId; 700 699 701 700 // Check if it's about you or another player
Note:
See TracChangeset
for help on using the changeset viewer.