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

Last change on this file since 754 was 754, checked in by Maciej Komosinski, 6 years ago

More strict rules for Param type descriptions and "unlimited range value" and "unlimited string length": "d 0 -1", "f 0 -1", "s 0 0", "s 1 0" (see formatspec.html)

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