Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/script_engine/src/lib/script_engine/script_class.h @ 8211

Last change on this file since 8211 was 8202, checked in by snellen, 18 years ago

renamed scriptable to scriptclass, made ScriptManager create the script triggers

File size: 1.4 KB
Line 
1/*!
2 * @file script_class.h
3 * @brief Definition of ...
4*/
5
6#ifndef _SCRIPT_CLASS_H
7#define _SCRIPT_CLASS_H
8
9#include "base_object.h"
10
11#include "script.h"
12#include "lunar.h"
13
14// FORWARD DECLARATION
15
16
17/**
18 * Creates a factory to a Loadable Class.
19 * this should be used at the beginning of all the Classes that should be loadable (in the cc-file)
20 */
21#define CREATE_SCRIPTABLE_CLASS(CLASS_NAME, CLASS_ID) \
22    tScriptable<CLASS_NAME> global_##CLASS_NAME##_ScriptableClass(#CLASS_NAME, CLASS_ID)
23
24
25
26//! A class for ...
27class ScriptClass : protected BaseObject
28{
29
30public:
31  ScriptClass(const std::string& name, ClassID classID);
32  virtual ~ScriptClass();
33
34  bool operator==(const std::string& name) { return (this->getName() == name); }
35  bool operator==(ClassID classID) { return (this->classID == classID); }
36 
37  virtual void registerClass(Script* script) = 0;
38  virtual int insertObject(Script* L, BaseObject* obj, const std::string& name, bool gc=false) = 0;
39
40private:
41  ClassID             classID;
42};
43
44
45
46
47template <class T>
48class tScriptable : public ScriptClass
49{
50  tScriptable(const std::string& name, ClassID classID)
51  : ScriptClass(name, classID)
52  { }
53
54  virtual void registerClass(Script* script)
55  {
56    Lunar<T>::Register(script);
57  }
58  virtual int insertObject(Script* L, BaseObject* obj, bool gc=false) 
59  {
60    Lunar<T>::insertObject(L, dynamic_cast<T*>(obj), obj->getName(), gc);
61  }
62 
63
64
65}
66;
67
68
69#endif /* _SCRIPT_CLASS_H */
Note: See TracBrowser for help on using the repository browser.