Organize all the code

This commit is contained in:
manzerbredes 2015-05-03 09:57:31 +02:00
parent af7f2fc870
commit 4cc6c6596b
7 changed files with 57 additions and 33 deletions

View file

@ -2,14 +2,22 @@
#include <SFML/Window/Keyboard.hpp> #include <SFML/Window/Keyboard.hpp>
#include "../../Helpers/Keyboard.hpp" #include "../../Helpers/Keyboard.hpp"
//==================== Constructor and Destructor ====================
//Constructor
ConsoleController::ConsoleController() ConsoleController::ConsoleController()
{ {
} }
//Destructor
ConsoleController::~ConsoleController() ConsoleController::~ConsoleController()
{ {
} }
//==================== Helpers ====================
//Run the game.
void ConsoleController::run() void ConsoleController::run()
{ {
@ -22,7 +30,7 @@ void ConsoleController::run()
//Pop a random number on the grid //Pop a random number on the grid
m_game.popRandomNumber(); m_game.popRandomNumber();
//First cout stats
this->coutStats(); this->coutStats();
//First cout grid //First cout grid
@ -38,21 +46,25 @@ void ConsoleController::run()
//Apply move //Apply move
bool moveDone=m_game.swipe(keyPress); bool moveDone=m_game.swipe(keyPress);
//Cout stats
this->coutStats(); this->coutStats();
//Cout grid //Cout grid
m_game.coutGrid(); m_game.coutGrid();
} }
//Last cout stats
this->coutStats(); this->coutStats();
//Last cout grid
m_game.coutGrid(); m_game.coutGrid();
} }
//Wait for keypress and return the keyPress.
kbdh::Direction ConsoleController::waitArrowKeyPress() kbdh::Direction ConsoleController::waitArrowKeyPress()
{ {
//Initialise keyPress //Initialise keyPress
@ -92,7 +104,6 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
} }
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down)) if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
{ {
// la touche "flèche gauche" est enfoncée : on bouge le personnage
keyPress=kbdh::Down; keyPress=kbdh::Down;
while(sf::Keyboard::isKeyPressed(sf::Keyboard::Down)) while(sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
{ {
@ -107,12 +118,7 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
} }
void ConsoleController::clearScreen(){ //Cout the stats of the game
for(int i;i<100;i++){
std::cout << std::endl;
}
}
void ConsoleController::coutStats(){ void ConsoleController::coutStats(){
std::cout << std::endl << "Score : " << m_game.getScore() << std::endl; std::cout << std::endl << "Score : " << m_game.getScore() << std::endl;

View file

@ -18,10 +18,12 @@ class ConsoleController
Game m_game; Game m_game;
kbdh::Direction waitArrowKeyPress(); kbdh::Direction waitArrowKeyPress();
public: public:
//Constructor and Destructor
ConsoleController(); ConsoleController();
~ConsoleController(); ~ConsoleController();
//Helpers
void run(); void run();
void clearScreen();
void coutStats(); void coutStats();
}; };

View file

@ -10,6 +10,7 @@ namespace kbdh {
//Key arrow //Key arrow
enum Direction { Up, Down, Left, Right }; enum Direction { Up, Down, Left, Right };
//Key arrow typedef
typedef enum Direction Direction; typedef enum Direction Direction;
} }

View file

@ -1,15 +1,19 @@
#include "Game.hpp" #include "Game.hpp"
//==================== Constructor and Destructor ====================
//Constructor
Game::Game() : m_grid(), m_score(0), m_nbMove(0){ Game::Game() : m_grid(), m_score(0), m_nbMove(0){
} }
//Destructor
Game::~Game(){ Game::~Game(){
} }
//==================== Helpers ====================
//Swipe action
bool Game::swipe(kbdh::Direction direction){ bool Game::swipe(kbdh::Direction direction){
bool moveDone; bool moveDone;
@ -40,14 +44,17 @@ bool Game::swipe(kbdh::Direction direction){
} }
//Cout the grid
void Game::coutGrid(){ void Game::coutGrid(){
std::cout << m_grid.description(); std::cout << m_grid.description();
} }
//Return true if the game is lost. False else.
bool Game::isOver(){ bool Game::isOver(){
return m_grid.isOver(); return m_grid.isOver();
} }
//Pop a random number on the grid
void Game::popRandomNumber(){ void Game::popRandomNumber(){
std::tuple<int, int> coord(m_grid.getRandomEmptyCellCoord()); std::tuple<int, int> coord(m_grid.getRandomEmptyCellCoord());
@ -65,11 +72,14 @@ void Game::popRandomNumber(){
m_grid.setCell(coord, number); m_grid.setCell(coord, number);
} }
//==================== Getters and Setter ====================
//Retrieve the Score
int Game::getScore(){ int Game::getScore(){
return m_score; return m_score;
} }
//Retrieve the number of moves
int Game::getNbMove(){ int Game::getNbMove(){
return m_nbMove; return m_nbMove;
} }

View file

@ -16,18 +16,23 @@
class Game class Game
{ {
private: private:
//Members
Grid m_grid; Grid m_grid;
int m_score; int m_score;
int m_nbMove; int m_nbMove;
public: public:
//Constructor and Destructor
Game(); Game();
~Game(); ~Game();
//Helpers
bool swipe(kbdh::Direction direction); bool swipe(kbdh::Direction direction);
void coutGrid(); void coutGrid();
void popRandomNumber(); void popRandomNumber();
bool isOver(); bool isOver();
//Getters and Setters
int getScore(); int getScore();
int getNbMove(); int getNbMove();
}; };

View file

@ -15,45 +15,45 @@
class Grid class Grid
{ {
private: private:
//Members
int m_size; int m_size;
std::vector<std::vector<int> > m_grid; std::vector<std::vector<int> > m_grid;
int m_lastMoveScore; int m_lastMoveScore;
//Private methods
int maxStrLenInGrid(); int maxStrLenInGrid();
public: public:
//Constructor and Destructor
Grid(); Grid();
~Grid(); ~Grid();
std::string description(); //Defragment and merge methods
bool isEmpty(int i, int j);
std::tuple<int, int> getRandomEmptyCellCoord();
bool setCell(std::tuple<int, int> coord, int value);
bool setCell(int i, int j, int value);
std::vector<int> swipeLine(std::vector<int> line);
std::vector<int> rightDefragment(std::vector<int> line); std::vector<int> rightDefragment(std::vector<int> line);
std::vector<int> leftDefragment(std::vector<int> line); std::vector<int> leftDefragment(std::vector<int> line);
std::vector<int> rightMerge(std::vector<int> line); std::vector<int> rightMerge(std::vector<int> line);
std::vector<int> leftMerge(std::vector<int> line); std::vector<int> leftMerge(std::vector<int> line);
std::vector<int> getCol(int col); //Swipe methods
bool isFull();
bool isOver();
void setCol(int col, std::vector<int> colVect);
std::vector<int> reverseLine(std::vector<int> line);
bool compareLines(std::vector<int> line1, std::vector<int> line2);
//Moves
bool swipeRight(); bool swipeRight();
bool swipeLeft(); bool swipeLeft();
bool swipeUp(); bool swipeUp();
bool swipeDown(); bool swipeDown();
//Helpers
bool isFull();
bool isOver();
bool isEmpty(int i, int j);
std::tuple<int, int> getRandomEmptyCellCoord();
bool compareLines(std::vector<int> line1, std::vector<int> line2);
std::vector<int> reverseLine(std::vector<int> line);
std::string description();
//Getters and Setters
bool setCell(std::tuple<int, int> coord, int value);
bool setCell(int i, int j, int value);
std::vector<int> getCol(int col);
void setCol(int col, std::vector<int> colVect);
int getLastMoveScore(); int getLastMoveScore();
}; };

View file

@ -25,6 +25,6 @@ int main()
//Run the game //Run the game
controller.run(); controller.run();
//End the application
return 0; return 0;
} }