Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 16, 2012, 10:29:49 PM (13 years ago)
Author:
jo
Message:

Fighting with the controller. 'Undefined reference to orxonox::OverlayText' won. I don't see the error at the moment.

Location:
code/branches/pCuts/src/modules/tetris
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pCuts/src/modules/tetris/CMakeLists.txt

    r9082 r9090  
    44  TetrisStone.cc
    55  TetrisBrick.cc
     6  TetrisScore.cc
    67)
    78
  • code/branches/pCuts/src/modules/tetris/Tetris.cc

    r9089 r9090  
    3131 *BUG e) multiple rows are not cleared in one round
    3232 *
    33  *TASK a) give points for winning
     33 *
    3434 *TASK b) write a hud (show points gained; new brick)
    3535 *TASK c) end the game in a nicer way
    3636 *TASK d) save the highscore
    3737 *TASK e) eye candy
    38  *TASK f) increasing speed
    3938 */
    4039
     
    409408                    {
    410409                        clearRow(row);
    411                         this->playerScored(this->player_);
     410                        this->playerScored(this->player_);// add points
     411                        //increase the stone's speed
     412                        this->center_->setStoneSpeed(this->center_->getStoneSpeed()+1.0f);
    412413                    }
    413414                }
  • code/branches/pCuts/src/modules/tetris/TetrisPrereqs.h

    r9082 r9090  
    6969    class TetrisStone;
    7070    class TetrisBrick;
     71    class TetrisScore;
    7172}
    7273
Note: See TracChangeset for help on using the changeset viewer.