1 | // This file is a part of the Framsticks GDK. |
---|
2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.framsticks.com/ for further information. |
---|
4 | |
---|
5 | #include "mutableparam.h" |
---|
6 | #include <frams/util/extvalue.h> |
---|
7 | |
---|
8 | #define FIELDSTRUCT MutableParam |
---|
9 | ParamEntry MutableParam::pe_tab[]= |
---|
10 | { |
---|
11 | {"clear",0,PARAM_DONTSAVE+PARAM_USERHIDDEN,"remove all properties","p",PROCEDURE(p_clear),}, |
---|
12 | {"add",0,PARAM_DONTSAVE+PARAM_USERHIDDEN,"add property (id,type,name,help)","p",PROCEDURE(p_addprop),}, |
---|
13 | {"remove",0,PARAM_DONTSAVE+PARAM_USERHIDDEN,"remove property (index)","p",PROCEDURE(p_remprop),}, |
---|
14 | {"addGroup",0,PARAM_DONTSAVE+PARAM_USERHIDDEN,"add group (name)","p",PROCEDURE(p_addgroup),}, |
---|
15 | {"removeGroup",0,PARAM_DONTSAVE+PARAM_USERHIDDEN,"remove group (index)","p",PROCEDURE(p_remgroup),}, |
---|
16 | {"changedProperty",0,PARAM_DONTSAVE+PARAM_USERHIDDEN+PARAM_READONLY,"last changed property #","d",FIELD(changed),}, |
---|
17 | {"changedPropertyId",0,PARAM_DONTSAVE+PARAM_USERHIDDEN+PARAM_READONLY,"last changed property id","s",GETONLY(changedname),}, |
---|
18 | }; |
---|
19 | #undef FIELDSTRUCT |
---|
20 | |
---|
21 | MutableParam::MutableParam(const char*n,const char*g,int gr0) |
---|
22 | :SimpleAbstractParam(this,n),persistgroup0(gr0),grprefix(g) |
---|
23 | { |
---|
24 | if (persistgroup0) |
---|
25 | addGroup(grprefix,1); |
---|
26 | } |
---|
27 | |
---|
28 | int MutableParam::findGroup(const SString name,int ignoreprefix) |
---|
29 | { |
---|
30 | int skipprefix=grprefix.len()?grprefix.len()+2:0; |
---|
31 | for (int i=0;i<groups.size();i++) |
---|
32 | { |
---|
33 | if (ignoreprefix) |
---|
34 | { |
---|
35 | const char *noprefix=(const char*)groupname(i); |
---|
36 | if ((int)strlen(noprefix) < skipprefix) continue; |
---|
37 | noprefix+=skipprefix; |
---|
38 | if (!strcmp(noprefix,(const char*)name)) return i; |
---|
39 | } |
---|
40 | else |
---|
41 | if (groupname(i)==name) return i; |
---|
42 | } |
---|
43 | return -1; |
---|
44 | } |
---|
45 | |
---|
46 | int MutableParam::addGroup(const SString& gname,int noprefix) |
---|
47 | { |
---|
48 | SString tmp; |
---|
49 | if (noprefix) |
---|
50 | tmp=gname; |
---|
51 | else |
---|
52 | { |
---|
53 | tmp=grprefix; |
---|
54 | if (tmp.len()) tmp+=": "; |
---|
55 | tmp+=gname; |
---|
56 | } |
---|
57 | groups+=new SString(tmp); |
---|
58 | int position=groups.size()-1; |
---|
59 | ongroupadd.action(position); |
---|
60 | return position; |
---|
61 | } |
---|
62 | |
---|
63 | void MutableParam::removeGroup(int g) |
---|
64 | { |
---|
65 | if ((g<0)||(g>=MutableParam::getGroupCount())) return; |
---|
66 | ParamEntry *e; |
---|
67 | for (int i=MutableParam::getPropCount()-1;i>=staticprops;i--) |
---|
68 | { |
---|
69 | e=entry(i); |
---|
70 | if (g==e->group) |
---|
71 | removeProperty(i); |
---|
72 | } |
---|
73 | SString *s=(SString *)groups(g); |
---|
74 | if (s) delete s; |
---|
75 | groups-=g; |
---|
76 | ongroupdelete.action(g); |
---|
77 | } |
---|
78 | |
---|
79 | int MutableParam::grmember(int g,int a) |
---|
80 | { |
---|
81 | if (g==0) |
---|
82 | { |
---|
83 | if (getGroupCount()<2) |
---|
84 | return (a<getPropCount())?a:-9999; |
---|
85 | if (a<staticprops) return a; |
---|
86 | a-=staticprops; |
---|
87 | } |
---|
88 | ParamEntry *e; |
---|
89 | for (int i=staticprops;e=entry(i);i++) |
---|
90 | if (g==e->group) |
---|
91 | if (!a--) return i; |
---|
92 | return -9999; |
---|
93 | } |
---|
94 | |
---|
95 | int MutableParam::addProperty(ParamEntry *pe,int position) |
---|
96 | { |
---|
97 | DB(printf("MutableParam::add(%s)\n",pe->id)); |
---|
98 | if (position<0) |
---|
99 | position=entries.size()+staticprops; |
---|
100 | entries.insert(position-staticprops,pe); |
---|
101 | |
---|
102 | if (pe->offset) |
---|
103 | pe->flags &= ~MUTPARAM_ALLOCDATA; |
---|
104 | else |
---|
105 | { |
---|
106 | pe->flags |= MUTPARAM_ALLOCDATA; |
---|
107 | void *d=0; |
---|
108 | switch(pe->type[0]) |
---|
109 | { |
---|
110 | case 'd': d=new int(); *((int*)d)=0; break; |
---|
111 | case 'f': d=new double(); *((double*)d)=0; break; |
---|
112 | case 's': d=new SString(); break; |
---|
113 | case 'x': d=new ExtValue(); break; |
---|
114 | case 'o': d=new ExtObject(); break; |
---|
115 | } |
---|
116 | pe->offset=(int)d; |
---|
117 | } |
---|
118 | onadd.action(position); |
---|
119 | return position; |
---|
120 | } |
---|
121 | |
---|
122 | ParamEntry * MutableParam::removeProperty(ParamEntry *pe) |
---|
123 | { |
---|
124 | int index=entries.find(pe); |
---|
125 | if (index>=0) return removeProperty(index); else return pe; |
---|
126 | } |
---|
127 | |
---|
128 | ParamEntry * MutableParam::removeProperty(int i) |
---|
129 | { |
---|
130 | ParamEntry *pe=(ParamEntry *)entries(i-staticprops); |
---|
131 | DB(printf("MutableParam::remove(%d)\n",i)); |
---|
132 | void *d=(void*)pe->offset; |
---|
133 | if (d && (pe->flags & MUTPARAM_ALLOCDATA)) |
---|
134 | switch(pe->type[0]) |
---|
135 | { |
---|
136 | case 'd': delete (int*)d; break; |
---|
137 | case 'f': delete (double*)d; break; |
---|
138 | case 's': delete (SString*)d; break; |
---|
139 | case 'x': delete (ExtValue*)d; break; |
---|
140 | case 'o': delete (ExtObject*)d; break; |
---|
141 | } |
---|
142 | entries-=i-staticprops; |
---|
143 | if (pe->flags & MUTPARAM_ALLOCENTRY) |
---|
144 | { |
---|
145 | if (pe->name) free((void*)pe->name); |
---|
146 | if (pe->id) free((void*)pe->id); |
---|
147 | if (pe->help) free((void*)pe->help); |
---|
148 | if (pe->type) free((void*)pe->type); |
---|
149 | delete pe; |
---|
150 | } |
---|
151 | ondelete.action(i); |
---|
152 | return pe; |
---|
153 | } |
---|
154 | |
---|
155 | void MutableParam::clear(int everything) |
---|
156 | { |
---|
157 | DB(printf("MutableParam::clear\n")); |
---|
158 | for (int i=entries.size()-1;i>=0;i--) |
---|
159 | removeProperty(i+staticprops); |
---|
160 | int lastgroup=(everything || (persistgroup0==0))?0:1; |
---|
161 | for (int i=groups.size()-1;i>=lastgroup;i--) |
---|
162 | removeGroup(i); |
---|
163 | } |
---|
164 | |
---|
165 | void MutableParam::p_clear(ExtValue *args,ExtValue *ret) |
---|
166 | { clear(); } |
---|
167 | |
---|
168 | int MutableParam::addProperty(void* data,const char* id,const char* type,const char* name,const char* help,int flags,int group,int position) |
---|
169 | { |
---|
170 | if ((!id)&&(!type)) return -1; |
---|
171 | ParamEntry *pe=new ParamEntry(); |
---|
172 | pe->fun1=0; pe->fun2=0; |
---|
173 | pe->group=(short)group; |
---|
174 | pe->flags=(short)(flags | MUTPARAM_ALLOCENTRY); |
---|
175 | pe->offset=(long)data; |
---|
176 | pe->id=strdup(id); |
---|
177 | pe->type=strdup(type); |
---|
178 | pe->name=name?strdup(name):0; |
---|
179 | pe->help=help?strdup(help):0; |
---|
180 | return addProperty(pe,position); |
---|
181 | } |
---|
182 | |
---|
183 | void MutableParam::p_addprop(ExtValue *args,ExtValue *ret) |
---|
184 | { |
---|
185 | int i=addProperty(0,args[2].getString(),args[1].getString(),args[0].getString()); |
---|
186 | ret->setInt(i); |
---|
187 | } |
---|
188 | |
---|
189 | void MutableParam::p_remprop(ExtValue *args,ExtValue *ret) |
---|
190 | { |
---|
191 | removeProperty(args[0].getInt()); |
---|
192 | } |
---|
193 | |
---|
194 | void MutableParam::p_addgroup(ExtValue *args,ExtValue *ret) |
---|
195 | { |
---|
196 | int i=addGroup(args[0].getString()); |
---|
197 | ret->setInt(i); |
---|
198 | } |
---|
199 | |
---|
200 | void MutableParam::p_remgroup(ExtValue *args,ExtValue *ret) |
---|
201 | { |
---|
202 | removeGroup(args[0].getInt()); |
---|
203 | } |
---|
204 | |
---|
205 | void MutableParam::notify(int id) |
---|
206 | { |
---|
207 | changed=id; |
---|
208 | onactivate.action(id); |
---|
209 | } |
---|
210 | |
---|
211 | int MutableParam::setInt(int i,long v) |
---|
212 | { |
---|
213 | int ret=SimpleAbstractParam::setInt(i,v); |
---|
214 | if (ret & PSET_CHANGED) notify(i); |
---|
215 | return ret; |
---|
216 | } |
---|
217 | |
---|
218 | int MutableParam::setDouble(int i,double v) |
---|
219 | { |
---|
220 | int ret=SimpleAbstractParam::setDouble(i,v); |
---|
221 | if (ret & PSET_CHANGED) notify(i); |
---|
222 | return ret; |
---|
223 | } |
---|
224 | |
---|
225 | int MutableParam::setString(int i,const SString &v) |
---|
226 | { |
---|
227 | int ret=SimpleAbstractParam::setString(i,v); |
---|
228 | if (ret & PSET_CHANGED) notify(i); |
---|
229 | return ret; |
---|
230 | } |
---|
231 | |
---|
232 | int MutableParam::setObject(int i,const ExtObject &v) |
---|
233 | { |
---|
234 | int ret=SimpleAbstractParam::setObject(i,v); |
---|
235 | if (ret & PSET_CHANGED) notify(i); |
---|
236 | return ret; |
---|
237 | } |
---|
238 | |
---|
239 | int MutableParam::setExtValue(int i,const ExtValue &v) |
---|
240 | { |
---|
241 | int ret=SimpleAbstractParam::setExtValue(i,v); |
---|
242 | if (ret & PSET_CHANGED) notify(i); |
---|
243 | return ret; |
---|
244 | } |
---|
245 | |
---|
246 | void MutableParam::call(int i,ExtValue* args,ExtValue *ret) |
---|
247 | { |
---|
248 | if (i<staticprops) return SimpleAbstractParam::call(i,args,ret); |
---|
249 | notify(i); |
---|
250 | } |
---|
251 | |
---|
252 | /////////////////// |
---|
253 | |
---|
254 | void ParamSaver::clear() |
---|
255 | { |
---|
256 | for(int i=0;i<store.size();i+=2) |
---|
257 | { |
---|
258 | SString *n=(SString*)store(i); |
---|
259 | ExtValue *v=(ExtValue*)store(i+1); |
---|
260 | delete n; |
---|
261 | delete v; |
---|
262 | } |
---|
263 | store.clear(); |
---|
264 | } |
---|
265 | |
---|
266 | void ParamSaver::loadFrom(ParamInterface& p) |
---|
267 | { |
---|
268 | int N=p.getPropCount(); |
---|
269 | for(int i=0;i<N;i++) |
---|
270 | { |
---|
271 | if (shouldLoad(p,i)) |
---|
272 | { |
---|
273 | ExtValue v; |
---|
274 | p.get(i,v); |
---|
275 | store+=new SString(p.id(i)); |
---|
276 | store+=new ExtValue(v); |
---|
277 | } |
---|
278 | } |
---|
279 | } |
---|
280 | |
---|
281 | void ParamSaver::saveTo(MutableParam& p) |
---|
282 | { |
---|
283 | for(int i=0;i<store.size();i+=2) |
---|
284 | { |
---|
285 | SString *n=(SString*)store(i); |
---|
286 | int prop=p.findId((const char*)*n); |
---|
287 | if (prop<0) |
---|
288 | prop=p.addProperty(0,(const char*)*n,"x",0,0,0,0,-1); |
---|
289 | p.setExtValue(prop,*(ExtValue*)store(i+1)); |
---|
290 | } |
---|
291 | } |
---|