Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/util/executor/executor_functional.h @ 7719

Last change on this file since 7719 was 7719, checked in by bensch, 18 years ago

all up to 5 arguments made

File size: 12.4 KB
Line 
1/*!
2 * @file executor_functional.h
3 * Definition of an Executor
4 */
5
6/*
7   orxonox - the future of 3D-vertical-scrollers
8
9   Copyright (C) 2004 orx
10
11   This program is free software; you can redistribute it and/or modify
12   it under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2, or (at your option)
14   any later version.
15
16### File Specific:
17   main-programmer: Benjamin Grauer
18   co-programmer: ...
19*/
20
21
22#ifndef __EXECUTOR_FUNCTIONAL_H_
23#define __EXECUTOR_FUNCTIONAL_H_
24
25
26
27template<typename type> MT_Type ExecutorParamType() { return MT_EXT1; };
28template<> MT_Type ExecutorParamType<bool>() { return MT_EXT1; };
29template<> MT_Type ExecutorParamType<int>() { return MT_INT; };
30template<> MT_Type ExecutorParamType<unsigned int>() { return MT_UINT; };
31template<> MT_Type ExecutorParamType<float>() { return MT_FLOAT; };
32template<> MT_Type ExecutorParamType<char>() { return MT_CHAR; };
33template<> MT_Type ExecutorParamType<const std::string&>() { return MT_STRING; };
34
35template<typename type> type fromString(const std::string& input, type defaultValue) {return defaultValue; };
36template<> bool fromString<bool>(const std::string& input, bool defaultValue) { return isBool(input, defaultValue); };
37template<> int fromString<int>(const std::string& input, int defaultValue) { return isInt(input, defaultValue); };
38template<> unsigned int fromString<unsigned int>(const std::string& input, unsigned int defaultValue) { return isInt(input, defaultValue); };
39template<> float fromString<float>(const std::string& input, float defaultValue) { return isFloat(input, defaultValue); };
40template<> char fromString<char>(const std::string& input, char defaultValue) { return isInt(input, defaultValue); };
41template<> const std::string& fromString<const std::string&>(const std::string& input, const std::string& defaultValue) { return isString(input, defaultValue); };
42
43template<typename type> type getDefault(const MultiType* const defaultValues, unsigned int i) { return (type)0; };
44template<> bool getDefault<bool>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getBool(); };
45template<> int getDefault<int>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getInt(); };
46template<> unsigned int getDefault<unsigned int>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getInt(); };
47template<> float getDefault<float>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getFloat(); };
48template<> char getDefault<char>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getChar(); };
49template<> std::string getDefault<std::string>(const MultiType* const defaultValues, unsigned int i) { return defaultValues[i].getString(); };
50
51#endif /* __EXECUTOR_FUNCTIONAL_H_ */
52
53
54#define __EXECUTOR_FUNCTIONAL_CONST
55#define __EXECUTOR_FUNCTIONAL_NAME(ParamCount)   Executor##ParamCount##Params
56#define __EXECUTOR_FUNCTIONAL_FUNCTION_EXEC      dynamic_cast<T*>(object)->*(functionPointer)
57#define __EXECUTOR_FUNCTIONAL_FUNCTION_POINTER   T::*functionPointer
58
59#ifdef EXECUTOR_FUNCTIONAL_USE_CONST
60 #undef __EXECUTOR_FUNCTIONAL_CONST
61 #define __EXECUTOR_FUNCTIONAL_CONST const
62 #undef __EXECUTOR_FUNCTIONAL_NAME
63 #define __EXECUTOR_FUNCTIONAL_NAME(ParamCount) Executor##ParamCount##Params_const
64 #undef EXECUTOR_FUNCTIONAL_USE_CONST
65#endif
66
67#ifdef EXECUTOR_FUNCTIONAL_USE_STATIC
68 #ifdef EXECUTOR_FUNCTIONAL_USE_CONST
69  #error you obviously do not know what you are doing !! ask the bensch
70 #endif /* EXECUTOR_FUNCTIONAL_USE_CONST */
71
72#undef __EXECUTOR_FUNCTIONAL_FUNCTION_EXEC
73 #define __EXECUTOR_FUNCTIONAL_FUNCTION_EXEC       functionPointer
74 #undef __EXECUTOR_FUNCTIONAL_NAME
75 #define __EXECUTOR_FUNCTIONAL_NAME(ParamCount)    Executor##ParamCount##Params_static
76 #undef __EXECUTOR_FUNCTIONAL_FUNCTION_POINTER
77 #define __EXECUTOR_FUNCTIONAL_FUNCTION_POINTER    *functionPointer
78
79#undef EXECUTOR_FUNCTIONAL_USE_STATIC
80#endif /* EXECUTOR_FUNCTIONAL_USE_STATIC */
81
82template<class T> class __EXECUTOR_FUNCTIONAL_NAME(0) : public Executor
83{
84private:
85  void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)() __EXECUTOR_FUNCTIONAL_CONST;
86
87public:
88  __EXECUTOR_FUNCTIONAL_NAME(0) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)() __EXECUTOR_FUNCTIONAL_CONST )
89      : Executor()
90  {
91    this->functorType = Executor_Objective;
92    this->functionPointer = functionPointer;
93  };
94
95  virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
96  {
97    (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)();
98  };
99
100  virtual Executor* clone() const
101  {
102    return new __EXECUTOR_FUNCTIONAL_NAME(0)<T>(this->functionPointer);
103  };
104};
105
106//! SINGLE VALUE
107template<class T, typename type0> class __EXECUTOR_FUNCTIONAL_NAME(1) : public Executor
108{
109private:
110  void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0) __EXECUTOR_FUNCTIONAL_CONST;
111
112public:
113  __EXECUTOR_FUNCTIONAL_NAME(1) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0) __EXECUTOR_FUNCTIONAL_CONST)
114      : Executor(ExecutorParamType<type0>())
115  {
116    this->functorType = Executor_Objective;
117    this->functionPointer = functionPointer;
118  };
119
120  virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
121  {
122
123    /* // THE VERY COOL DEBUG
124      printf("SUB[0] : %s\n", sub[0].c_str());
125      printf("getDefault<type0>(this->defaultValue, 0):::: %d\n", getDefault<type0>(this->defaultValue, 0));
126      printf("VALUE: %d\n", fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)));
127    */
128    (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(
129      fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)) );
130  };
131
132  virtual Executor* clone() const
133  {
134    return  new __EXECUTOR_FUNCTIONAL_NAME(1)<T, type0>(this->functionPointer);
135  };
136};
137
138//! DOUBLE VALUE
139template<class T, typename type0, typename type1> class __EXECUTOR_FUNCTIONAL_NAME(2) : public Executor
140{
141private:
142  void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1) __EXECUTOR_FUNCTIONAL_CONST;
143
144public:
145  __EXECUTOR_FUNCTIONAL_NAME(2) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1) __EXECUTOR_FUNCTIONAL_CONST)
146      : Executor(ExecutorParamType<type0>(), ExecutorParamType<type1>())
147  {
148    this->functorType = Executor_Objective;
149    this->functionPointer = functionPointer;
150  };
151
152  virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
153  {
154    (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(
155      fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)),
156      fromString<type1>(sub[1], getDefault<type1>(this->defaultValue, 1)));
157  };
158
159  virtual Executor* clone() const
160  {
161    return new __EXECUTOR_FUNCTIONAL_NAME(2)<T, type0, type1>(this->functionPointer);
162  };
163};
164
165
166//! TRIPPLE VALUE
167template<class T, typename type0, typename type1, typename type2> class __EXECUTOR_FUNCTIONAL_NAME(3) : public Executor
168{
169private:
170  void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2) __EXECUTOR_FUNCTIONAL_CONST;
171
172public:
173  __EXECUTOR_FUNCTIONAL_NAME(3) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2) __EXECUTOR_FUNCTIONAL_CONST)
174      : Executor(ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>())
175  {
176    this->functorType = Executor_Objective;
177    this->functionPointer = functionPointer;
178  };
179
180  virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
181  {
182    (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(
183      fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)),
184      fromString<type1>(sub[1], getDefault<type1>(this->defaultValue, 1)),
185      fromString<type2>(sub[2], getDefault<type2>(this->defaultValue, 2)));
186  };
187
188  virtual Executor* clone() const
189  {
190    return new __EXECUTOR_FUNCTIONAL_NAME(3)<T, type0, type1, type2>(this->functionPointer);
191  };
192};
193
194
195
196//! QUADRUPPEL VALUE
197template<class T, typename type0, typename type1, typename type2, typename type3> class __EXECUTOR_FUNCTIONAL_NAME(4) : public Executor
198{
199private:
200  void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2, type3) __EXECUTOR_FUNCTIONAL_CONST;
201
202public:
203  __EXECUTOR_FUNCTIONAL_NAME(4) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2, type3) __EXECUTOR_FUNCTIONAL_CONST)
204  : Executor(ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>(), ExecutorParamType<type3>())
205  {
206    this->functorType = Executor_Objective;
207    this->functionPointer = functionPointer;
208  };
209
210  virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
211  {
212    (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(
213      fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)),
214      fromString<type1>(sub[1], getDefault<type1>(this->defaultValue, 1)),
215      fromString<type2>(sub[2], getDefault<type2>(this->defaultValue, 2)),
216      fromString<type3>(sub[3], getDefault<type3>(this->defaultValue, 3)));
217  };
218
219  virtual Executor* clone() const
220  {
221    return new __EXECUTOR_FUNCTIONAL_NAME(4)<T, type0, type1, type2, type3>(this->functionPointer);
222  };
223};
224
225//! CHINQUE VALUE
226template<class T, typename type0, typename type1, typename type2, typename type3, typename type4> class __EXECUTOR_FUNCTIONAL_NAME(5) : public Executor
227{
228  private:
229    void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2, type3, type4) __EXECUTOR_FUNCTIONAL_CONST;
230
231  public:
232    __EXECUTOR_FUNCTIONAL_NAME(5) (void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0, type1, type2, type3, type4) __EXECUTOR_FUNCTIONAL_CONST)
233  : Executor(ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>(), ExecutorParamType<type3>(), ExecutorParamType<type4>())
234    {
235      this->functorType = Executor_Objective;
236      this->functionPointer = functionPointer;
237    };
238
239    virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const
240    {
241      (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(
242          fromString<type0>(sub[0], getDefault<type0>(this->defaultValue, 0)),
243      fromString<type1>(sub[1], getDefault<type1>(this->defaultValue, 1)),
244      fromString<type2>(sub[2], getDefault<type2>(this->defaultValue, 2)),
245      fromString<type3>(sub[3], getDefault<type3>(this->defaultValue, 3)),
246      fromString<type4>(sub[4], getDefault<type4>(this->defaultValue, 4)));
247    };
248
249    virtual Executor* clone() const
250    {
251      return new __EXECUTOR_FUNCTIONAL_NAME(5)<T, type0, type1, type2, type3, type4>(this->functionPointer);
252    };
253};
254
255
256
257#define EXECUTOR_FUNCTIONAL_CREATOR0() \
258template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)() __EXECUTOR_FUNCTIONAL_CONST) \
259{ \
260  return new __EXECUTOR_FUNCTIONAL_NAME(0)<T>(functionPointer); \
261}
262
263#define EXECUTOR_FUNCTIONAL_CREATOR1(type0) \
264template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0##_TYPE) __EXECUTOR_FUNCTIONAL_CONST) \
265{ \
266  return new __EXECUTOR_FUNCTIONAL_NAME(1)<T, type0##_TYPE>(functionPointer); \
267}
268
269#define EXECUTOR_FUNCTIONAL_CREATOR2(type0, type1) \
270template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0##_TYPE, type1##_TYPE) __EXECUTOR_FUNCTIONAL_CONST) \
271{ \
272  return new __EXECUTOR_FUNCTIONAL_NAME(2)<T, type0##_TYPE, type1##_TYPE>(functionPointer); \
273}
274
275#define EXECUTOR_FUNCTIONAL_CREATOR3(type0, type1, type2) \
276template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0##_TYPE, type1##_TYPE, type2##_TYPE) __EXECUTOR_FUNCTIONAL_CONST) \
277{ \
278  return new __EXECUTOR_FUNCTIONAL_NAME(3)<T, type0##_TYPE, type1##_TYPE, type2##_TYPE>(functionPointer); \
279}
280
281#define EXECUTOR_FUNCTIONAL_CREATOR4(type0, type1, type2, type3) \
282template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0##_TYPE, type1##_TYPE, type2##_TYPE, type3##_TYPE) __EXECUTOR_FUNCTIONAL_CONST) \
283{ \
284  return new __EXECUTOR_FUNCTIONAL_NAME(4)<T, type0##_TYPE, type1##_TYPE, type2##_TYPE, type3##_TYPE>(functionPointer); \
285}
286
287#define EXECUTOR_FUNCTIONAL_CREATOR5(type0, type1, type2, type3, type4) \
288template<class T> Executor* createExecutor(void (__EXECUTOR_FUNCTIONAL_FUNCTION_POINTER)(type0##_TYPE, type1##_TYPE, type2##_TYPE, type3##_TYPE, type4##_TYPE) __EXECUTOR_FUNCTIONAL_CONST) \
289{ \
290    return new __EXECUTOR_FUNCTIONAL_NAME(5)<T, type0##_TYPE, type1##_TYPE, type2##_TYPE, type3##_TYPE, type4##_TYPE>(functionPointer); \
291}
292
293
294
295#define FUNCTOR_LIST(x) EXECUTOR_FUNCTIONAL_CREATOR ## x
296#include "functor_list.h"
297#undef FUNCTOR_LIST
298
299
300
301#undef __EXECUTOR_FUNCTIONAL_CONST
302#undef __EXECUTOR_FUNCTIONAL_NAME
303#undef __EXECUTOR_FUNCTIONAL_FUNCTION_EXEC
304#undef __EXECUTOR_FUNCTIONAL_FUNCTION_POINTER
Note: See TracBrowser for help on using the repository browser.