Clean some things
This commit is contained in:
parent
6b305938b3
commit
e72ce20365
4 changed files with 15 additions and 28 deletions
|
@ -49,11 +49,6 @@ void Game::coutGrid(){
|
|||
std::cout << this->description();
|
||||
}
|
||||
|
||||
//Return true if the game is lost. False else.
|
||||
//bool Game::isOver(){
|
||||
//return m_grid.isOver();
|
||||
//}
|
||||
|
||||
//Pop a random number on the grid
|
||||
void Game::popRandomNumber(){
|
||||
std::tuple<int, int> coord(Grid::getRandomEmptyCellCoord());
|
||||
|
@ -69,22 +64,13 @@ void Game::popRandomNumber(){
|
|||
number=2;
|
||||
}
|
||||
|
||||
|
||||
Grid::setCell(coord, number);
|
||||
}
|
||||
|
||||
|
||||
//==================== Getters and Setter ====================
|
||||
|
||||
//Retrieve the Score
|
||||
Stats Game::getStats(){
|
||||
return m_stats;
|
||||
}
|
||||
|
||||
|
||||
//std::vector<std::vector<int> > Game::getGrid(){
|
||||
//return m_grid.getGrid();
|
||||
//}
|
||||
|
||||
|
||||
//int Game::maxStrLenInGrid(){
|
||||
//return m_grid.maxStrLenInGrid();
|
||||
//}
|
||||
|
|
|
@ -9,16 +9,16 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
#include "../Helpers/Keyboard.hpp"
|
||||
#include "Grid.hpp"
|
||||
#include "Stats.hpp"
|
||||
#include <tuple>
|
||||
|
||||
class Game : public Grid
|
||||
{
|
||||
private:
|
||||
//Members
|
||||
//Grid m_grid;
|
||||
Stats m_stats;
|
||||
public:
|
||||
//Constructor and Destructor
|
||||
|
@ -29,12 +29,9 @@ class Game : public Grid
|
|||
bool swipe(kbdh::Direction direction);
|
||||
void coutGrid();
|
||||
void popRandomNumber();
|
||||
//bool isOver();
|
||||
|
||||
//Getters and Setters
|
||||
Stats getStats();
|
||||
//int maxStrLenInGrid();
|
||||
//std::vector<std::vector<int> > getGrid();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
#include "Stats.hpp"
|
||||
|
||||
|
||||
|
||||
//==================== Constructor and destructor ====================
|
||||
|
||||
//Constructor
|
||||
Stats::Stats() :
|
||||
m_score(0),
|
||||
m_nbMove(0)
|
||||
|
@ -8,11 +12,12 @@ Stats::Stats() :
|
|||
|
||||
}
|
||||
|
||||
//Destructor
|
||||
Stats::~Stats(){
|
||||
}
|
||||
|
||||
|
||||
|
||||
//==================== Helpers ====================
|
||||
void Stats::incScore(int value){
|
||||
m_score+=value;
|
||||
}
|
||||
|
@ -20,7 +25,7 @@ void Stats::incnbMove(){
|
|||
m_nbMove++;
|
||||
}
|
||||
|
||||
|
||||
//==================== Getters ====================
|
||||
int Stats::getScore(){
|
||||
return m_score;
|
||||
}
|
||||
|
|
|
@ -4,22 +4,21 @@
|
|||
#include <iostream>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
class Stats{
|
||||
|
||||
private:
|
||||
int m_score;
|
||||
int m_nbMove;
|
||||
public:
|
||||
|
||||
//Constructor and destructor
|
||||
Stats();
|
||||
~Stats();
|
||||
|
||||
//Helpers
|
||||
void incScore(int value);
|
||||
void incnbMove();
|
||||
|
||||
|
||||
//Getters
|
||||
int getScore();
|
||||
int getNbMove();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue