Changeset 257de75 in network-game for client/Client


Ignore:
Timestamp:
Dec 25, 2013, 4:57:17 PM (11 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
29fdf12
Parents:
df74597
Message:

Removed some debug messages from the client

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/main.cpp

    rdf74597 r257de75  
    599599            }
    600600         }else if (wndCurrent == wndGameSummary) {
    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 
    606601            ostringstream ossBlueScore, ossRedScore;
    607 
    608             cout << "Declared scores" << endl;
    609602
    610603            ossBlueScore << "Blue Score: " << gameSummary->getBlueScore();
    611604            ossRedScore << "Red Score: " << gameSummary->getRedScore();
    612 
    613             cout << "set scores" << endl;
    614605
    615606            string strWinner;
     
    622613               strWinner = "winner set to wrong value";
    623614
    624             cout << "Calling the drawing routines" << endl;
    625 
    626615            al_draw_text(font, al_map_rgb(0, 255, 0), 512, 40, ALLEGRO_ALIGN_CENTRE, gameSummary->getName().c_str());
    627616            al_draw_text(font, al_map_rgb(0, 255, 0), 330, 80, ALLEGRO_ALIGN_LEFT, ossBlueScore.str().c_str());
    628617            al_draw_text(font, al_map_rgb(0, 255, 0), 515, 80, ALLEGRO_ALIGN_LEFT, ossRedScore.str().c_str());
    629618            al_draw_text(font, al_map_rgb(0, 255, 0), 512, 120, ALLEGRO_ALIGN_CENTRE, strWinner.c_str());
    630 
    631             cout << "Done drawing game summary" << endl;
    632619         }
    633620
Note: See TracChangeset for help on using the changeset viewer.