4 const char *target::startTag =
"<TSTART>\n\0";
5 const char *target::endTag =
"<TEND>\n\0";
6 const int target::startTagSize = strlen(target::startTag);
7 const int target::endTagSize = strlen(target::endTag);
9 const int target::maxTitleSize = 255;
10 const int target::maxDescSize = 255;
22 target::target(uint8_t r, uint8_t g, uint8_t b, std::string titleIn, targetType::types typeIn){
26 this->setTitle(titleIn);
27 this->setDescription(
"No Description");
31 bool target::operator == (
const target& other)
const{
33 if(this->getType() != other.getType()){
return false;}
36 if(this->getR() != other.getR()){
return false;}
37 if(this->getG() != other.getG()){
return false;}
38 if(this->getB() != other.getB()){
return false;}
41 if( this->getTitle() != other.getTitle()){
return false;}
42 if( this->getDescription() != other.getDescription()){
return false;};
48 bool target::operator !=(
const target& other)
const{
49 return !(*
this == other);
53 void target::toFile(std::fstream &fs){
57 fs.write(startTag, startTagSize);
60 fs.write((
char*)&titleLen,
sizeof(titleLen));
61 fs.write(title,titleLen);
62 fs.write((
char*)&descLen,
sizeof(descLen));
63 fs.write(description,descLen);
64 fs.write((
char*)&r,
sizeof(r));
65 fs.write((
char*)&g,
sizeof(g));
66 fs.write((
char*)&b,
sizeof(g));
67 fs.write((
char*)&type,
sizeof(type));
70 fs.write(endTag, endTagSize);
76 bool target::fromFile(std::fstream &fs){
80 char* tempStart =
new char[startTagSize];
81 fs.read(tempStart, startTagSize);
82 bool cont = !strncmp(tempStart, startTag, startTagSize);
85 if(!cont){
return cont;}
88 fs.read((
char*)&(this->titleLen),
sizeof(titleLen));
92 this->title =
new char[titleLen];
93 fs.read(this->title, this->titleLen);
97 fs.read((
char*)&(this->descLen),
sizeof(descLen));
101 this->description =
new char[descLen];
102 fs.read(this->description, this->descLen);
106 fs.read((
char*)&this->r,
sizeof(this->r));
107 fs.read((
char*)&this->g,
sizeof(this->g));
108 fs.read((
char*)&this->b,
sizeof(this->b));
112 fs.read((
char*)&this->type,
sizeof(this->type));
116 char* tempEnd =
new char[endTagSize];
117 fs.read(tempEnd, endTagSize);
118 cont = !strncmp(tempEnd, endTag, endTagSize);
126 bool target::nextTargetExist(std::fstream &fs){
127 std::fstream::pos_type startPos = fs.tellg();
129 char* tempSTag =
new char[startTagSize];
130 fs.read(tempSTag, startTagSize);
131 bool exist = !strncmp(tempSTag, startTag, startTagSize);
147 void target::setTitle(std::string titIn){
148 if(this->title == NULL){
delete this->title;}
149 this->titleLen = titIn.size() + 1;
150 this->title =
new char[this->titleLen];
151 strncpy(this->title, titIn.data(), this->titleLen);
154 void target::setDescription(std::string descIn){
155 if(this->description == NULL){
delete this->description;}
156 this->descLen = descIn.size() + 1;
157 this->description =
new char[descLen];
158 strncpy(this->description, descIn.data(), this->descLen);
160 void target::setType(targetType::types typIn){
163 void target::setR(uint8_t u8In){
166 void target::setG(uint8_t u8In){
169 void target::setB(uint8_t u8In){
173 std::string target::getTitle()
const{
174 std::shared_ptr<char> p(title, &free);
175 std::string title_string(p.get());
178 std::string target::getDescription()
const{
179 std::shared_ptr<char> p(description, &free);
180 std::string desc_string(p.get());
183 targetType::types target::getType()
const{
187 uint8_t target::getR()
const{
return this->r;}
188 uint8_t target::getG()
const{
return this->g;}
189 uint8_t target::getB()
const{
return this->b;}