Correct bugs

This commit is contained in:
manzerbredes 2015-05-02 11:06:54 +02:00
parent 01b25accba
commit 6b8a144bd1
10 changed files with 44 additions and 41 deletions

1
.gitignore vendored
View file

@ -7,3 +7,4 @@ CMakeCache.txt
*.app *.app
2P11 2P11
clear.sh clear.sh
*.vim

View file

@ -24,8 +24,9 @@ void ConsoleController::play()
m_game->showGrid(); m_game->showGrid();
//Start game //Start game
while (!m_game->isOver()) while (1)
{ {
std::cout << m_game->isOver();
//Get key press //Get key press
keyPress=this->waitArrowKeyPress(); keyPress=this->waitArrowKeyPress();

View file

@ -34,18 +34,18 @@ template<class T> class Cell
//Test if the cell is empty //Test if the cell is empty
bool isEmpty() bool isEmpty()
{ {
return true; return this->m_Element->isEmpty();
} }
T getElement(){ T* getElement(){
return this->m_Element; return this->m_Element;
} }
bool equals(Cell<T> *cell){ bool equals(Cell<T> *cell){
/*if(cell->getElement() == this->m_Element){ if(m_Element->equals(cell->getElement())){
return true; return true;
}*/ }
return true; return false;
} }
//Return the element value //Return the element value
@ -67,7 +67,7 @@ template<class T> class Cell
template<class T> template<class T>
bool operator==(Cell<T> a, Cell<T> b){ bool operator==(Cell<T> a, Cell<T> b){
return true; return a.equals(&b);
} }
#endif #endif

View file

@ -33,15 +33,10 @@ bool StringElement::isEmpty(){
return false; return false;
} }
bool StringElement::equals(StringElement const& element) const{ bool StringElement::equals(StringElement *element){
if(this->m_value.compare(element.m_value) == 0){ if(this->m_value.compare(element->m_value) == 0){
return true; return true;
} }
return true; return false;
} }
bool operator==(StringElement const& a, StringElement const& b){
return a.equals(b);
}

View file

@ -21,7 +21,7 @@ class StringElement
void setValue(std::string value); void setValue(std::string value);
bool isEmpty(); bool isEmpty();
bool equals(StringElement const& element) const; bool equals(StringElement *element);
std::string description(); std::string description();
}; };

View file

@ -10,18 +10,7 @@ Game::~Game()
delete m_grid; delete m_grid;
} }
void Game::play()
{
while(!m_grid->gridIsFull())
{
m_grid->show();
pop();
std::cout << std::endl;
}
m_grid->show();
}
void Game::showGrid() void Game::showGrid()
{ {
@ -50,5 +39,12 @@ void Game::pop()
bool Game::isOver() bool Game::isOver()
{ {
return m_grid->gridIsFull(); if(m_grid->gridIsFull()){
for(int i=0;i<4;i++){
std::cout << m_grid->getCell(0,i)->description();
}
}
return true;
} }

View file

@ -15,13 +15,12 @@
class Game class Game
{ {
private: private:
Grid * m_grid; Grid *m_grid;
public: public:
Game(); Game();
~Game(); ~Game();
void play();
void pop(); void pop();
void showGrid(); void showGrid();
bool isOver(); bool isOver();

View file

@ -58,18 +58,17 @@ bool Grid::isEmpty(int i, int j)
bool Grid::gridIsFull() bool Grid::gridIsFull()
{ {
bool isFull = true;
for (int i = 0; i < m_size && isFull; i++) for (int i = 0; i < m_size ; i++)
{ {
for (int j = 0; j < m_size && isFull; j++) for (int j = 0; j < m_size ; j++)
{ {
if (m_table[i][j]->isEmpty()) if (m_table[i][j]->isEmpty())
isFull = false; return false;
} }
} }
return isFull; return true;
} }
void Grid::setCell(int i, int j, Cell<StringElement> *cell) void Grid::setCell(int i, int j, Cell<StringElement> *cell)
@ -81,5 +80,14 @@ void Grid::setCell(int i, int j, Cell<StringElement> *cell)
} }
} }
Cell<StringElement>* Grid::getCell(short i, short j){
return m_table[i][j];
}
int Grid::getNRows(){
return m_table[0].size();
}
int Grid::getNCols(){
return m_table.size();
}

View file

@ -27,7 +27,10 @@ class Grid
bool isEmpty(int i, int j); bool isEmpty(int i, int j);
bool gridIsFull(); bool gridIsFull();
void setCell(int i, int j, Cell<StringElement> * cell); int getNRows();
int getNCols();
void setCell(int i, int j, Cell<StringElement> *cell);
Cell<StringElement>* getCell(short i, short j);
}; };

View file

@ -19,15 +19,15 @@
int main() int main()
{ {
Cell<StringElement> cell1("loic"); Cell<StringElement> *cell1 = new Cell<StringElement>("");
Cell<StringElement> cell2("loic"); Cell<StringElement> *cell2 = new Cell<StringElement>("i");
if(cell1==cell2){ if(cell2->isEmpty()){
std::cout << "Egale" << std::endl; std::cout << "Empty" << std::endl;
} }
else{ else{
std::cout << "Différent" << std::endl; std::cout << "Not empty" << std::endl;
} }
//Init random //Init random