1 | // This file is a part of Framsticks GDK library. |
---|
2 | // Copyright (C) 2002-2006 Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.frams.alife.pl/ for further information. |
---|
4 | |
---|
5 | #include <stdio.h> |
---|
6 | #include <ctype.h> |
---|
7 | |
---|
8 | #include "param.h" |
---|
9 | #include "extvalue.h" |
---|
10 | #include "framsg.h" |
---|
11 | #include "sstringutils.h" |
---|
12 | |
---|
13 | //#define SAVE_ALL_NAMES |
---|
14 | #define SAVE_SELECTED_NAMES |
---|
15 | #define WARN_MISSING_NAME |
---|
16 | |
---|
17 | char MakeCodeGuardHappy; |
---|
18 | |
---|
19 | ParamEntry empty_paramtab[]= |
---|
20 | { {"Empty",1,0,"Empty",}, {0,0,0,}, }; |
---|
21 | |
---|
22 | static void czytdotyldy(VirtFILE *f,SString &s) |
---|
23 | { |
---|
24 | SString temp; |
---|
25 | int z; |
---|
26 | char last_char=0; |
---|
27 | while((z=fgetc(f))!=EOF) |
---|
28 | { |
---|
29 | if (z=='~') |
---|
30 | if (last_char!='\\') break; |
---|
31 | last_char=(char)z; |
---|
32 | temp+=last_char; |
---|
33 | } |
---|
34 | s=temp; |
---|
35 | } |
---|
36 | |
---|
37 | static const char *strchrlimit(const char *t,int ch,const char *limit) |
---|
38 | { |
---|
39 | int n=limit-t; |
---|
40 | for (;(n>0)&&*t;t++,n--) |
---|
41 | if (*t==ch) return t; |
---|
42 | return 0; |
---|
43 | } |
---|
44 | |
---|
45 | static char* fgets0(char*t,int d,VirtFILE *f, bool& eolfound) |
---|
46 | { |
---|
47 | char *r=fgets(t,d,f); |
---|
48 | eolfound=false; |
---|
49 | if (r) |
---|
50 | { |
---|
51 | int d=strlen(r); |
---|
52 | while (d-- > 0) if ((r[d]=='\r')||(r[d]=='\n')) {r[d]=0; eolfound=true;} else break; |
---|
53 | } |
---|
54 | return r; |
---|
55 | } |
---|
56 | |
---|
57 | void ParamInterface::copyFrom(ParamInterface *src) |
---|
58 | { |
---|
59 | int n=getPropCount(); |
---|
60 | ExtValue v; |
---|
61 | int j; |
---|
62 | for(int i=0;i<n;i++) |
---|
63 | if ((!(flags(i)&PARAM_READONLY)) |
---|
64 | && (*type(i)!='p')) |
---|
65 | { |
---|
66 | j=src->findId(id(i)); |
---|
67 | if (j<0) continue; |
---|
68 | src->get(j,v); |
---|
69 | set(i,v); |
---|
70 | } |
---|
71 | } |
---|
72 | |
---|
73 | void ParamInterface::quickCopyFrom(ParamInterface *src) |
---|
74 | { |
---|
75 | int n=getPropCount(); |
---|
76 | ExtValue v; |
---|
77 | for(int i=0;i<n;i++) |
---|
78 | if ((!(flags(i)&PARAM_READONLY)) |
---|
79 | && (*type(i)!='p')) |
---|
80 | { |
---|
81 | src->get(i,v); |
---|
82 | set(i,v); |
---|
83 | } |
---|
84 | } |
---|
85 | |
---|
86 | int ParamInterface::getMinMax(int prop,long& minumum,long& maximum,long &def) |
---|
87 | { |
---|
88 | const char* t=type(prop)+1; |
---|
89 | while(*t) if (*t==' ') break; else t++; |
---|
90 | return sscanf(t,"%ld %ld %ld",&minumum,&maximum,&def); |
---|
91 | } |
---|
92 | |
---|
93 | int ParamInterface::getMinMax(int prop,double& minumum,double& maximum,double& def) |
---|
94 | { |
---|
95 | const char* t=type(prop)+1; |
---|
96 | while(*t) if (*t==' ') break; else t++; |
---|
97 | return sscanf(t,"%lg %lg %lg",&minumum,&maximum,&def); |
---|
98 | } |
---|
99 | |
---|
100 | void ParamInterface::setDefault(bool numericonly) |
---|
101 | { |
---|
102 | int n=getPropCount(); |
---|
103 | for(int i=0;i<n;i++) |
---|
104 | setDefault(i,numericonly); |
---|
105 | } |
---|
106 | |
---|
107 | void ParamInterface::setMin() |
---|
108 | { |
---|
109 | int n=getPropCount(); |
---|
110 | for(int i=0;i<n;i++) |
---|
111 | setMin(i); |
---|
112 | } |
---|
113 | |
---|
114 | void ParamInterface::setMax() |
---|
115 | { |
---|
116 | int n=getPropCount(); |
---|
117 | for(int i=0;i<n;i++) |
---|
118 | setMax(i); |
---|
119 | } |
---|
120 | |
---|
121 | void ParamInterface::setDefault(int i,bool numericonly) |
---|
122 | { |
---|
123 | const char *t=type(i); |
---|
124 | switch(*t) |
---|
125 | { |
---|
126 | case 'f': |
---|
127 | { |
---|
128 | double a=0,b=0,c=0; |
---|
129 | getMinMax(i,a,b,c); |
---|
130 | setDouble(i,c); |
---|
131 | } |
---|
132 | break; |
---|
133 | case 'd': |
---|
134 | { |
---|
135 | long a=0,b=0,c=0; |
---|
136 | getMinMax(i,a,b,c); |
---|
137 | setInt(i,c); |
---|
138 | } |
---|
139 | break; |
---|
140 | default: if (!numericonly) set(i,""); |
---|
141 | } |
---|
142 | } |
---|
143 | |
---|
144 | void ParamInterface::setMin(int i) |
---|
145 | { |
---|
146 | const char *t=type(i); |
---|
147 | switch(*t) |
---|
148 | { |
---|
149 | case 'f': |
---|
150 | { |
---|
151 | double a=0,b=0,c=0; |
---|
152 | getMinMax(i,a,b,c); |
---|
153 | setDouble(i,a); |
---|
154 | } |
---|
155 | break; |
---|
156 | case 'd': |
---|
157 | { |
---|
158 | long a=0,b=0,c=0; |
---|
159 | getMinMax(i,a,b,c); |
---|
160 | setInt(i,a); |
---|
161 | } |
---|
162 | break; |
---|
163 | default: set(i,""); |
---|
164 | } |
---|
165 | } |
---|
166 | |
---|
167 | void ParamInterface::setMax(int i) |
---|
168 | { |
---|
169 | const char *t=type(i); |
---|
170 | switch(*t) |
---|
171 | { |
---|
172 | case 'f': |
---|
173 | { |
---|
174 | double a=0,b=0,c=0; |
---|
175 | getMinMax(i,a,b,c); |
---|
176 | setDouble(i,b); |
---|
177 | } |
---|
178 | break; |
---|
179 | case 'd': |
---|
180 | { |
---|
181 | long a=0,b=0,c=0; |
---|
182 | getMinMax(i,a,b,c); |
---|
183 | setInt(i,b); |
---|
184 | } |
---|
185 | break; |
---|
186 | default: set(i,""); |
---|
187 | } |
---|
188 | } |
---|
189 | |
---|
190 | SString ParamInterface::getStringById(const char*prop) |
---|
191 | {int i=findId(prop); if (i>=0) return getString(i); else return SString();} |
---|
192 | long ParamInterface::getIntById(const char*prop) |
---|
193 | {int i=findId(prop); if (i>=0) return getInt(i); else return 0;} |
---|
194 | double ParamInterface::getDoubleById(const char*prop) |
---|
195 | {int i=findId(prop); if (i>=0) return getDouble(i); else return 0;} |
---|
196 | ExtObject ParamInterface::getObjectById(const char*prop) |
---|
197 | {int i=findId(prop); if (i>=0) return getObject(i); else return ExtObject();} |
---|
198 | ExtValue ParamInterface::getExtValueById(const char*prop) |
---|
199 | {int i=findId(prop); if (i>=0) return getExtValue(i); else return ExtValue();} |
---|
200 | |
---|
201 | int ParamInterface::setIntById(const char* prop,long v) |
---|
202 | {int i=findId(prop); if (i>=0) return setInt(i,v); else return PSET_NOPROPERTY;} |
---|
203 | int ParamInterface::setDoubleById(const char* prop,double v) |
---|
204 | {int i=findId(prop); if (i>=0) return setDouble(i,v); else return PSET_NOPROPERTY;} |
---|
205 | int ParamInterface::setStringById(const char* prop,const SString &v) |
---|
206 | {int i=findId(prop); if (i>=0) return setString(i,v); else return PSET_NOPROPERTY;} |
---|
207 | int ParamInterface::setObjectById(const char* prop,const ExtObject &v) |
---|
208 | {int i=findId(prop); if (i>=0) return setObject(i,v); else return PSET_NOPROPERTY;} |
---|
209 | int ParamInterface::setExtValueById(const char* prop,const ExtValue &v) |
---|
210 | {int i=findId(prop); if (i>=0) return setExtValue(i,v); else return PSET_NOPROPERTY;} |
---|
211 | |
---|
212 | int ParamInterface::save(VirtFILE* f,const SString* altname,bool force) |
---|
213 | { |
---|
214 | const char *p; |
---|
215 | SString ws; |
---|
216 | int err=0,i; |
---|
217 | bool withname=false; |
---|
218 | if ((!altname)||(altname->len())) |
---|
219 | { |
---|
220 | err|=(fputs(altname?((const char*)(*altname)):getName(),f)==EOF); |
---|
221 | err|=(fputs(":\n",f)==EOF); |
---|
222 | withname=true; |
---|
223 | } |
---|
224 | for (i=0;p=id(i);i++) |
---|
225 | err|=saveprop(f,i,p,force); |
---|
226 | if (withname) |
---|
227 | err|=(fputs("\n",f)==EOF); |
---|
228 | return err; |
---|
229 | } |
---|
230 | |
---|
231 | int ParamInterface::saveprop(VirtFILE* f,int i,const char* p,bool force) |
---|
232 | { |
---|
233 | if ((flags(i)&PARAM_DONTSAVE)&&(!force)) return 0; |
---|
234 | const char *typ=type(i); |
---|
235 | if ((*typ=='p')||(*typ=='o')) return 0; |
---|
236 | |
---|
237 | const char *t,*w; |
---|
238 | SString ws; |
---|
239 | int err=0,cr; |
---|
240 | |
---|
241 | err|=(fputs(p,f)==EOF); fputc(':',f); |
---|
242 | cr=0; |
---|
243 | ws=get(i); |
---|
244 | quoteTilde(ws); |
---|
245 | w=ws; |
---|
246 | if (ws.len()>50) cr=1; |
---|
247 | else for (t=w;*t;t++) if ((*t==10)||(*t==13)) {cr=1; break;} |
---|
248 | if (cr) fputs("~\n",f); |
---|
249 | err|=(fputs(w,f)==EOF); |
---|
250 | err|=(fputs(cr ? "~\n" : "\n",f)==EOF); |
---|
251 | return err; |
---|
252 | } |
---|
253 | |
---|
254 | |
---|
255 | int SimpleAbstractParam::isequal(int i,void* defdata) |
---|
256 | { // defdata->member == object->member ? |
---|
257 | void *backup=object; |
---|
258 | switch(type(i)[0]) |
---|
259 | { |
---|
260 | case 'd': |
---|
261 | { |
---|
262 | select(defdata); |
---|
263 | long x=getInt(i); |
---|
264 | select(backup); |
---|
265 | return x==getInt(i); |
---|
266 | } |
---|
267 | case 'f': |
---|
268 | { |
---|
269 | select(defdata); |
---|
270 | double x=getDouble(i); |
---|
271 | select(backup); |
---|
272 | return x==getDouble(i); |
---|
273 | } |
---|
274 | case 's': |
---|
275 | { |
---|
276 | select(defdata); |
---|
277 | SString x=getString(i); |
---|
278 | select(backup); |
---|
279 | return x==getString(i); |
---|
280 | } |
---|
281 | } |
---|
282 | return 1; |
---|
283 | } |
---|
284 | |
---|
285 | void SimpleAbstractParam::save2(SString& f,void *defdata,int addcr) |
---|
286 | { // defdata!=NULL -> nie zapisuje wartosci domyslnych |
---|
287 | const char *p; |
---|
288 | int i; |
---|
289 | int needlabel=0; |
---|
290 | int first=1; |
---|
291 | SString val; |
---|
292 | SString t; |
---|
293 | int fl; |
---|
294 | // t+=SString(getName()); t+=':'; |
---|
295 | for (i=0;p=id(i);i++) |
---|
296 | if (!((fl=flags(i))&PARAM_DONTSAVE)) |
---|
297 | { |
---|
298 | if (defdata && isequal(i,defdata)) |
---|
299 | needlabel=1; |
---|
300 | else |
---|
301 | { |
---|
302 | if (!first) t+=", "; |
---|
303 | #ifndef SAVE_ALL_NAMES |
---|
304 | #ifdef SAVE_SELECTED_NAMES |
---|
305 | if (needlabel || !(fl & PARAM_CANOMITNAME)) |
---|
306 | #else |
---|
307 | if (needlabel) |
---|
308 | #endif |
---|
309 | #endif |
---|
310 | { t+=p; t+="="; needlabel=0; } |
---|
311 | if (type(i)[0]=='s') |
---|
312 | { // string - special case |
---|
313 | SString str=getString(i); |
---|
314 | if (strContainsOneOf(str,", \\\n\r\t")) |
---|
315 | { |
---|
316 | t+="\""; |
---|
317 | sstringQuote(str); |
---|
318 | t+=str; |
---|
319 | t+="\""; |
---|
320 | } |
---|
321 | else |
---|
322 | t+=str; |
---|
323 | } |
---|
324 | else |
---|
325 | t+=get(i); |
---|
326 | first=0; |
---|
327 | } |
---|
328 | } |
---|
329 | if (addcr) |
---|
330 | t+="\n"; |
---|
331 | f+=t; |
---|
332 | } |
---|
333 | |
---|
334 | void ParamInterface::load(VirtFILE* f) |
---|
335 | { |
---|
336 | char t[100]; |
---|
337 | int i; |
---|
338 | const char *p,*p0; |
---|
339 | int p_len; |
---|
340 | bool eol,loaded; |
---|
341 | int ret; |
---|
342 | while(fgets0(t,100,f,eol)) |
---|
343 | { |
---|
344 | p0=t; while ((*p0==' ')||(*p0=='\t')) p0++; |
---|
345 | if (!*p0) break; |
---|
346 | p=strchr(p0,':'); if (!p) continue; |
---|
347 | p_len=p-p0; |
---|
348 | loaded=false; |
---|
349 | if (p_len&&((i=findIdn(p0,p_len))>=0)&&(!(flags(i)&PARAM_DONTLOAD))) |
---|
350 | { |
---|
351 | if (p0[p_len+1]=='~') |
---|
352 | { |
---|
353 | SString s; |
---|
354 | czytdotyldy(f,s); |
---|
355 | int ch; while((ch=fgetc(f))!=EOF) if (ch=='\n') break; |
---|
356 | unquoteTilde(s); |
---|
357 | ret=set(i,(const char*)s); |
---|
358 | } |
---|
359 | else |
---|
360 | { |
---|
361 | if (eol) |
---|
362 | ret=set(i,p0+p_len+1); |
---|
363 | else |
---|
364 | { |
---|
365 | SString tmp=p0+p_len+1; |
---|
366 | while(!eol) |
---|
367 | { |
---|
368 | if (!fgets0(t,100,f,eol)) break; |
---|
369 | tmp+=t; |
---|
370 | } |
---|
371 | ret=set(i,(const char*)tmp); |
---|
372 | } |
---|
373 | } |
---|
374 | if (ret & (PSET_HITMIN | PSET_HITMAX)) |
---|
375 | FMprintf("Param","load2",FMLV_WARN,"Adjusted '%s' in '%s' (was too %s)", |
---|
376 | id(i),getName(),(ret&PSET_HITMAX)?"big":"small"); |
---|
377 | loaded=true; |
---|
378 | } |
---|
379 | if ((!loaded) && (p0[p_len+1]=='~')) |
---|
380 | { // eat unrecognized multiline field |
---|
381 | SString s; |
---|
382 | czytdotyldy(f,s); |
---|
383 | int ch; while((ch=fgetc(f))!=EOF) if (ch=='\n') break; |
---|
384 | } |
---|
385 | } |
---|
386 | } |
---|
387 | |
---|
388 | |
---|
389 | /* |
---|
390 | SString SimpleAbstractParam::getString(int i) |
---|
391 | { |
---|
392 | char *t; |
---|
393 | switch (*(t=type(i))) |
---|
394 | { |
---|
395 | case 'd': |
---|
396 | { |
---|
397 | for (i=atol(get(i));i>=0;i--) if (t) t=strchr(t+1,'~'); |
---|
398 | if (t) |
---|
399 | { |
---|
400 | t++; |
---|
401 | char *t2=strchr(t,'~'); |
---|
402 | if (!t2) t2=t+strlen(t); |
---|
403 | SString str; |
---|
404 | strncpy(str.directWrite(t2-t),t,t2-t); |
---|
405 | str.endWrite(t2-t); |
---|
406 | return str; |
---|
407 | } |
---|
408 | } |
---|
409 | } |
---|
410 | return get(i); |
---|
411 | } |
---|
412 | */ |
---|
413 | |
---|
414 | int ParamInterface::findId(const char* n) |
---|
415 | { |
---|
416 | int i; const char *p; |
---|
417 | for (i=0;p=id(i);i++) if (!strcmp(n,p)) return i; |
---|
418 | return -1; |
---|
419 | } |
---|
420 | |
---|
421 | int ParamInterface::findIdn(const char* naz,int n) |
---|
422 | { |
---|
423 | int i; const char *p; |
---|
424 | for (i=0;p=id(i);i++) if ((!strncmp(naz,p,n))&&(!p[n])) return i; |
---|
425 | return -1; |
---|
426 | } |
---|
427 | |
---|
428 | void ParamInterface::get(int i,ExtValue &ret) |
---|
429 | { |
---|
430 | switch(type(i)[0]) |
---|
431 | { |
---|
432 | case 'd': ret.setInt(getInt(i)); break; |
---|
433 | case 'f': ret.setDouble(getDouble(i)); break; |
---|
434 | case 's': ret.setString(getString(i)); break; |
---|
435 | case 'o': ret.setObject(getObject(i)); break; |
---|
436 | case 'x': ret=getExtValue(i); break; |
---|
437 | default: FMprintf("ParamInterface","get",FMLV_ERROR,"'%s.%s' is not a field",getName(),id(i)); |
---|
438 | } |
---|
439 | } |
---|
440 | |
---|
441 | int ParamInterface::set(int i,const ExtValue &v) |
---|
442 | { |
---|
443 | switch(type(i)[0]) |
---|
444 | { |
---|
445 | case 'd': return setInt(i,v.getInt()); |
---|
446 | case 'f': return setDouble(i,v.getDouble()); |
---|
447 | case 's': { SString t=v.getString(); return setString(i,t); } |
---|
448 | case 'o': return setObject(i,v.getObject()); |
---|
449 | case 'x': return setExtValue(i,v); |
---|
450 | default: FMprintf("ParamInterface","get",FMLV_ERROR,"'%s.%s' is not a field",getName(),id(i)); |
---|
451 | } |
---|
452 | return 0; |
---|
453 | } |
---|
454 | |
---|
455 | int ParamInterface::set(int i,const char *v) |
---|
456 | { |
---|
457 | switch(type(i)[0]) |
---|
458 | { |
---|
459 | case 'd': return setInt(i,atol(v)); |
---|
460 | case 'f': return setDouble(i,atof(v)); |
---|
461 | case 's': { SString t(v); return setString(i,t); } |
---|
462 | case 'x': |
---|
463 | { |
---|
464 | ExtValue e; |
---|
465 | if (isdigit(*v)||((*v=='-')&&isdigit(v[1]))) |
---|
466 | { |
---|
467 | if (strchr(v,'.')) e.setDouble(atof(v)); |
---|
468 | else e.setInt(atol(v)); |
---|
469 | } |
---|
470 | else |
---|
471 | { |
---|
472 | e.setString(SString(v)); |
---|
473 | } |
---|
474 | return setExtValue(i,e); |
---|
475 | } |
---|
476 | } |
---|
477 | return 0; |
---|
478 | } |
---|
479 | |
---|
480 | SString ParamInterface::getText(int i) |
---|
481 | { |
---|
482 | const char *t; |
---|
483 | if ((*(t=type(i)))=='d') |
---|
484 | { |
---|
485 | for (int j=getInt(i);j>=0;j--) if (t) t=strchr(t+1,'~'); |
---|
486 | if (t) |
---|
487 | { |
---|
488 | t++; |
---|
489 | const char *t2=strchr(t,'~'); |
---|
490 | if (!t2) t2=t+strlen(t); |
---|
491 | return SString(t,t2-t); |
---|
492 | } |
---|
493 | } |
---|
494 | return get(i); |
---|
495 | } |
---|
496 | |
---|
497 | SString ParamInterface::get(int i) |
---|
498 | { |
---|
499 | switch(type(i)[0]) |
---|
500 | { |
---|
501 | case 'd': |
---|
502 | { |
---|
503 | SString tmp; |
---|
504 | sprintf(tmp.directWrite(20),"%ld",getInt(i)); tmp.endWrite(); |
---|
505 | return tmp; |
---|
506 | } |
---|
507 | case 'f': |
---|
508 | { |
---|
509 | SString tmp; |
---|
510 | sprintf(tmp.directWrite(20),"%lg",getDouble(i)); tmp.endWrite(); |
---|
511 | return tmp; |
---|
512 | } |
---|
513 | case 's': |
---|
514 | return getString(i); |
---|
515 | } |
---|
516 | ExtValue v; |
---|
517 | get(i,v); |
---|
518 | return v.getString(); |
---|
519 | } |
---|
520 | |
---|
521 | |
---|
522 | //////////////////////////////// PARAM //////////////////////////////////// |
---|
523 | |
---|
524 | void *SimpleAbstractParam::getTarget(int i) |
---|
525 | { |
---|
526 | return (void*)(((char*)object)+entry(i)->offset); |
---|
527 | //return &(object->*(entry(i)->fldptr)); |
---|
528 | } |
---|
529 | |
---|
530 | ///////// get |
---|
531 | |
---|
532 | long SimpleAbstractParam::getInt(int i) |
---|
533 | { |
---|
534 | static ExtValue v; |
---|
535 | ParamEntry *pe=entry(i); |
---|
536 | if (pe->fun1) |
---|
537 | { |
---|
538 | (*(void(*)(void*,ExtValue*))pe->fun1)(object,&v); |
---|
539 | return v.getInt(); |
---|
540 | } |
---|
541 | else |
---|
542 | { |
---|
543 | void *target=getTarget(i); |
---|
544 | return *((long*)target); |
---|
545 | } |
---|
546 | } |
---|
547 | |
---|
548 | double SimpleAbstractParam::getDouble(int i) |
---|
549 | { |
---|
550 | static ExtValue v; |
---|
551 | ParamEntry *pe=entry(i); |
---|
552 | if (pe->fun1) |
---|
553 | { |
---|
554 | (*(void(*)(void*,ExtValue*))pe->fun1)(object,&v); |
---|
555 | return v.getDouble(); |
---|
556 | } |
---|
557 | else |
---|
558 | { |
---|
559 | void *target=getTarget(i); |
---|
560 | return *((double*)target); |
---|
561 | } |
---|
562 | } |
---|
563 | |
---|
564 | SString SimpleAbstractParam::getString(int i) |
---|
565 | { |
---|
566 | static ExtValue v; |
---|
567 | ParamEntry *pe=entry(i); |
---|
568 | if (pe->fun1) |
---|
569 | { |
---|
570 | (*(void(*)(void*,ExtValue*))pe->fun1)(object,&v); |
---|
571 | return v.getString(); |
---|
572 | } |
---|
573 | else |
---|
574 | { |
---|
575 | void *target=getTarget(i); |
---|
576 | return *((SString*)target); |
---|
577 | } |
---|
578 | } |
---|
579 | |
---|
580 | ExtObject SimpleAbstractParam::getObject(int i) |
---|
581 | { |
---|
582 | static ExtValue v; |
---|
583 | ParamEntry *pe=entry(i); |
---|
584 | if (pe->fun1) |
---|
585 | { |
---|
586 | (*(void(*)(void*,ExtValue*))pe->fun1)(object,&v); |
---|
587 | return v.getObject(); |
---|
588 | } |
---|
589 | else |
---|
590 | { |
---|
591 | void *target=getTarget(i); |
---|
592 | return *((ExtObject*)target); |
---|
593 | } |
---|
594 | } |
---|
595 | |
---|
596 | ExtValue SimpleAbstractParam::getExtValue(int i) |
---|
597 | { |
---|
598 | static ExtValue v; |
---|
599 | ParamEntry *pe=entry(i); |
---|
600 | if (pe->fun1) |
---|
601 | { |
---|
602 | (*(void(*)(void*,ExtValue*))pe->fun1)(object,&v); |
---|
603 | return v; |
---|
604 | } |
---|
605 | else |
---|
606 | { |
---|
607 | void *target=getTarget(i); |
---|
608 | return *((ExtValue*)target); |
---|
609 | } |
---|
610 | } |
---|
611 | |
---|
612 | |
---|
613 | //////// set |
---|
614 | |
---|
615 | int SimpleAbstractParam::setInt(int i,long x) |
---|
616 | { |
---|
617 | static ExtValue v; |
---|
618 | ParamEntry *pe=entry(i); |
---|
619 | if (pe->flags&PARAM_READONLY) return PSET_RONLY; |
---|
620 | long a=0,b=0,result=0; |
---|
621 | const char* t=pe->type+1; |
---|
622 | while(*t) if (*t==' ') break; else t++; |
---|
623 | if (sscanf(t,"%ld %ld",&a,&b)==2) |
---|
624 | if (a<=b) // jezeli max<min to znaczy ze min/max nie obowiazuje |
---|
625 | { |
---|
626 | if (x<a) {x=a; result=PSET_HITMIN;} |
---|
627 | else if (x>b) {x=b; result=PSET_HITMAX;} |
---|
628 | } |
---|
629 | |
---|
630 | if (pe->fun2) |
---|
631 | { |
---|
632 | v.setInt(x); |
---|
633 | return result | (*(int(*)(void*,const ExtValue*))pe->fun2)(object,&v); |
---|
634 | } |
---|
635 | else |
---|
636 | { |
---|
637 | void *target=getTarget(i); |
---|
638 | if (dontcheckchanges || (*((long*)target)!=x)) |
---|
639 | { |
---|
640 | result |= PSET_CHANGED; |
---|
641 | *((long*)target)=x; |
---|
642 | } |
---|
643 | return result; |
---|
644 | } |
---|
645 | } |
---|
646 | |
---|
647 | int SimpleAbstractParam::setDouble(int i,double x) |
---|
648 | { |
---|
649 | static ExtValue v; |
---|
650 | ParamEntry *pe=entry(i); |
---|
651 | if (pe->flags&PARAM_READONLY) return PSET_RONLY; |
---|
652 | double a=0,b=0; int result=0; |
---|
653 | const char* t=pe->type+1; |
---|
654 | while(*t) if (*t==' ') break; else t++; |
---|
655 | if (sscanf(t,"%lg %lg",&a,&b)==2) |
---|
656 | if (a<=b) // jezeli max<min to znaczy ze min/max nie obowiazuje |
---|
657 | { |
---|
658 | if (x<a) {x=a; result=PSET_HITMIN;} |
---|
659 | else if (x>b) {x=b; result=PSET_HITMAX;} |
---|
660 | } |
---|
661 | |
---|
662 | if (pe->fun2) |
---|
663 | { |
---|
664 | v.setDouble(x); |
---|
665 | return result | (*(int(*)(void*,const ExtValue*))pe->fun2)(object,&v); |
---|
666 | } |
---|
667 | else |
---|
668 | { |
---|
669 | void *target=getTarget(i); |
---|
670 | if (dontcheckchanges || (*((double*)target)!=x)) |
---|
671 | { |
---|
672 | result|=PSET_CHANGED; |
---|
673 | *((double*)target)=x; |
---|
674 | } |
---|
675 | return result; |
---|
676 | } |
---|
677 | } |
---|
678 | |
---|
679 | int SimpleAbstractParam::setString(int i,const SString& x) |
---|
680 | { |
---|
681 | static ExtValue v; |
---|
682 | static SString vs; |
---|
683 | const SString *xx=&x; |
---|
684 | ParamEntry *pe=entry(i); |
---|
685 | if (pe->flags&PARAM_READONLY) return PSET_RONLY; |
---|
686 | const char* t=pe->type+1; |
---|
687 | while(*t) if (*t==' ') break; else t++; |
---|
688 | long a=0,b=0,result=0; |
---|
689 | if (sscanf(t,"%ld %ld",&a,&b)==2) |
---|
690 | { |
---|
691 | if ((x.len()>b)&&(b>0)) |
---|
692 | { |
---|
693 | vs=x.substr(0,b); |
---|
694 | xx=&vs; |
---|
695 | result|=PSET_HITMAX; |
---|
696 | } |
---|
697 | } |
---|
698 | |
---|
699 | if (pe->fun2) |
---|
700 | { |
---|
701 | v.setString(*xx); |
---|
702 | return result | (*(int(*)(void*,const ExtValue*))pe->fun2)(object,&v); |
---|
703 | } |
---|
704 | else |
---|
705 | { |
---|
706 | void *target=getTarget(i); |
---|
707 | if (dontcheckchanges || (!(*((SString*)target) == *xx))) |
---|
708 | { |
---|
709 | result|=PSET_CHANGED; |
---|
710 | *((SString*)target)=x; |
---|
711 | } |
---|
712 | return result; |
---|
713 | } |
---|
714 | } |
---|
715 | |
---|
716 | int SimpleAbstractParam::setObject(int i,const ExtObject& x) |
---|
717 | { |
---|
718 | static ExtValue v; |
---|
719 | ParamEntry *pe=entry(i); |
---|
720 | if (pe->flags&PARAM_READONLY) return PSET_RONLY; |
---|
721 | if (pe->fun2) |
---|
722 | { |
---|
723 | v.setObject(x); |
---|
724 | return (*(int(*)(void*,const ExtValue*))pe->fun2)(object,&v); |
---|
725 | } |
---|
726 | else |
---|
727 | { |
---|
728 | void *target=getTarget(i); |
---|
729 | *((ExtObject*)target)=x; |
---|
730 | return PSET_CHANGED; |
---|
731 | } |
---|
732 | } |
---|
733 | |
---|
734 | int SimpleAbstractParam::setExtValue(int i,const ExtValue& x) |
---|
735 | { |
---|
736 | ParamEntry *pe=entry(i); |
---|
737 | if (pe->flags&PARAM_READONLY) return PSET_RONLY; |
---|
738 | if (pe->fun2) |
---|
739 | { |
---|
740 | return (*(int(*)(void*,const ExtValue*))pe->fun2)(object,&x); |
---|
741 | } |
---|
742 | else |
---|
743 | { |
---|
744 | void *target=getTarget(i); |
---|
745 | *((ExtValue*)target)=x; |
---|
746 | return PSET_CHANGED; |
---|
747 | } |
---|
748 | } |
---|
749 | |
---|
750 | void SimpleAbstractParam::call(int i,ExtValue *args,ExtValue *ret) |
---|
751 | { |
---|
752 | ParamEntry *pe=entry(i); |
---|
753 | if (!pe) return; |
---|
754 | if (pe->fun1 && (pe->type[0]=='p')) |
---|
755 | (*(void(*)(void*,ExtValue*,ExtValue*))pe->fun1)(object,args,ret); |
---|
756 | else |
---|
757 | { |
---|
758 | FMprintf("SimpleAbstractParam","call",FMLV_ERROR, |
---|
759 | (*pe->type!='p')?"'%s.%s' is not a function":"internal error - undefined function pointer for '%s.%s'",getName(),pe->id); |
---|
760 | } |
---|
761 | } |
---|
762 | |
---|
763 | void SimpleAbstractParam::setDefault(bool numericonly) |
---|
764 | { |
---|
765 | bool save=dontcheckchanges; |
---|
766 | dontcheckchanges=1; |
---|
767 | ParamInterface::setDefault(numericonly); |
---|
768 | dontcheckchanges=save; |
---|
769 | } |
---|
770 | |
---|
771 | void SimpleAbstractParam::setDefault(int i,bool numericonly) |
---|
772 | { |
---|
773 | bool save=dontcheckchanges; |
---|
774 | dontcheckchanges=1; |
---|
775 | ParamInterface::setDefault(i,numericonly); |
---|
776 | dontcheckchanges=save; |
---|
777 | } |
---|
778 | |
---|
779 | // zwraca adres poczatku linii |
---|
780 | // len = dlugosc linii (bez \n) |
---|
781 | // 0 moze oznaczac linie dlugosci 0 lub koniec SStringa |
---|
782 | // poz jest przesuwane na poczatek nastepnej linii |
---|
783 | // typowa petla: for(poz=0;poz<s.d;) {line=getline(s,poz,len);... |
---|
784 | static const char *getline(const SString &s,int &poz,int &len) |
---|
785 | { |
---|
786 | const char *beg=(const char*)s+poz; |
---|
787 | if (poz>=s.len()) {poz=s.len(); len=0; return (const char*)s+s.len();} |
---|
788 | const char *lf=strchr(beg,'\n'); |
---|
789 | if (!lf) { lf=(const char*)s+s.len()-1; poz=s.len(); } |
---|
790 | else {poz=(lf-(const char*)s)+1; if (poz>s.len()) poz=s.len();} |
---|
791 | while (lf>=beg) if ((*lf=='\n')||(*lf=='\r')) lf--; else break; |
---|
792 | len=lf-beg+1; |
---|
793 | return beg; |
---|
794 | } |
---|
795 | |
---|
796 | void ParamInterface::load2(const SString &s,int &poz) |
---|
797 | { |
---|
798 | int i; // numer akt. parametru |
---|
799 | int tmpi; |
---|
800 | int len; |
---|
801 | int ret; |
---|
802 | const char *t,*lin,*end; |
---|
803 | const char *rownasie,*przecinek; |
---|
804 | char remember; |
---|
805 | const char *quote,*quote2; |
---|
806 | const char *value,*valstop; |
---|
807 | SString tmpvalue; |
---|
808 | if (poz>=s.len()) return; |
---|
809 | t=(const char*)s+poz; |
---|
810 | |
---|
811 | // na razie wszystko musi byc w jednej linii... |
---|
812 | lin=getline(s,poz,len); |
---|
813 | if (!len) return; // pusta linia = koniec |
---|
814 | i=0; |
---|
815 | end=lin+len; |
---|
816 | while(t<end) |
---|
817 | { |
---|
818 | // przetwarzanie jednego par |
---|
819 | while (strchr(" \n\r\t",*t)) if (t<end) t++; else return; |
---|
820 | |
---|
821 | przecinek=strchrlimit(t,',',end); if (!przecinek) przecinek=end; |
---|
822 | quote=strchrlimit(t,'\"',przecinek); |
---|
823 | if (quote) |
---|
824 | { |
---|
825 | quote2=skipQuoteString(quote+1,end); |
---|
826 | if (quote2>przecinek) |
---|
827 | { |
---|
828 | przecinek=strchrlimit(quote2+1,',',end); |
---|
829 | if (!przecinek) przecinek=end; |
---|
830 | } |
---|
831 | rownasie=strchrlimit(t,'=',quote); |
---|
832 | } |
---|
833 | else |
---|
834 | { |
---|
835 | rownasie=strchrlimit(t,'=',przecinek); |
---|
836 | quote2=0; |
---|
837 | } |
---|
838 | if (rownasie==t) { t++; rownasie=0; } |
---|
839 | if (przecinek==t) // skip empty value |
---|
840 | { |
---|
841 | t++; i++; |
---|
842 | continue; |
---|
843 | } |
---|
844 | if (rownasie) // have parameter name |
---|
845 | { |
---|
846 | tmpi=findIdn(t,rownasie-t); |
---|
847 | i=tmpi; |
---|
848 | if (tmpi<0) |
---|
849 | FMprintf("Param","load2",FMLV_WARN,"Unknown property name for '%s' (ignored)",getName()); |
---|
850 | t=rownasie+1; // t=value |
---|
851 | } |
---|
852 | #ifdef WARN_MISSING_NAME |
---|
853 | else |
---|
854 | #ifdef SAVE_SELECTED_NAMES |
---|
855 | if (!(flags(i)&PARAM_CANOMITNAME)) |
---|
856 | #endif |
---|
857 | { |
---|
858 | FMprintf("Param","load2",FMLV_WARN,"Missing property name in '%s' (assuming '%s')", |
---|
859 | getName(),id(i)?id(i):"unknown property?"); |
---|
860 | } |
---|
861 | #endif |
---|
862 | if ((i>=0)&&id(i)) |
---|
863 | { |
---|
864 | value=t; |
---|
865 | if (quote) |
---|
866 | { |
---|
867 | tmpvalue.copyFrom(quote+1,quote2-quote-1); |
---|
868 | sstringUnquote(tmpvalue); |
---|
869 | value=tmpvalue; |
---|
870 | valstop=quote2; |
---|
871 | } |
---|
872 | else |
---|
873 | if (przecinek<end) valstop=przecinek; else valstop=end; |
---|
874 | |
---|
875 | remember=*valstop; |
---|
876 | *(char*)valstop=0; |
---|
877 | ret=set(i,value); |
---|
878 | if (ret&(PSET_HITMAX|PSET_HITMIN)) |
---|
879 | FMprintf("Param","load2",FMLV_WARN,"Adjusted '%s' in '%s' (was too %s)", |
---|
880 | id(i),getName(),(ret&PSET_HITMAX)?"big":"small"); |
---|
881 | *(char*)valstop=remember; |
---|
882 | } |
---|
883 | |
---|
884 | if (i>=0) i++; |
---|
885 | #ifdef __CODEGUARD__ |
---|
886 | if (przecinek<end-1) t=przecinek+1; else return; |
---|
887 | #else |
---|
888 | t=przecinek+1; |
---|
889 | #endif |
---|
890 | } |
---|
891 | return; |
---|
892 | } |
---|
893 | |
---|
894 | int Param::grmember(int g,int a) |
---|
895 | { |
---|
896 | if ((getGroupCount()<2)&&(!g)) |
---|
897 | return (a<getPropCount())?a:-9999; |
---|
898 | |
---|
899 | ParamEntry *e=entry(0); |
---|
900 | int x=0,i=0; |
---|
901 | for (;e->id;i++,e++) |
---|
902 | { |
---|
903 | if (e->group==g) |
---|
904 | if (a==x) return i; else x++; |
---|
905 | } |
---|
906 | return -9999; |
---|
907 | } |
---|