source: cpp/frams/param/param.cpp @ 1217

Last change on this file since 1217 was 1217, checked in by Maciej Komosinski, 19 months ago

Handle potentially missing name in Param

  • Property svn:eol-style set to native
File size: 35.7 KB
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2022  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#include <stdio.h>
6#include <ctype.h>
7
8#include "param.h"
9#include <frams/util/extvalue.h>
10#include "common/log.h"
11#include <frams/util/sstringutils.h>
12#include <common/virtfile/stringfile.h>
13
14#ifdef _DEBUG
15//for sanityCheck - mutable param detection
16#include "mutparamiface.h"
17#endif
18
19//#define SAVE_ALL_NAMES
20#define SAVE_SELECTED_NAMES
21#define WARN_MISSING_NAME
22
23char MakeCodeGuardHappy;
24
25ParamEntry empty_paramtab[] =
26{ { "Empty", 1, 0, "Empty", }, { 0, 0, 0, }, };
27
28/** return: true if tilde was found, false if finished at EOF */
29static bool readUntilTilde(VirtFILE *f, SString &s)
30{
31        SString temp;
32        int z;
33        char last_char = 0;
34        bool tilde_found = false;
35        while ((z = f->Vgetc()) != EOF)
36        {
37                if (z == '~')
38                        if (last_char != '\\') { tilde_found = true; break; }
39                last_char = (char)z;
40                temp += last_char;
41        }
42        s = temp;
43        return tilde_found;
44}
45
46static const char *strchrlimit(const char *t, int ch, const char *limit)
47{
48        if (limit < t) return NULL;
49        return (const char*)memchr((const void*)t, ch, limit - t);
50}
51
52
53Param2ParamCopy::Param2ParamCopy(ParamInterface& schema, const std::initializer_list<const char*> names)
54{
55        for (const char* n : names)
56        {
57                int i = schema.findId(n);
58                if (i >= 0)
59                        fields.push_back(i);
60                else
61                        logPrintf("Param2ParamCopy", "findId", LOG_CRITICAL, "Can't find '%s.%s'", schema.getName(), n);
62        }
63}
64
65void Param2ParamCopy::operator()(const ParamInterface& from, ParamInterface& to)
66{
67        ExtValue tmp;
68        for (int i : fields)
69        {
70                ((ParamInterface&)from).get(i, tmp);
71                to.set(i, tmp);
72        }
73}
74
75
76void ParamInterface::copyFrom(ParamInterface *src)
77{
78        int n = getPropCount();
79        ExtValue v;
80        int j;
81        for (int i = 0; i < n; i++)
82                if ((!(flags(i) & PARAM_READONLY))
83                        && (*type(i) != 'p'))
84                {
85                        j = src->findId(id(i));
86                        if (j < 0) continue;
87                        src->get(j, v);
88                        set(i, v);
89                }
90}
91
92void ParamInterface::quickCopyFrom(ParamInterface *src)
93{
94        int n = getPropCount();
95        ExtValue v;
96        for (int i = 0; i < n; i++)
97                if ((!(flags(i) & PARAM_READONLY))
98                        && (*type(i) != 'p'))
99                {
100                        src->get(i, v);
101                        set(i, v);
102                }
103}
104
105int ParamInterface::getMinMaxInt(int prop, paInt& minumum, paInt& maximum, paInt &def)
106{
107        return getMinMaxIntFromTypeDef(type(prop), minumum, maximum, def);
108}
109
110int ParamInterface::getMinMaxDouble(int prop, double& minumum, double& maximum, double& def)
111{
112        return getMinMaxDoubleFromTypeDef(type(prop), minumum, maximum, def);
113}
114
115int ParamInterface::getMinMaxString(int prop, int& minumum, int& maximum, SString& def)
116{
117        return getMinMaxStringFromTypeDef(type(prop), minumum, maximum, def);
118}
119
120int ParamInterface::getMinMaxIntFromTypeDef(const char* t, paInt& minumum, paInt& maximum, paInt &def)
121{
122        while (*t) if (*t == ' ') break; else t++;
123        return sscanf(t, PA_INT_SCANF " " PA_INT_SCANF " " PA_INT_SCANF, &minumum, &maximum, &def);
124}
125
126int ParamInterface::getMinMaxDoubleFromTypeDef(const char* t, double& minumum, double& maximum, double& def)
127{
128        while (*t) if (*t == ' ') break; else t++;
129        return sscanf(t, "%lg %lg %lg", &minumum, &maximum, &def);
130}
131
132int ParamInterface::getMinMaxStringFromTypeDef(const char* t, int& minumum, int& maximum, SString& def)
133{
134        while (*t) if (*t == ' ') break; else t++;
135        int ret = sscanf(t, "%d %d", &minumum, &maximum);
136        def = SString::empty();
137        if (ret == 2)
138        {
139                while (*t == ' ') t++;
140                for (int skip_fields = 2; skip_fields > 0; skip_fields--)
141                {
142                        while (*t) if (*t == ' ') break; else t++;
143                        while (*t == ' ') t++;
144                }
145                if (*t)
146                {
147                        const char* end = strchr(t, '~');
148                        if (!end)
149                                end = t + strlen(t);
150                        while ((end > t) && (end[-1] == ' ')) end--;
151                        def = SString(t, end - t);
152                }
153                return 3;
154        }
155        else
156                return ret;
157}
158
159void ParamInterface::setDefault()
160{
161        for (int i = 0; i < getPropCount(); i++)
162                setDefault(i);
163}
164
165void ParamInterface::setMin()
166{
167        for (int i = 0; i < getPropCount(); i++)
168                setMin(i);
169}
170
171void ParamInterface::setMax()
172{
173        for (int i = 0; i < getPropCount(); i++)
174                setMax(i);
175}
176
177void ParamInterface::setDefault(int i)
178{
179        const char *t = type(i);
180        switch (*t)
181        {
182        case 'f':
183        {
184                double mn = 0, mx = 0, def = 0;
185                if (getMinMaxDoubleFromTypeDef(t, mn, mx, def) < 3) def = mn;
186                setDouble(i, def);
187        }
188        break;
189        case 'd':
190        {
191                paInt mn = 0, mx = 0, def = 0;
192                if (getMinMaxIntFromTypeDef(t, mn, mx, def) < 3) def = mn;
193                setInt(i, def);
194        }
195        break;
196        case 's': case 'x':
197        {
198                int mn, mx; SString def;
199                getMinMaxStringFromTypeDef(t, mn, mx, def);
200                if (*t == 's')
201                        setString(i, def);
202                else
203                {
204                        if (def.length() > 0) setExtValue(i, ExtValue(def)); else setExtValue(i, ExtValue::empty());
205                }
206        }
207        break;
208        case 'o':
209                setObject(i, ExtObject::empty());
210                break;
211        }
212}
213
214void ParamInterface::setMin(int i)
215{
216        const char *t = type(i);
217        switch (*t)
218        {
219        case 'f':
220        {
221                double mn = 0, mx = 0, def = 0;
222                getMinMaxDoubleFromTypeDef(t, mn, mx, def);
223                setDouble(i, mn);
224        }
225        break;
226        case 'd':
227        {
228                paInt mn = 0, mx = 0, def = 0;
229                getMinMaxIntFromTypeDef(t, mn, mx, def);
230                setInt(i, mn);
231        }
232        break;
233        default: setFromString(i, "", false);
234        }
235}
236
237void ParamInterface::setMax(int i)
238{
239        const char *t = type(i);
240        switch (*t)
241        {
242        case 'f':
243        {
244                double mn = 0, mx = 0, def = 0;
245                getMinMaxDoubleFromTypeDef(t, mn, mx, def);
246                setDouble(i, mx);
247        }
248        break;
249        case 'd':
250        {
251                paInt mn = 0, mx = 0, def = 0;
252                getMinMaxIntFromTypeDef(t, mn, mx, def);
253                setInt(i, mx);
254        }
255        break;
256        default: setFromString(i, "", false);
257        }
258}
259
260SString ParamInterface::getStringById(const char*prop)
261{
262        int i = findId(prop); if (i >= 0) return getString(i); else return SString();
263}
264paInt ParamInterface::getIntById(const char*prop)
265{
266        int i = findId(prop); if (i >= 0) return getInt(i); else return 0;
267}
268double ParamInterface::getDoubleById(const char*prop)
269{
270        int i = findId(prop); if (i >= 0) return getDouble(i); else return 0;
271}
272ExtObject ParamInterface::getObjectById(const char*prop)
273{
274        int i = findId(prop); if (i >= 0) return getObject(i); else return ExtObject();
275}
276ExtValue ParamInterface::getExtValueById(const char*prop)
277{
278        int i = findId(prop); if (i >= 0) return getExtValue(i); else return ExtValue();
279}
280
281int ParamInterface::setIntById(const char* prop, paInt v)
282{
283        int i = findId(prop); if (i >= 0) return setInt(i, v); else return PSET_NOPROPERTY;
284}
285int ParamInterface::setDoubleById(const char* prop, double v)
286{
287        int i = findId(prop); if (i >= 0) return setDouble(i, v); else return PSET_NOPROPERTY;
288}
289int ParamInterface::setStringById(const char* prop, const SString &v)
290{
291        int i = findId(prop); if (i >= 0) return setString(i, v); else return PSET_NOPROPERTY;
292}
293int ParamInterface::setObjectById(const char* prop, const ExtObject &v)
294{
295        int i = findId(prop); if (i >= 0) return setObject(i, v); else return PSET_NOPROPERTY;
296}
297int ParamInterface::setExtValueById(const char* prop, const ExtValue &v)
298{
299        int i = findId(prop); if (i >= 0) return setExtValue(i, v); else return PSET_NOPROPERTY;
300}
301int ParamInterface::setById(const char* prop, const ExtValue &v)
302{
303        int i = findId(prop); if (i >= 0) return set(i, v); else return PSET_NOPROPERTY;
304}
305
306int ParamInterface::saveMultiLine(VirtFILE* f, const char* altname, bool force)
307{
308        const char *p;
309        SString ws;
310        int err = 0, i;
311        bool withname = false;
312        if ((altname == NULL) || (altname[0] != 0))
313        {
314                err |= (f->Vputs(altname ? altname : getName()) == EOF);
315                err |= (f->Vputs(":\n") == EOF);
316                withname = true;
317        }
318        for (i = 0; p = id(i); i++)
319                err |= saveprop(f, i, p, force);
320        if (withname)
321                err |= (f->Vputs("\n") == EOF);
322        return err;
323}
324
325const char* ParamInterface::SERIALIZATION_PREFIX = "@Serialized:";
326
327int ParamInterface::saveprop(VirtFILE* f, int i, const char* p, bool force)
328{
329        if ((flags(i) & PARAM_DONTSAVE) && (!force)) return 0;
330        const char *typ = type(i);
331        if (*typ == 'p') return 0;
332
333        const char *t, *w;
334        SString ws;
335        int err = 0, cr;
336
337        err |= (f->Vputs(p) == EOF); f->Vputc(':');
338        cr = 0;
339        if ((*typ == 'x') || (*typ == 'o'))
340        {
341                ExtValue ex;
342                get(i, ex);
343                ws = SString(SERIALIZATION_PREFIX) + ex.serialize(NativeSerialization);
344        }
345        else
346                ws = get(i);
347        quoteTilde(ws);
348        w = ws.c_str();
349        if (ws.length() > 50) cr = 1;
350        else for (t = w; *t; t++) if ((*t == 10) || (*t == 13)) { cr = 1; break; }
351        if (cr) f->Vputs("~\n");
352        err |= (f->Vputs(w) == EOF);
353        err |= (f->Vputs(cr ? "~\n" : "\n") == EOF);
354        return err;
355}
356
357SString ParamInterface::nameDotProperty(int prop)
358{
359        SString ret = getName();
360        if (ret.size()>0) //name might be unavailable, happened in GenMan sub-Params
361                ret += ".";
362        ret += id(prop);
363        return ret;
364}
365
366SString ParamInterface::nameDotPropertyForMessages(int prop)
367{
368        SString name_dot_prop = nameDotProperty(prop);
369        if (getName()==NULL || getLongName()==NULL) //name/longname might be unavailable, happened in GenMan sub-Params
370                return name_dot_prop;
371       
372        if (strcmp(getName(), getLongName()) == 0)
373        {
374                if (strcmp(id(prop), name(prop)) == 0)
375                        return name_dot_prop;
376                else
377                        return SString("'") + name(prop) + "': " + name_dot_prop;
378        }
379        else
380                return SString("'") + name(prop) + "' in '" + getLongName() + "': " + name_dot_prop;
381}
382
383int SimpleAbstractParam::isequal(int i, void* defdata)
384{ // defdata->member == object->member ?
385        void *backup = object;
386        switch (type(i)[0])
387        {
388        case 'd':
389        {
390                select(defdata);
391                paInt x = getInt(i);
392                select(backup);
393                return x == getInt(i);
394        }
395        case 'f':
396        {
397                select(defdata);
398                double x = getDouble(i);
399                select(backup);
400                return x == getDouble(i);
401        }
402        case 's':
403        {
404                select(defdata);
405                SString x = getString(i);
406                select(backup);
407                return x == getString(i);
408        }
409        }
410        return 1;
411}
412
413void SimpleAbstractParam::saveSingleLine(SString& f, void *defdata, bool addcr, bool all_names)
414{ // defdata!=NULL -> does not save default values
415        const char *p;
416        int i;
417        int needlabel = 0;
418        int first = 1;
419        SString val;
420        SString t;
421        int fl;
422        // t+=SString(getName()); t+=':';
423        for (i = 0; p = id(i); i++)
424                if ((!((fl = flags(i)) & PARAM_DONTSAVE)) && type(i)[0]!='p')
425                {
426                        if (defdata && isequal(i, defdata))
427                                needlabel = 1;
428                        else
429                        {
430                                if (!first) t += ", ";
431#ifndef SAVE_ALL_NAMES
432#ifdef SAVE_SELECTED_NAMES
433                                if (needlabel || all_names || !(fl & PARAM_CANOMITNAME))
434#else
435                                if (needlabel)
436#endif
437#endif
438                                {
439                                        t += p; t += "="; needlabel = 0;
440                                }
441                                if (type(i)[0] == 's')
442                                { // string - special case
443                                        SString str = getString(i);
444                                        if (strContainsOneOf(str.c_str(), ", \\\n\r\t\""))
445                                        {
446                                                t += "\"";
447                                                sstringQuote(str);
448                                                t += str;
449                                                t += "\"";
450                                        }
451                                        else
452                                                t += str;
453                                }
454                                else
455                                        t += get(i);
456                                first = 0;
457                        }
458                }
459        if (addcr)
460                t += "\n";
461        f += t;
462}
463
464static void closingTildeError(ParamInterface *pi, VirtFILE *file, int field_index)
465{
466        SString fileinfo;
467        const char* fname = file->VgetPath();
468        if (fname != NULL)
469                fileinfo = SString::sprintf(" while reading from '%s'", fname);
470        SString field;
471        if (field_index >= 0)
472                field = pi->nameDotPropertyForMessages(field_index);
473        else
474                field = SString::sprintf("unknown property of '%s'", pi->getName());
475        logPrintf("ParamInterface", "load", LOG_WARN, "Closing '~' (tilde) not found in %s%s", field.c_str(), fileinfo.c_str());
476}
477
478template<typename T> void messageOnExceedRange(SimpleAbstractParam *pi, int i, int setflags, T valuetoset) ///< prints a warning when setflags indicates that allowed param range has been exceeded during set
479{
480        if (setflags & (PSET_HITMIN | PSET_HITMAX))
481        {
482                ExtValue v(valuetoset);
483                pi->messageOnExceedRange(i, setflags, v);
484        }
485}
486
487void SimpleAbstractParam::messageOnExceedRange(int i, int setflags, ExtValue& valuetoset) ///< prints a warning when setflags indicates that allowed param range has been exceeded during set
488{
489        if (setflags & (PSET_HITMIN | PSET_HITMAX))
490        {
491                SString svaluetoset = valuetoset.getString(); //converts any type to SString
492                SString actual = get(i);
493                bool s_type = type(i)[0] == 's';
494                bool show_length = valuetoset.getType() == TString;
495                const char* quote = (valuetoset.getType() == TString) ? "\"" : "'";
496                logPrintf("Param", "set", LOG_WARN, "Setting %s = %s exceeded allowed range (too %s). %s to %s.",
497                        nameDotPropertyForMessages(i).c_str(),
498                        ::sstringDelimitAndShorten(svaluetoset, 30, show_length, quote, quote).c_str(),
499                        (setflags & PSET_HITMAX) ? (s_type ? "long" : "big") : "small", s_type ? "Truncated" : "Adjusted",
500                        ::sstringDelimitAndShorten(actual, 30, show_length, quote, quote).c_str()
501                );
502        }
503}
504
505int ParamInterface::load(FileFormat format, VirtFILE* f, LoadOptions *options)
506{
507        LoadOptions default_options;
508        if (options == NULL)
509                options = &default_options;
510        switch (format)
511        {
512        case FormatMultiLine:
513                return loadMultiLine(f, *options);
514
515        case FormatSingleLine:
516        {
517                StringFILE *sf = dynamic_cast<StringFILE*>(f);
518                SString s;
519                if (sf)
520                {
521                        s = sf->getString().c_str();
522                        options->offset += sf->Vtell();
523                }
524                else
525                {
526                        if (!loadSStringLine(f, s))
527                                return -1;
528                }
529                return loadSingleLine(s, *options);
530        }
531        }
532        return -1;
533}
534
535int ParamInterface::load(FileFormat format, const SString &s, LoadOptions *options)
536{
537        LoadOptions default_options;
538        if (options == NULL)
539                options = &default_options;
540        switch (format)
541        {
542        case FormatMultiLine:
543        {
544                string std_string(s.c_str());
545                StringFILE f(std_string);
546                return loadMultiLine(&f, *options);
547        }
548
549        case FormatSingleLine:
550                return loadSingleLine(s, *options);
551        }
552        return -1;
553}
554
555int ParamInterface::loadMultiLine(VirtFILE* f, LoadOptions &options)
556{
557        SString buf;
558        int i;
559        const char *p, *p0;
560        int p_len;
561        bool loaded;
562        int fields_loaded = 0;
563        int unexpected_line = 0;
564        vector<bool> seen;
565        seen.resize(getPropCount());
566        if ((i = findId("beforeLoad")) >= 0)
567                call(i, NULL, NULL);
568        while (((!options.abortable) || (!*options.abortable)) && loadSStringLine(f, buf))
569        {
570                if (options.linenum) (*options.linenum)++;
571                const char* t = buf.c_str();
572                p0 = t; while (isblank(*p0)) p0++;
573                if (!*p0) break;
574                if (p0[0] == '#') { unexpected_line = 0; continue; }
575                p = strchr(p0, ':');
576                if (!p)
577                {
578                        switch (unexpected_line)
579                        {
580                        case 0:
581                                logPrintf("ParamInterface", "load", LOG_WARN, "Ignored unexpected line %s while reading object '%s'",
582                                        options.linenum ?
583                                        SString::sprintf("%d", *options.linenum).c_str()
584                                        : SString::sprintf("'%s'", p0).c_str(),
585                                        getName());
586                                break;
587                        case 1:
588                                logPrintf("ParamInterface", "load", LOG_WARN, "The following line(s) were also unexpected and were ignored");
589                                break;
590                        }
591                        unexpected_line++;
592                        continue;
593                }
594                unexpected_line = 0;
595                p_len = (int)(p - p0);
596                loaded = false;
597                if (p_len && ((i = findIdn(p0, p_len)) >= 0))
598                {
599                        if (seen[i])
600                        {
601                                SString fileinfo;
602                                const char* fname = f->VgetPath();
603                                if (fname != NULL)
604                                {
605                                        fileinfo = SString::sprintf(" while reading from '%s'", fname);
606                                        if (options.linenum)
607                                                fileinfo += SString::sprintf(" (line %d)", *options.linenum);
608                                }
609                                logPrintf("ParamInterface", "load", LOG_WARN, "Multiple '%s.%s' properties found%s", getName(), id(i), fileinfo.c_str());
610                        }
611                        else
612                                seen[i] = true;
613                        if (!(flags(i) & PARAM_DONTLOAD))
614                        {
615                                if (p0[p_len + 1] == '~')
616                                {
617                                        SString s;
618                                        if (!readUntilTilde(f, s))
619                                                closingTildeError(this, f, i);
620                                        int lfcount = 1;
621                                        const char* tmp = s.c_str();
622                                        while (tmp)
623                                                if ((tmp = strchr(tmp, '\n')))
624                                                {
625                                                        lfcount++; tmp++;
626                                                }
627                                        removeCR(s);
628                                        int ch; while ((ch = f->Vgetc()) != EOF) if (ch == '\n') break;
629                                        unquoteTilde(s);
630                                        if (options.linenum && (flags(i) & PARAM_LINECOMMENT))
631                                                s = SString::sprintf("@file %s\n@line %d\n", f->VgetPath(), *options.linenum + 1) + s;
632                                        setFromString(i, s.c_str(), false);
633                                        if (options.linenum)
634                                                (*options.linenum) += lfcount;
635                                }
636                                else
637                                {
638                                        SString s = SString(p0 + p_len + 1);
639                                        unquoteTilde(s);
640                                        setFromString(i, s.c_str(), false);
641                                }
642                                fields_loaded++;
643                                loaded = true;
644                        }
645                }
646                else if (options.warn_unknown_fields)
647                {
648                        SString name(p0, p_len);
649                        logPrintf("ParamInterface", "load", LOG_WARN, "Ignored unknown property '%s.%s'", getName(), name.c_str());
650                }
651
652                if ((!loaded) && (p0[p_len + 1] == '~'))
653                { // eat unrecognized multiline field
654                        SString s;
655                        if (!readUntilTilde(f, s))
656                                closingTildeError(this, f, -1);
657                        if (options.linenum)
658                        {
659                                const char* tmp = s.c_str();
660                                int lfcount = 1;
661                                while (tmp)
662                                        if ((tmp = strchr(tmp, '\n')))
663                                        {
664                                                lfcount++; tmp++;
665                                        }
666                                (*options.linenum) += lfcount;
667                        }
668                        int ch; while ((ch = f->Vgetc()) != EOF) if (ch == '\n') break;
669                }
670        }
671        if ((i = findId("afterLoad")) >= 0)
672                call(i, NULL, NULL);
673        return fields_loaded;
674}
675
676
677/*
678SString SimpleAbstractParam::getString(int i)
679{
680char *t;
681switch (*(t=type(i)))
682{
683case 'd':
684{
685for (i=atol(get(i));i>=0;i--) if (t) t=strchr(t+1,'~');
686if (t)
687{
688t++;
689char *t2=strchr(t,'~');
690if (!t2) t2=t+strlen(t);
691SString str;
692strncpy(str.directWrite(t2-t),t,t2-t);
693str.endWrite(t2-t);
694return str;
695}
696}
697}
698return get(i);
699}
700*/
701
702int ParamInterface::findId(const char* n)
703{
704        int i; const char *p;
705        for (i = 0; p = id(i); i++) if (!strcmp(n, p)) return i;
706        return -1;
707}
708
709int ParamInterface::findIdn(const char* naz, int n)
710{
711        int i; const char *p;
712        for (i = 0; p = id(i); i++) if ((!strncmp(naz, p, n)) && (!p[n])) return i;
713        return -1;
714}
715
716int ParamInterface::findGroupId(const char* name)
717{
718for(int i=0;i<getGroupCount();i++)
719        if (!strcmp(grname(i),name))
720                return i;
721return -1;
722}
723
724void ParamInterface::get(int i, ExtValue &ret)
725{
726        switch (type(i)[0])
727        {
728        case 'd':       ret.setInt(getInt(i)); break;
729        case 'f':       ret.setDouble(getDouble(i)); break;
730        case 's':       ret.setString(getString(i)); break;
731        case 'o':       ret.setObject(getObject(i)); break;
732        case 'x':       ret = getExtValue(i); break;
733        default: logPrintf("ParamInterface", "get", LOG_ERROR, "%s is not a property", nameDotPropertyForMessages(i).c_str());
734        }
735}
736
737int ParamInterface::setIntFromString(int i, const char* str, bool strict)
738{
739        paInt value;
740        if (!ExtValue::parseInt(str, value, strict, true))
741        {
742                paInt mn, mx, def;
743                if (getMinMaxInt(i, mn, mx, def) >= 3)
744                        return setInt(i, def) | PSET_PARSEFAILED;
745                else
746                        return setInt(i, (paInt)0) | PSET_PARSEFAILED;
747        }
748        else
749                return setInt(i, value);
750}
751
752int ParamInterface::setDoubleFromString(int i, const char* str)
753{
754        double value;
755        if (!ExtValue::parseDouble(str, value, true))
756        {
757                double mn, mx, def;
758                if (getMinMaxDouble(i, mn, mx, def) >= 3)
759                        return setDouble(i, def) | PSET_PARSEFAILED;
760                else
761                        return setDouble(i, (double)0) | PSET_PARSEFAILED;
762        }
763        else
764                return setDouble(i, value);
765}
766
767int ParamInterface::set(int i, const ExtValue &v)
768{
769        switch (type(i)[0])
770        {
771        case 'd':
772                if ((v.type == TInt) || (v.type == TDouble)) return setInt(i, v.getInt());
773                else
774                {
775                        if (v.type == TObj)
776                        {
777                                logPrintf("ParamInterface", "set", LOG_ERROR, "Setting int %s from object reference (%s)", nameDotPropertyForMessages(i).c_str(), v.getString().c_str());
778                                return 0;
779                        }
780                        else
781                                return setIntFromString(i, v.getString().c_str(), false);
782                }
783        case 'f':
784                if ((v.type == TInt) || (v.type == TDouble)) return setDouble(i, v.getDouble());
785                else
786                {
787                        if (v.type == TObj)
788                        {
789                                logPrintf("ParamInterface", "set", LOG_ERROR, "Setting float %s from object reference (%s)", nameDotPropertyForMessages(i).c_str(), v.getString().c_str());
790                                return 0;
791                        }
792                        else
793                                return setDoubleFromString(i, v.getString().c_str());
794                }
795        case 's': { SString t = v.getString(); return setString(i, t); }
796        case 'o':
797                if ((v.type != TUnknown) && (v.type != TObj))
798                        logPrintf("ParamInterface", "set", LOG_ERROR, "Setting object %s from %s", nameDotPropertyForMessages(i).c_str(), v.typeAndValue().c_str());
799                else
800                        return setObject(i, v.getObject());
801                break;
802        case 'x': return setExtValue(i, v);
803        default: logPrintf("ParamInterface", "set", LOG_ERROR, "%s is not a property", nameDotPropertyForMessages(i).c_str());
804        }
805        return 0;
806}
807
808int ParamInterface::setFromString(int i, const char *v, bool strict)
809{
810        char typ = type(i)[0];
811        switch (typ)
812        {
813        case 'd': return setIntFromString(i, v, strict);
814        case 'f': return setDoubleFromString(i, v);
815        case 's': { SString t(v); return setString(i, t); }
816        case 'x': case 'o':
817        {
818                ExtValue e;
819                const char* after;
820                if (!strncmp(v, SERIALIZATION_PREFIX, strlen(SERIALIZATION_PREFIX)))
821                {
822                        after = e.deserialize(v + strlen(SERIALIZATION_PREFIX));
823                        if ((after == NULL) || (*after))
824                        {
825                                logPrintf("ParamInterface", "set", LOG_ERROR, "serialization format mismatch in %s.%s", (getName() ? getName() : "<Unknown>"), id(i));
826                                e.setEmpty();
827                        }
828                }
829                else if ((after = e.parseNumber(v)) && (*after == 0)) //consumed the whole string
830                {
831                        //OK!
832                }
833                else
834                {
835                        e.setString(SString(v));
836                }
837                if (typ == 'x')
838                        return setExtValue(i, e);
839                else
840                        return setObject(i, e.getObject());
841        }
842        }
843        return 0;
844}
845
846SString ParamInterface::getText(int i) //find the current enum text or call get(i) if not enum
847{
848        const char *t;
849        if (((*(t = type(i))) == 'd') && (strchr(t, '~') != NULL)) //type is int and contains enum labels
850        {
851                paInt mn, mx, def;
852                int value = getInt(i);
853                if (getMinMaxIntFromTypeDef(t, mn, mx, def) >= 2)
854                {
855                        if (value > mx)
856                                return get(i);//unexpected value of out bounds (should never happen) -> fallback
857                        value -= mn;
858                }
859                if (value < 0) return get(i); //unexpected value of out bounds (should never happen) -> fallback
860                // now value is 0-based index of ~text
861                for (; value >= 0; value--) if (t) t = strchr(t + 1, '~'); else break;
862                if (t) // found n-th ~text in type description (else: not enough ~texts in type description)
863                {
864                        t++;
865                        const char *t2 = strchr(t, '~');
866                        if (!t2) t2 = t + strlen(t);
867                        return SString(t, (int)(t2 - t));
868                }
869        }
870        return get(i); //fallback - return int value as string
871}
872
873SString ParamInterface::get(int i)
874{
875        switch (type(i)[0])
876        {
877        case 'd': return SString::valueOf(getInt(i));
878        case 'f': return SString::valueOf(getDouble(i));
879        case 's': return getString(i);
880        }
881        ExtValue v;
882        get(i, v);
883        return v.getString();
884}
885
886bool ParamInterface::isValidTypeDescription(const char* t)
887{
888        if (t == NULL) return false;
889        if (*t == 0) return false;
890        if (strchr("dfsoxp", *t) == NULL) return false;
891        switch (*t)
892        {
893        case 'd':
894        {
895                paInt a, b, c;
896                int have = getMinMaxIntFromTypeDef(t, a, b, c);
897                if (have == 1) return false;
898                if ((have >= 2) && (b < a) && (a != 0) && (b != -1)) return false; // max<min meaning 'undefined' is only allowed as "d 0 -1"
899        }
900        break;
901        case 'f':
902        {
903                double a, b, c;
904                int have = getMinMaxDoubleFromTypeDef(t, a, b, c);
905                if (have == 1) return false;
906                if ((have >= 2) && (b < a) && (a != 0) && (b != -1)) return false; // max<min meaning 'undefined' is only allowed as "f 0 -1"
907        }
908        break;
909        case 's':
910        {
911                int a, b; SString c;
912                int have = getMinMaxStringFromTypeDef(t, a, b, c);
913                //if (have == 1) return false; //not sure?
914                if ((have >= 1) && (!((a == 0) || (a == 1)))) return false; // 'min' for string (single/multi) can be only 0 or 1
915                if ((have >= 2) && (b < -1)) return false; // max=-1 means unlimited, >=0 is max len, max<-1 is not allowed
916        }
917        break;
918        }
919        return true;
920}
921
922SString ParamInterface::friendlyTypeDescrFromTypeDef(const char* type)
923{
924        SString t;
925        switch (type[0])
926        {
927        case 'd': t += "integer";
928        {paInt a, b, c; int n = getMinMaxIntFromTypeDef(type, a, b, c); if ((n >= 2) && (b >= a)) t += SString::sprintf(" %d..%d", a, b); if (n >= 3) t += SString::sprintf(" (default %d)", c); }
929        break;
930        case 'f': t += "float";
931        {double a, b, c; int n = getMinMaxDoubleFromTypeDef(type, a, b, c); if ((n >= 2) && (b >= a)) t += SString::sprintf(" %g..%g", a, b); if (n >= 3) t += SString::sprintf(" (default %g)", c); }
932        break;
933        case 's': t += "string";
934        {int a, b; SString c; int n = getMinMaxStringFromTypeDef(type, a, b, c); if ((n >= 2) && (b > 0)) t += SString::sprintf(", max %d chars", b); if (n >= 3) t += SString::sprintf(" (default \"%s\")", c.c_str()); }
935        break;
936        case 'x': t += "untyped value"; break;
937        case 'p': t += "function"; break;
938        case 'o': t += "object"; if (type[1]) { t += " of class "; t += type + 1; } break;
939        default: return "unknown type";
940        }
941        return t;
942}
943
944//////////////////////////////// PARAM ////////////////////////////////////
945
946#ifdef _DEBUG
947void SimpleAbstractParam::sanityCheck(int i)
948{
949        ParamEntry *pe = entry(i);
950
951        const char* t = pe->type;
952        const char* err = NULL;
953
954        if (!isValidTypeDescription(t))
955                err = "invalid type description";
956        if (*t == 'p')
957        {
958                if (pe->fun1 == NULL)
959                {
960                        MutableParamInterface *mpi = dynamic_cast<MutableParamInterface*>(this);
961                        if (mpi == NULL) // Avoid false positives for script-driven mutable params, like expdefs. This can't be reliably verified. Function pointer checking is meant for static param tables anyway so it's probably not a big deal.
962                                err = "no procedure defined";
963                }
964        }
965        else
966        {
967                if ((t[0] == 'o') && (t[1] == ' '))
968                {
969                        err = "space after 'o'";
970                }
971                if (!(pe->flags & (PARAM_READONLY | PARAM_DONTSAVE | PARAM_USERREADONLY | PARAM_CONST | PARAM_DONTLOAD | PARAM_LINECOMMENT | PARAM_OBJECTSET)))
972                { //write access
973                        if ((pe->fun2 == NULL) && (pe->offset == PARAM_ILLEGAL_OFFSET))
974                                err = "no field defined (GETONLY without PARAM_READONLY?)";
975                }
976        }
977        if (err != NULL)
978                logPrintf("SimpleAbstractParam", "sanityCheck", LOG_ERROR,
979                        "Invalid ParamEntry for %s (%s)", nameDotPropertyForMessages(i).c_str(), err);
980}
981#endif
982
983void *SimpleAbstractParam::getTarget(int i)
984{
985        return (void*)(((char*)object) + entry(i)->offset);
986        //return &(object->*(entry(i)->fldptr));
987}
988
989///////// get
990
991#ifdef _DEBUG
992#define SANITY_CHECK(i) sanityCheck(i)
993#else
994#define SANITY_CHECK(i)
995#endif
996
997paInt SimpleAbstractParam::getInt(int i)
998{
999        SANITY_CHECK(i);
1000        ExtValue v;
1001        ParamEntry *pe = entry(i);
1002        if (pe->fun1)
1003        {
1004                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
1005                return v.getInt();
1006        }
1007        else
1008        {
1009                void *target = getTarget(i);
1010                return *((paInt*)target);
1011        }
1012}
1013
1014double SimpleAbstractParam::getDouble(int i)
1015{
1016        SANITY_CHECK(i);
1017        ExtValue v;
1018        ParamEntry *pe = entry(i);
1019        if (pe->fun1)
1020        {
1021                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
1022                return v.getDouble();
1023        }
1024        else
1025        {
1026                void *target = getTarget(i);
1027                return *((double*)target);
1028        }
1029}
1030
1031SString SimpleAbstractParam::getString(int i)
1032{
1033        SANITY_CHECK(i);
1034        ExtValue v;
1035        ParamEntry *pe = entry(i);
1036        if (pe->fun1)
1037        {
1038                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
1039                return v.getString();
1040        }
1041        else
1042        {
1043                void *target = getTarget(i);
1044                return *((SString*)target);
1045        }
1046}
1047
1048ExtObject SimpleAbstractParam::getObject(int i)
1049{
1050        SANITY_CHECK(i);
1051        ExtValue v;
1052        ParamEntry *pe = entry(i);
1053        if (pe->fun1)
1054        {
1055                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
1056                return v.getObject();
1057        }
1058        else
1059        {
1060                void *target = getTarget(i);
1061                return *((ExtObject*)target);
1062        }
1063}
1064
1065ExtValue SimpleAbstractParam::getExtValue(int i)
1066{
1067        SANITY_CHECK(i);
1068        ExtValue v;
1069        ParamEntry *pe = entry(i);
1070        if (pe->fun1)
1071        {
1072                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
1073                return v;
1074        }
1075        else
1076        {
1077                void *target = getTarget(i);
1078                return *((ExtValue*)target);
1079        }
1080}
1081
1082
1083//////// set
1084
1085int SimpleAbstractParam::setInt(int i, paInt x)
1086{
1087        SANITY_CHECK(i);
1088        ExtValue v;
1089        ParamEntry *pe = entry(i);
1090        if (pe->flags & PARAM_READONLY) return PSET_RONLY;
1091        paInt xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1092        paInt mn = 0, mx = 0, de = 0;
1093        int result = 0;
1094        if (getMinMaxIntFromTypeDef(pe->type, mn, mx, de) >= 2)
1095                if (mn <= mx) // else if mn>mx then the min/max constraint makes no sense and there is no checking
1096                {
1097                        if (x < mn) { x = mn; result = PSET_HITMIN; }
1098                        else if (x > mx) { x = mx; result = PSET_HITMAX; }
1099                }
1100
1101        if (pe->fun2)
1102        {
1103                v.setInt(x);
1104                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
1105        }
1106        else
1107        {
1108                void *target = getTarget(i);
1109                if (dontcheckchanges || (*((paInt*)target) != x))
1110                {
1111                        result |= PSET_CHANGED;
1112                        *((paInt*)target) = x;
1113                }
1114        }
1115        ::messageOnExceedRange(this, i, result, xcopy);
1116        return result;
1117}
1118
1119int SimpleAbstractParam::setDouble(int i, double x)
1120{
1121        SANITY_CHECK(i);
1122        ExtValue v;
1123        ParamEntry *pe = entry(i);
1124        if (pe->flags & PARAM_READONLY) return PSET_RONLY;
1125        double xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1126        double mn = 0, mx = 0, de = 0;
1127        int result = 0;
1128        if (getMinMaxDoubleFromTypeDef(pe->type, mn, mx, de) >= 2)
1129                if (mn <= mx) // else if mn>mx then the min/max constraint makes no sense and there is no checking
1130                {
1131                        if (x < mn) { x = mn; result = PSET_HITMIN; }
1132                        else if (x > mx) { x = mx; result = PSET_HITMAX; }
1133                }
1134
1135        if (pe->fun2)
1136        {
1137                v.setDouble(x);
1138                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
1139        }
1140        else
1141        {
1142                void *target = getTarget(i);
1143                if (dontcheckchanges || (*((double*)target) != x))
1144                {
1145                        result |= PSET_CHANGED;
1146                        *((double*)target) = x;
1147                }
1148        }
1149        ::messageOnExceedRange(this, i, result, xcopy);
1150        return result;
1151}
1152
1153int SimpleAbstractParam::setString(int i, const SString& x)
1154{
1155        SANITY_CHECK(i);
1156        ExtValue v;
1157        SString vs;
1158        const SString *xx = &x;
1159        ParamEntry *pe = entry(i);
1160        if (pe->flags & PARAM_READONLY) return PSET_RONLY;
1161        SString xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1162        const char* t = pe->type + 1;
1163        while (*t) if (*t == ' ') break; else t++;
1164        int mn = 0, mx = 0;
1165        int result = 0;
1166        if (sscanf(t, "%d %d", &mn, &mx) == 2) //using getMinMax would also get default value, which is not needed here
1167        {
1168                if ((x.length() > mx) && (mx >= 0))
1169                {
1170                        vs = x.substr(0, mx);
1171                        xx = &vs;
1172                        result |= PSET_HITMAX;
1173                }
1174        }
1175
1176        if (pe->fun2)
1177        {
1178                v.setString(*xx);
1179                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
1180        }
1181        else
1182        {
1183                void *target = getTarget(i);
1184                if (dontcheckchanges || (!(*((SString*)target) == *xx)))
1185                {
1186                        result |= PSET_CHANGED;
1187                        *((SString*)target) = *xx;
1188                }
1189        }
1190        ::messageOnExceedRange(this, i, result, xcopy);
1191        return result;
1192}
1193
1194int SimpleAbstractParam::setObject(int i, const ExtObject& x)
1195{
1196        SANITY_CHECK(i);
1197        ExtValue v;
1198        ParamEntry *pe = entry(i);
1199        if (pe->flags & PARAM_READONLY) return PSET_RONLY;
1200        if (pe->flags & PARAM_OBJECTSET)
1201        {
1202                ExtObject o = getObject(i);
1203                Param tmp;
1204                ParamInterface* oif = o.getParamInterface(tmp);
1205                int ass;
1206                if (oif && ((ass = oif->findId("assign")) >= 0))
1207                {
1208                        ExtValue arg = x;
1209                        oif->call(ass, &arg, &v);
1210                }
1211                else
1212                        logPrintf("SimpleAbstractParam", "setObject", LOG_ERROR,
1213                                "%s is PARAM_OBJECTSET but no 'assign()' in %s", nameDotPropertyForMessages(i).c_str(), o.interfaceName());
1214                return PSET_CHANGED;
1215        }
1216        ExtObject xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1217        if (pe->fun2)
1218        {
1219                v.setObject(x);
1220                int result = (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
1221                ::messageOnExceedRange(this, i, result, xcopy);
1222                return result;
1223        }
1224        else
1225        {
1226                void *target = getTarget(i);
1227                *((ExtObject*)target) = x;
1228                return PSET_CHANGED;
1229        }
1230}
1231
1232int SimpleAbstractParam::setExtValue(int i, const ExtValue& x)
1233{
1234        SANITY_CHECK(i);
1235        ParamEntry *pe = entry(i);
1236        if (pe->flags & PARAM_READONLY) return PSET_RONLY;
1237        ExtValue xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1238        if (pe->fun2)
1239        {
1240                int result = (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &x);
1241                ::messageOnExceedRange(this, i, result, xcopy);
1242                return result;
1243        }
1244        else
1245        {
1246                void *target = getTarget(i);
1247                *((ExtValue*)target) = x;
1248                return PSET_CHANGED;
1249        }
1250}
1251
1252void SimpleAbstractParam::call(int i, ExtValue *args, ExtValue *ret)
1253{
1254        SANITY_CHECK(i);
1255        ParamEntry *pe = entry(i);
1256        if (!pe) return;
1257        if (pe->fun1 && (pe->type[0] == 'p'))
1258                (*(void(*)(void*, ExtValue*, ExtValue*))pe->fun1)(object, args, ret);
1259        else
1260        {
1261                logPrintf("SimpleAbstractParam", "call", LOG_ERROR,
1262                        (*pe->type != 'p') ? "%s is not a function" : "Internal error - undefined function pointer for %s", nameDotPropertyForMessages(i).c_str());
1263                ret->setInvalid();
1264        }
1265}
1266
1267void SimpleAbstractParam::setDefault()
1268{
1269        bool save = dontcheckchanges;
1270        dontcheckchanges = 1;
1271        ParamInterface::setDefault();
1272        dontcheckchanges = save;
1273}
1274
1275void SimpleAbstractParam::setDefault(int i)
1276{
1277        bool save = dontcheckchanges;
1278        dontcheckchanges = 1;
1279        ParamInterface::setDefault(i);
1280        dontcheckchanges = save;
1281}
1282
1283// Returns the address of the beginning of the line.
1284// len = line length (without \n).
1285// 0 may mean the line with length=0 or the end of the SString.
1286// poz is advanced to the beginning of the next line.
1287// A typical loop: for(poz=0;poz<s.d;) {line=getline(s,poz,len);...
1288static const char *getline(const SString &s, int &poz, int &len)
1289{
1290        const char *beg = s.c_str() + poz;
1291        if (poz >= s.length()) { poz = s.length(); len = 0; return s.c_str() + s.length(); }
1292        const char *lf = strchr(beg, '\n');
1293        if (!lf) { lf = s.c_str() + s.length() - 1; poz = s.length(); }
1294        else { poz = (int)(lf - s.c_str()) + 1; if (poz > s.length()) poz = s.length(); }
1295        while (lf >= beg) if ((*lf == '\n') || (*lf == '\r')) lf--; else break;
1296        len = (int)(lf - beg) + 1;
1297        return beg;
1298}
1299
1300int ParamInterface::loadSingleLine(const SString &s, LoadOptions &options)
1301{
1302        int i; // the index number of the parameter
1303        int tmpi;
1304        int len;
1305        int ret;
1306        int fields_loaded = 0;
1307        const char *t, *lin, *end;
1308        const char *equals_sign, *field_end, *next_field;
1309        char remember;
1310        const char *quote, *quote2;
1311        const char *value, *valstop;
1312        SString tmpvalue;
1313        bool parse_failed = false;
1314        if (options.offset >= s.length()) return fields_loaded;
1315        t = s.c_str() + options.offset;
1316
1317        lin = getline(s, options.offset, len); // all fields must be encoded in a single line
1318        if (!len) return fields_loaded; // empty line = end
1319        i = 0;
1320        end = lin + len;
1321        while (t < end)
1322        {
1323                // processing a single field
1324                // "p:name=field_value,  field_name=field_value  , name=value..."
1325                //                     ^ ^-t (after)           ^ ^_next_field
1326                //                     \_t (before)            \_field_end
1327                while (isspace(*t)) if (t < end) t++; else return fields_loaded;
1328
1329                field_end = strchrlimit(t, ',', end); if (!field_end) field_end = end;
1330                next_field = field_end;
1331                while ((field_end > t) && isblank(field_end[-1])) field_end--;
1332                quote = strchrlimit(t, '\"', field_end);
1333                if (quote)
1334                {
1335                        quote2 = skipQuoteString(quote + 1, end);
1336                        if (quote2 > field_end)
1337                        {
1338                                field_end = strchrlimit(quote2 + 1, ',', end);
1339                                if (!field_end) field_end = end;
1340                                next_field = field_end;
1341                        }
1342                        equals_sign = strchrlimit(t, '=', quote);
1343                }
1344                else
1345                {
1346                        equals_sign = strchrlimit(t, '=', field_end);
1347                        quote2 = 0;
1348                }
1349                if (equals_sign == t) { t++; equals_sign = 0; }
1350                if (field_end == t)     // skip empty value
1351                {
1352                        t++; if (i >= 0) i++;
1353                        continue;
1354                }
1355                if (equals_sign) // have parameter name
1356                {
1357                        tmpi = findIdn(t, (int)(equals_sign - t));
1358                        i = tmpi;
1359                        if (tmpi < 0)
1360                        {
1361                                SString name(t, (int)(equals_sign - t));
1362                                logPrintf("Param", "loadSingleLine", LOG_WARN, "Unknown property '%s.%s' (ignored)", getName(), name.c_str());
1363                        }
1364                        t = equals_sign + 1; // t=value
1365                }
1366#ifdef WARN_MISSING_NAME
1367                else // no parameter name
1368                {
1369#ifdef SAVE_SELECTED_NAMES
1370                        if ((i < 0) // field after unknown field
1371                                || (i >= getPropCount()) // field after last field
1372                                || !(flags(i) & PARAM_CANOMITNAME)) // valid field but it can't be skipped
1373#endif
1374                        {
1375                                if (i < getPropCount())
1376                                        logPrintf("Param", "loadSingleLine", LOG_WARN, "Missing property name in '%s'", getName());
1377                                else // 'i' can go past PropCount because of moving to subsequent properties by i++, id(i) is then NULL
1378                                        logPrintf("Param", "loadSingleLine", LOG_WARN, "Value after the last property of '%s'", getName());
1379                        }
1380                }
1381                //else skipping a skippable field
1382#endif
1383                if ((i >= 0) && id(i)) // shared by name and skippped name cases
1384                {
1385                        value = t;
1386                        if (quote)
1387                        {
1388                                tmpvalue.copyFrom(quote + 1, (int)(quote2 - quote) - 1);
1389                                sstringUnquote(tmpvalue);
1390                                value = tmpvalue.c_str();
1391                                valstop = quote2;
1392                        }
1393                        else
1394                                if (field_end < end) valstop = field_end; else valstop = end;
1395
1396                        remember = *valstop;
1397                        *(char*)valstop = 0;
1398                        ret = setFromString(i, value, true);
1399                        fields_loaded++;
1400                        if (ret & PSET_PARSEFAILED)
1401                                parse_failed = true;
1402                        *(char*)valstop = remember;
1403                }
1404
1405                if (i >= 0) i++;
1406#ifdef __CODEGUARD__
1407                if (next_field < end - 1) t = next_field + 1; else return fields_loaded;
1408#else
1409                t = next_field + 1;
1410#endif
1411        }
1412        if (parse_failed) options.parse_failed = true;
1413        return fields_loaded;
1414}
1415
1416int Param::grmember(int g, int a)
1417{
1418        if ((getGroupCount() < 2) && (!g))
1419                return (a < getPropCount()) ? a : -9999;
1420
1421        ParamEntry *e = entry(0);
1422        int x = 0, i = 0;
1423        for (; e->id; i++, e++)
1424        {
1425                if (e->group == g)
1426                        if (a == x) return i; else x++;
1427        }
1428        return -9999;
1429}
Note: See TracBrowser for help on using the repository browser.