[121] | 1 | // This file is a part of the Framsticks GDK. |
---|
| 2 | // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[109] | 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
| 5 | #include "geno.h" |
---|
| 6 | #include <frams/model/model.h> |
---|
| 7 | |
---|
| 8 | SListTempl<GenoValidator*> Geno::validators; |
---|
| 9 | |
---|
| 10 | void Geno::init(const SString& genstring,char genformat,const SString& genname,const SString& comment) |
---|
| 11 | { |
---|
| 12 | refcount=1; |
---|
| 13 | owner=0; |
---|
| 14 | f0gen=0; |
---|
| 15 | mapinshift=0; |
---|
| 16 | mapoutshift=0; |
---|
| 17 | isvalid=-1; |
---|
| 18 | SString gencopy(genstring); |
---|
| 19 | if (genformat==-1) |
---|
| 20 | { // unknown format |
---|
| 21 | genformat='1'; |
---|
| 22 | if (genstring.charAt(0)=='/') |
---|
| 23 | { |
---|
| 24 | int end; |
---|
| 25 | SString newcomment; |
---|
| 26 | switch(genstring.charAt(1)) |
---|
| 27 | { |
---|
| 28 | case '/': |
---|
| 29 | genformat=genstring.charAt(2); |
---|
| 30 | if ((end=genstring.indexOf('\n'))>=0) |
---|
| 31 | { |
---|
| 32 | newcomment=genstring.substr(2,end-2); |
---|
| 33 | gencopy=genstring.substr(end+1); |
---|
| 34 | mapinshift=end+1; |
---|
| 35 | } |
---|
| 36 | else |
---|
| 37 | { |
---|
| 38 | gencopy=0; |
---|
| 39 | mapinshift=genstring.len(); |
---|
| 40 | } |
---|
| 41 | break; |
---|
| 42 | case '*': |
---|
| 43 | genformat=genstring.charAt(2); |
---|
| 44 | if ((end=genstring.indexOf("*/"))>=0) |
---|
| 45 | { |
---|
| 46 | newcomment=genstring.substr(2,end-2); |
---|
| 47 | gencopy=genstring.substr(end+2); |
---|
| 48 | mapinshift=end+2; |
---|
| 49 | } |
---|
| 50 | else |
---|
| 51 | { |
---|
| 52 | gencopy=0; |
---|
| 53 | mapinshift=genstring.len(); |
---|
| 54 | } |
---|
| 55 | break; |
---|
| 56 | } |
---|
| 57 | if (newcomment.len()>0) |
---|
| 58 | { |
---|
| 59 | SString token; int pos=0; |
---|
| 60 | if (newcomment.getNextToken(pos,token,';')) |
---|
| 61 | if (newcomment.getNextToken(pos,token,';')) |
---|
| 62 | { |
---|
| 63 | if (token.len()) txt=token; |
---|
| 64 | if (newcomment.getNextToken(pos,token,';')) |
---|
| 65 | if (token.len()) name=token; |
---|
| 66 | } |
---|
| 67 | } |
---|
| 68 | } |
---|
| 69 | } |
---|
| 70 | |
---|
| 71 | gen=gencopy; |
---|
| 72 | format=genformat; |
---|
| 73 | if (!name.len()) name=genname; |
---|
| 74 | if (!txt.len()) txt=comment; |
---|
| 75 | multiline=(strchr((const char*)gen,'\n')!=0); |
---|
| 76 | // mapoutshift...? |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | void Geno::freeF0() |
---|
| 80 | { |
---|
| 81 | if (f0gen) {delete f0gen; f0gen=0;} |
---|
| 82 | } |
---|
| 83 | |
---|
| 84 | Geno::Geno(const char *genstring,char genformat,const char *genname,const char *comment) |
---|
| 85 | { |
---|
| 86 | init(SString(genstring),genformat,SString(genname),SString(comment)); |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | Geno::Geno(const SString& genstring,char genformat,const SString& genname,const SString& comment) |
---|
| 90 | { |
---|
| 91 | init(genstring,genformat,genname,comment); |
---|
| 92 | } |
---|
| 93 | |
---|
| 94 | Geno::Geno(const Geno& src) |
---|
| 95 | :gen(src.gen),name(src.name),format(src.format),txt(src.txt),isvalid(src.isvalid), |
---|
| 96 | f0gen(0),mapinshift(src.mapinshift),mapoutshift(src.mapinshift), |
---|
| 97 | multiline(src.multiline),owner(0) |
---|
| 98 | {f0gen=src.f0gen?new Geno(*src.f0gen):0; refcount=1;} |
---|
| 99 | |
---|
| 100 | void Geno::operator=(const Geno& src) |
---|
| 101 | { |
---|
| 102 | freeF0(); |
---|
| 103 | gen=src.gen; |
---|
| 104 | name=src.name; |
---|
| 105 | format=src.format; |
---|
| 106 | txt=src.txt; |
---|
| 107 | isvalid=src.isvalid; |
---|
| 108 | mapinshift=src.mapinshift; |
---|
| 109 | mapoutshift=src.mapinshift; |
---|
| 110 | multiline=src.multiline; |
---|
| 111 | f0gen=src.f0gen?new Geno(*src.f0gen):0; |
---|
| 112 | owner=0; |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | Geno::Geno(const SString& src) |
---|
| 116 | { |
---|
| 117 | init(src,-1,SString::empty(),SString::empty()); |
---|
| 118 | } |
---|
| 119 | |
---|
| 120 | void Geno::setGene(const SString& g,char newformat) |
---|
| 121 | { |
---|
| 122 | gen=g; |
---|
| 123 | isvalid=-1; |
---|
| 124 | freeF0(); |
---|
| 125 | if (newformat>=0) format=newformat; |
---|
| 126 | } |
---|
| 127 | |
---|
| 128 | void Geno::setString(const SString& g) |
---|
| 129 | { |
---|
| 130 | freeF0(); |
---|
| 131 | init(g,-1,SString::empty(),SString::empty()); |
---|
| 132 | } |
---|
| 133 | |
---|
| 134 | void Geno::setName(const SString& n) |
---|
| 135 | { |
---|
| 136 | name=n; |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | void Geno::setComment(const SString& c) |
---|
| 140 | { |
---|
| 141 | txt=c; |
---|
| 142 | } |
---|
| 143 | |
---|
| 144 | SString Geno::toString(void) const |
---|
| 145 | { |
---|
| 146 | SString out; |
---|
| 147 | int comment=0; |
---|
| 148 | if ((format!='1')||(comment=(txt.len()||name.len()))) |
---|
| 149 | { |
---|
| 150 | if (multiline) |
---|
| 151 | out+="//"; |
---|
| 152 | else |
---|
| 153 | out+="/*"; |
---|
| 154 | out+=format; |
---|
| 155 | if (comment) |
---|
| 156 | { |
---|
| 157 | if (txt.len()) {out+=";";out+=txt;} |
---|
| 158 | if (name.len()){out+=";";out+=name;} |
---|
| 159 | } |
---|
| 160 | if (multiline) |
---|
| 161 | out+="\n"; |
---|
| 162 | else |
---|
| 163 | out+="*/"; |
---|
| 164 | } |
---|
| 165 | out+=gen; |
---|
| 166 | return out; |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | SString Geno::shortString(void) const |
---|
| 170 | { |
---|
| 171 | SString out; |
---|
| 172 | if (format!='1') |
---|
| 173 | { |
---|
| 174 | if (multiline) |
---|
| 175 | out+="//"; |
---|
| 176 | else |
---|
| 177 | out+="/*"; |
---|
| 178 | if (format==0) |
---|
| 179 | out+="invalid"; |
---|
| 180 | else |
---|
| 181 | out+=format; |
---|
| 182 | if (multiline) |
---|
| 183 | out+="\n"; |
---|
| 184 | else |
---|
| 185 | out+="*/"; |
---|
| 186 | } |
---|
| 187 | out+=gen; |
---|
| 188 | return out; |
---|
| 189 | } |
---|
| 190 | |
---|
| 191 | int Geno::mapGenToString(int genpos) const |
---|
| 192 | { |
---|
| 193 | if (genpos>gen.len()) return -2; |
---|
| 194 | if (genpos<0) return -1; |
---|
| 195 | return mapinshift+genpos; |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | int Geno::mapStringToGen(int stringpos) const |
---|
| 199 | { |
---|
| 200 | stringpos-=mapinshift; |
---|
| 201 | if (stringpos>gen.len()) return -2; |
---|
| 202 | if (stringpos<0) return -1; |
---|
| 203 | return stringpos; |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | SString Geno::getGene(void) const {return gen;} |
---|
| 207 | SString Geno::getName(void) const {return name;} |
---|
| 208 | char Geno::getFormat(void) const {return format;} |
---|
| 209 | SString Geno::getComment(void) const {return txt;} |
---|
| 210 | |
---|
| 211 | class ModelGenoValidator: public GenoValidator |
---|
| 212 | { |
---|
| 213 | public: |
---|
| 214 | ModelGenoValidator(); |
---|
| 215 | int testGenoValidity(Geno& g); |
---|
| 216 | }; |
---|
| 217 | |
---|
| 218 | ModelGenoValidator::ModelGenoValidator() |
---|
| 219 | { |
---|
| 220 | Geno::validators+=this; |
---|
| 221 | } |
---|
| 222 | |
---|
| 223 | int ModelGenoValidator::testGenoValidity(Geno& g) |
---|
| 224 | { |
---|
| 225 | if (g.getFormat()=='0') |
---|
| 226 | { |
---|
| 227 | Model mod(g); |
---|
| 228 | return mod.isValid(); |
---|
| 229 | } |
---|
| 230 | else |
---|
| 231 | { |
---|
| 232 | Geno f0geno=g.getConverted('0'); |
---|
| 233 | return f0geno.isValid(); |
---|
| 234 | } |
---|
| 235 | } |
---|
| 236 | |
---|
| 237 | static ModelGenoValidator default_validator; |
---|
| 238 | |
---|
| 239 | void Geno::validate() |
---|
| 240 | { |
---|
| 241 | if (isvalid>=0) return; |
---|
| 242 | if (gen.len()==0) { isvalid=0; return; } |
---|
| 243 | FOREACH(GenoValidator*,v,validators) |
---|
| 244 | if ((isvalid=v->testGenoValidity(*this))>=0) |
---|
| 245 | break; |
---|
| 246 | } |
---|
| 247 | |
---|
| 248 | bool Geno::isValid(void) |
---|
| 249 | { |
---|
| 250 | if (isvalid<0) validate(); |
---|
| 251 | return isvalid>0; |
---|
| 252 | } |
---|
| 253 | |
---|
| 254 | Geno Geno::getConverted(char otherformat,MultiMap *m) |
---|
| 255 | { |
---|
| 256 | if (otherformat==getFormat()) return *this; |
---|
| 257 | #ifndef NO_GENOCONVMANAGER |
---|
| 258 | if ((otherformat=='0')&&(!m)) |
---|
| 259 | { |
---|
| 260 | if (!f0gen) |
---|
| 261 | f0gen=new Geno(GenoConvManager::globalConvert(*this,otherformat)); |
---|
| 262 | return *f0gen; |
---|
| 263 | } |
---|
| 264 | else |
---|
| 265 | return GenoConvManager::globalConvert(*this,otherformat,m); |
---|
| 266 | #else |
---|
| 267 | return (otherformat==getFormat())?*this:Geno(0,0,0,"GenConvManager not available"); |
---|
| 268 | #endif |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | Geno::~Geno() |
---|
| 272 | { |
---|
| 273 | if (f0gen) delete f0gen; |
---|
| 274 | } |
---|