Add operator overload squeleton
This commit is contained in:
parent
40d48a2d4f
commit
01b25accba
5 changed files with 66 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
#Make Model lib
|
||||
add_library(Model Grid.cpp Game.cpp)
|
||||
add_library(Model Grid.cpp Game.cpp )
|
||||
|
||||
target_link_libraries(Model Elements)
|
||||
|
||||
|
|
|
@ -24,35 +24,51 @@ template<class T> class Cell
|
|||
m_Element->setValue(value);
|
||||
}
|
||||
|
||||
|
||||
//Destructor
|
||||
~Cell()
|
||||
{
|
||||
delete m_Element;
|
||||
}
|
||||
|
||||
|
||||
//Test if the cell is empty
|
||||
bool isEmpty()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
T getElement(){
|
||||
return this->m_Element;
|
||||
}
|
||||
|
||||
bool equals(Cell<T> *cell){
|
||||
/*if(cell->getElement() == this->m_Element){
|
||||
return true;
|
||||
}*/
|
||||
return true;
|
||||
}
|
||||
|
||||
//Return the element value
|
||||
std::string getElementValue()
|
||||
{
|
||||
return m_Element->getValue();
|
||||
}
|
||||
|
||||
bool equals(Cell *otherCell)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
// Description
|
||||
std::string description()
|
||||
{
|
||||
return m_Element->description();
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
template<class T>
|
||||
bool operator==(Cell<T> a, Cell<T> b){
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
StringElement::StringElement(){
|
||||
this->m_value=".";
|
||||
this->m_value="";
|
||||
}
|
||||
|
||||
StringElement::~StringElement(){
|
||||
|
@ -20,5 +20,28 @@ void StringElement::setValue(std::string value){
|
|||
}
|
||||
|
||||
std::string StringElement::description(){
|
||||
if(this->m_value==""){
|
||||
return " ";
|
||||
}
|
||||
return this->m_value;
|
||||
}
|
||||
|
||||
bool StringElement::isEmpty(){
|
||||
if(this->m_value==""){
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
bool StringElement::equals(StringElement const& element) const{
|
||||
if(this->m_value.compare(element.m_value) == 0){
|
||||
return true;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool operator==(StringElement const& a, StringElement const& b){
|
||||
return a.equals(b);
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,10 @@ class StringElement
|
|||
std::string getValue();
|
||||
void setValue(std::string value);
|
||||
|
||||
bool isEmpty();
|
||||
bool equals(StringElement const& element) const;
|
||||
std::string description();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
15
src/main.cpp
15
src/main.cpp
|
@ -10,11 +10,26 @@
|
|||
#include "./Controllers/ConsoleController/ConsoleController.hpp"
|
||||
//-----------------------------
|
||||
|
||||
#include "./Model/Cell.hpp"
|
||||
//#include "./Model/Elements/StringElement.hpp"
|
||||
|
||||
//----- Start -----
|
||||
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
Cell<StringElement> cell1("loic");
|
||||
Cell<StringElement> cell2("loic");
|
||||
|
||||
|
||||
if(cell1==cell2){
|
||||
std::cout << "Egale" << std::endl;
|
||||
}
|
||||
else{
|
||||
std::cout << "Différent" << std::endl;
|
||||
}
|
||||
|
||||
//Init random
|
||||
srand(time(NULL));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue