source: cpp/frams/param/mutableparam.h @ 884

Last change on this file since 884 was 884, checked in by Maciej Komosinski, 5 years ago

Added a function to check if a property exists in MutableParam?

  • Property svn:eol-style set to native
File size: 2.9 KB
RevLine 
[286]1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
[884]2// Copyright (C) 1999-2019  Maciej Komosinski and Szymon Ulatowski.
[286]3// See LICENSE.txt for details.
[138]4
5#ifndef _MUTABLEPARAM_H_
6#define _MUTABLEPARAM_H_
7
8#include "mutparamiface.h"
9#include <frams/util/extvalue.h>
10#include "param.h"
11#include <frams/util/callbacks.h>
12
13class VMachine;
14class VMCode;
15
[737]16class MutableParam : public SimpleAbstractParam, public MutableParamInterface
[138]17{
[832]18        static const int staticprops;
[737]19        static ParamEntry pe_tab[];
20        /** group #0 cannot be removed by scripting  */
21        int persistgroup0;
22        SString grprefix;
23        SList entries;
24        SList groups;
25        int changed;
26        ParamEntry *entry(int i) { return (i < staticprops) ? pe_tab + i : ((ParamEntry*)entries(i - staticprops)); }
27        void *getTarget(int i) { return (i < staticprops) ? SimpleAbstractParam::getTarget(i) : (void*)entry(i)->offset; }
28        void call(int i, ExtValue* args, ExtValue *ret);
29public:
30        void clear(int everything = 0);
31        int firstMutableIndex() { return staticprops; }
32        SString& groupname(int g) { return *((SString*)groups(g)); }
33        MutableParam(const char*n = 0, const char*g = 0, int gr0 = 1);
34        void setGroupName(const SString &n, int g = 0) { groupname(g) = n; }
35        ~MutableParam() { clear(1); }
36        int getGroupCount() { return groups.size(); }
37        int getPropCount() { return entries.size() + staticprops; }
38        const char *grname(int i) { return (i >= groups.size()) ? 0 : groupname(i).c_str(); }
39        int grmember(int g, int a);
[138]40
[737]41        int addGroup(const SString& gname, int noprefix = 0);
42        void removeGroup(int pos);
[138]43
[737]44        int findGroup(const SString name, int ignoreprefix = 0);
[138]45
[737]46        /** @param data pointer to the variable. 0 will allocate new variable
47                @param position -1 = after the last one  */
48        int addProperty(void* data, const char* id, const char* type, const char* name, const char* help = 0, int flags = 0, int group = 0, int position = -1);
[138]49
[737]50        int addProperty(ParamEntry *pe, int position = -1);
51        ParamEntry * removeProperty(ParamEntry *pe);
52        ParamEntry * removeProperty(int i);
[138]53
[824]54        bool changeProperty(int i, const char* id, const char* type, const char* name, const char* help, int flags, int group);
55
[737]56        void notify(int id);
[138]57
[737]58        int setInt(int, paInt);
59        int setDouble(int, double);
60        int setString(int, const SString &);
61        int setObject(int, const ExtObject &);
62        int setExtValue(int, const ExtValue &);
[138]63
64#define STATRICKCLASS MutableParam
[737]65        PARAMPROCDEF(p_clear);
66        PARAMPROCDEF(p_addprop);
67        PARAMPROCDEF(p_remprop);
[824]68        PARAMPROCDEF(p_changeprop);
[737]69        PARAMPROCDEF(p_addgroup);
70        PARAMPROCDEF(p_remgroup);
[884]71        PARAMPROCDEF(p_exists);
[737]72        PARAMGETDEF(changedname) { arg1->setString(id(changed)); }
[138]73#undef STATRICKCLASS
74};
75
76class ParamSaver
77{
[737]78        SList store;
79public:
80        virtual bool shouldLoad(ParamInterface &pi, int i) { return true; }
81        ParamSaver() {}
82        ParamSaver(ParamInterface &pi) { loadFrom(pi); }
83        virtual ~ParamSaver() { clear(); }
84        void loadFrom(ParamInterface& p);
85        void saveTo(MutableParam& p);
86        void clear();
[138]87};
88
89
90#endif
Note: See TracBrowser for help on using the repository browser.