[138] | 1 | // This file is a part of the Framsticks GDK. |
---|
[197] | 2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[138] | 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 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 | |
---|
| 13 | class VMachine; |
---|
| 14 | class VMCode; |
---|
| 15 | |
---|
| 16 | class MutableParam: public SimpleAbstractParam, public MutableParamInterface |
---|
| 17 | { |
---|
| 18 | static const int staticprops=7; |
---|
| 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 | long 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); |
---|
| 29 | public: |
---|
| 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 : (const char*)groupname(i);} |
---|
| 39 | int grmember(int g,int a); |
---|
| 40 | |
---|
| 41 | int addGroup(const SString& gname,int noprefix=0); |
---|
| 42 | void removeGroup(int pos); |
---|
| 43 | |
---|
| 44 | int findGroup(const SString name,int ignoreprefix=0); |
---|
| 45 | |
---|
| 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); |
---|
| 49 | |
---|
| 50 | int addProperty(ParamEntry *pe,int position=-1); |
---|
| 51 | ParamEntry * removeProperty(ParamEntry *pe); |
---|
| 52 | ParamEntry * removeProperty(int i); |
---|
| 53 | |
---|
| 54 | void notify(int id); |
---|
| 55 | |
---|
| 56 | int setInt(int,long); |
---|
| 57 | int setDouble(int,double); |
---|
| 58 | int setString(int,const SString &); |
---|
| 59 | int setObject(int,const ExtObject &); |
---|
| 60 | int setExtValue(int,const ExtValue &); |
---|
| 61 | |
---|
| 62 | #define STATRICKCLASS MutableParam |
---|
| 63 | PARAMPROCDEF(p_clear); |
---|
| 64 | PARAMPROCDEF(p_addprop); |
---|
| 65 | PARAMPROCDEF(p_remprop); |
---|
| 66 | PARAMPROCDEF(p_addgroup); |
---|
| 67 | PARAMPROCDEF(p_remgroup); |
---|
| 68 | PARAMGETDEF(changedname) {arg1->setString(id(changed));} |
---|
| 69 | #undef STATRICKCLASS |
---|
| 70 | }; |
---|
| 71 | |
---|
| 72 | class ParamSaver |
---|
| 73 | { |
---|
| 74 | SList store; |
---|
| 75 | public: |
---|
| 76 | virtual bool shouldLoad(ParamInterface &pi,int i) {return true;} |
---|
| 77 | ParamSaver() {} |
---|
| 78 | ParamSaver(ParamInterface &pi) {loadFrom(pi);} |
---|
| 79 | ~ParamSaver() {clear();} |
---|
| 80 | void loadFrom(ParamInterface& p); |
---|
| 81 | void saveTo(MutableParam& p); |
---|
| 82 | void clear(); |
---|
| 83 | }; |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | #endif |
---|