2P11/src/Model/Game.hpp

41 lines
726 B
C++
Raw Normal View History

2015-04-29 22:28:29 +04:00
#ifndef DEF_GAME
#define DEF_GAME
/* Game.h
* Defines the class Game
* A game allows a player to play. It contains a grid and pops numbers
* Creators : krilius, manzerbredes
* Date : 29/04/2015 */
#include <iostream>
2015-05-02 18:15:14 +02:00
#include <string>
2015-05-02 22:57:08 +02:00
#include "../Helpers/Keyboard.hpp"
2015-04-29 22:28:29 +04:00
#include "Grid.hpp"
#include "Stats.hpp"
2015-05-02 22:57:08 +02:00
#include <tuple>
2015-04-29 22:28:29 +04:00
class Game : public Grid
2015-04-29 22:28:29 +04:00
{
2015-05-01 10:24:45 +02:00
private:
2015-05-03 09:57:31 +02:00
//Members
//Grid m_grid;
Stats m_stats;
2015-05-01 10:24:45 +02:00
public:
2015-05-03 09:57:31 +02:00
//Constructor and Destructor
2015-05-01 10:24:45 +02:00
Game();
~Game();
2015-05-02 23:11:36 +02:00
2015-05-03 09:57:31 +02:00
//Helpers
2015-05-02 22:57:08 +02:00
bool swipe(kbdh::Direction direction);
void coutGrid();
void popRandomNumber();
//bool isOver();
2015-05-03 02:02:22 +02:00
2015-05-03 09:57:31 +02:00
//Getters and Setters
Stats getStats();
//int maxStrLenInGrid();
//std::vector<std::vector<int> > getGrid();
2015-04-29 22:28:29 +04:00
};
2015-04-30 09:42:40 +02:00
#endif