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