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();
|
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
|
//Pop a random number on the grid
|
||||||
void Game::popRandomNumber(){
|
void Game::popRandomNumber(){
|
||||||
std::tuple<int, int> coord(Grid::getRandomEmptyCellCoord());
|
std::tuple<int, int> coord(Grid::getRandomEmptyCellCoord());
|
||||||
|
@ -69,22 +64,13 @@ void Game::popRandomNumber(){
|
||||||
number=2;
|
number=2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Grid::setCell(coord, number);
|
Grid::setCell(coord, number);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//==================== Getters and Setter ====================
|
//==================== Getters and Setter ====================
|
||||||
|
|
||||||
//Retrieve the Score
|
//Retrieve the Score
|
||||||
Stats Game::getStats(){
|
Stats Game::getStats(){
|
||||||
return m_stats;
|
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 <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <tuple>
|
||||||
|
|
||||||
#include "../Helpers/Keyboard.hpp"
|
#include "../Helpers/Keyboard.hpp"
|
||||||
#include "Grid.hpp"
|
#include "Grid.hpp"
|
||||||
#include "Stats.hpp"
|
#include "Stats.hpp"
|
||||||
#include <tuple>
|
|
||||||
|
|
||||||
class Game : public Grid
|
class Game : public Grid
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
//Members
|
//Members
|
||||||
//Grid m_grid;
|
|
||||||
Stats m_stats;
|
Stats m_stats;
|
||||||
public:
|
public:
|
||||||
//Constructor and Destructor
|
//Constructor and Destructor
|
||||||
|
@ -29,12 +29,9 @@ class Game : public Grid
|
||||||
bool swipe(kbdh::Direction direction);
|
bool swipe(kbdh::Direction direction);
|
||||||
void coutGrid();
|
void coutGrid();
|
||||||
void popRandomNumber();
|
void popRandomNumber();
|
||||||
//bool isOver();
|
|
||||||
|
|
||||||
//Getters and Setters
|
//Getters and Setters
|
||||||
Stats getStats();
|
Stats getStats();
|
||||||
//int maxStrLenInGrid();
|
|
||||||
//std::vector<std::vector<int> > getGrid();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#include "Stats.hpp"
|
#include "Stats.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//==================== Constructor and destructor ====================
|
||||||
|
|
||||||
|
//Constructor
|
||||||
Stats::Stats() :
|
Stats::Stats() :
|
||||||
m_score(0),
|
m_score(0),
|
||||||
m_nbMove(0)
|
m_nbMove(0)
|
||||||
|
@ -8,11 +12,12 @@ Stats::Stats() :
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Destructor
|
||||||
Stats::~Stats(){
|
Stats::~Stats(){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//==================== Helpers ====================
|
||||||
void Stats::incScore(int value){
|
void Stats::incScore(int value){
|
||||||
m_score+=value;
|
m_score+=value;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +25,7 @@ void Stats::incnbMove(){
|
||||||
m_nbMove++;
|
m_nbMove++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//==================== Getters ====================
|
||||||
int Stats::getScore(){
|
int Stats::getScore(){
|
||||||
return m_score;
|
return m_score;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,22 +4,21 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Stats{
|
class Stats{
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int m_score;
|
int m_score;
|
||||||
int m_nbMove;
|
int m_nbMove;
|
||||||
public:
|
public:
|
||||||
|
//Constructor and destructor
|
||||||
Stats();
|
Stats();
|
||||||
~Stats();
|
~Stats();
|
||||||
|
|
||||||
|
//Helpers
|
||||||
void incScore(int value);
|
void incScore(int value);
|
||||||
void incnbMove();
|
void incnbMove();
|
||||||
|
|
||||||
|
//Getters
|
||||||
int getScore();
|
int getScore();
|
||||||
int getNbMove();
|
int getNbMove();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue