Changes in / [c51da03:5c7f28d] in network-game


Ignore:
Location:
client
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • client/Client/GameRender.cpp

    rc51da03 r5c7f28d  
    11#include "GameRender.h"
    2 
    3 #include <cmath>
    42
    53#include <allegro5/allegro_primitives.h>
     
    6462               case OBJECT_RED_FLAG:
    6563                  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:
    6864                  break;
    6965            }
  • client/Client/RadioButtonList.cpp

    rc51da03 r5c7f28d  
    2323   al_clear_to_color(al_map_rgb(0, 0, 0));
    2424
    25    //int fontHeight = al_get_font_line_height(font);
     25   int fontHeight = al_get_font_line_height(font);
    2626
    2727   al_draw_text(font, al_map_rgb(0, 255, 0), 0, 0, ALLEGRO_ALIGN_LEFT, this->strLabel.c_str());
     
    4444   if (e.type == ALLEGRO_EVENT_MOUSE_BUTTON_UP) {
    4545      if (e.mouse.button == 1) {
    46          for (unsigned int i=0; i<this->vctRadioButtons.size(); i++) {
     46         for (int i=0; i<this->vctRadioButtons.size(); i++) {
    4747            centerY = y+26+i*20;
    4848
  • client/Client/RadioButtonList.h

    rc51da03 r5c7f28d  
    1515   string strLabel;
    1616   vector<string> vctRadioButtons;
    17    unsigned int selectedButton;
     17   int selectedButton;
    1818
    1919public:
  • client/Client/main.cpp

    rc51da03 r5c7f28d  
    1515#include <cstdio>
    1616#include <cstdlib>
    17 //#include <cmath>
     17#include <cmath>
    1818#include <sys/types.h>
    1919#include <string>
     
    133133   ALLEGRO_EVENT_QUEUE *event_queue = NULL;
    134134   ALLEGRO_TIMER *timer = NULL;
     135   bool key[4] = { false, false, false, false };
    135136   map<unsigned int, Player*> mapPlayers;
    136137   unsigned int curPlayerId = -1;
     
    696697               cout << "Got a logout message" << endl;
    697698
    698                unsigned int playerId;
     699               int playerId;
    699700
    700701               // Check if it's about you or another player
  • client/makefile

    rc51da03 r5c7f28d  
    11CC = g++
    22LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0`
    3 FLAGS = -Wall
     3FLAGS = $(LIB_FLAGS)
    44COMMON_PATH = ../common
    55DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o GameSummary.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
    66
    77gameClient : Client/main.cpp $(DEPENDENCIES)
    8         $(CC) -o $@ $+ $(FLAGS) $(LIB_FLAGS)
    9 
    10 %.o : Client/%.cpp
    11         $(CC) -c -o $@ $? $(FLAGS)
     8        $(CC) -o $@ $+ $(FLAGS)
    129
    1310Common.o : $(COMMON_PATH)/Common.cpp
     
    3532        $(CC) -c -o $@ $? $(FLAGS)
    3633
     34%.o : Client/%.cpp
     35        $(CC) -c -o $@ $? $(FLAGS)
     36
    3737clean:
    3838        rm *.o
Note: See TracChangeset for help on using the changeset viewer.