KSGSBefehl.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. #ifndef KSGSBefehl_H
  2. #define KSGSBefehl_H
  3. #include <Array.h>
  4. #include <Text.h>
  5. using namespace Framework;
  6. namespace KSGScript
  7. {
  8. class KSGScriptObj; // ../Main/KSGScriptObj.h
  9. struct KSGSLeseBefehl; // ../Leser/KSGSLeser.h
  10. struct KSGSLeseDebug; // ../Leser/KSGSLeser.h
  11. struct KSGSBefehlParameter; // aus dieser Datei
  12. class KSGSCompKlassTable; // ../Leser/Compile.h
  13. class KSGSCompFuncTable; // ../Leser/Compile.h
  14. class KSGSCompVarTable; // ../Leser/Compile.h
  15. class KSGSBefehl; // aus dieser Datei
  16. class KSGSFunktionInstanz; // KSGSFunktion
  17. class KSGSKlasseInstanz; // KSGSKlasse.h
  18. typedef KSGSKlasseInstanz KSGSVariable;
  19. struct KSGSBefehlVariable
  20. {
  21. int varId;
  22. int varSichtbar; // 0 = global, 1 = klasse, 2 = parameter, 3 = lokal
  23. // Konstruktor
  24. __declspec( dllexport ) KSGSBefehlVariable( Text *txt, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT, KSGSCompVarTable *zVT,
  25. const char *klassName, const char *funktionName, int *typId, bool *ok );
  26. };
  27. struct KSGSBefehlFunktion
  28. {
  29. int funcId;
  30. int funkSichtbar;
  31. Array< KSGSBefehlParameter* > parameter;
  32. // Konstruktor
  33. __declspec( dllexport ) KSGSBefehlFunktion( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT, KSGSCompVarTable *zVT,
  34. const char *klassName, const char *funktionName, int *typId, bool *ok );
  35. // Destruktor
  36. ~KSGSBefehlFunktion();
  37. };
  38. struct KSGSBefehlMember
  39. {
  40. enum Typ
  41. {
  42. BEFEHL,
  43. FUNKTION,
  44. VARIABLE
  45. };
  46. Typ typ;
  47. KSGSBefehl *bef;
  48. KSGSBefehlFunktion *funk;
  49. KSGSBefehlVariable *var;
  50. // Konstruktor
  51. __declspec( dllexport ) KSGSBefehlMember( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  52. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, int *typId, bool *ok );
  53. // Destruktor
  54. __declspec( dllexport ) ~KSGSBefehlMember();
  55. };
  56. struct KSGSBefehlParameter
  57. {
  58. enum Typ
  59. {
  60. WERT,
  61. OBJEKT
  62. };
  63. Typ typ;
  64. Text wert;
  65. Array< KSGSBefehlMember* > objekt;
  66. // Konstruktor
  67. __declspec( dllexport ) KSGSBefehlParameter( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  68. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, int *typId, bool *ok );
  69. // Destruktor
  70. __declspec( dllexport ) ~KSGSBefehlParameter();
  71. };
  72. struct KSGSBefehlErstell
  73. {
  74. int id;
  75. int typId;
  76. bool konstruktor;
  77. KSGSBefehlParameter *param;
  78. // Konstruktor
  79. __declspec( dllexport ) KSGSBefehlErstell( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  80. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, bool *ok );
  81. // Destruktor
  82. __declspec( dllexport ) ~KSGSBefehlErstell();
  83. };
  84. class KSGSBefehl
  85. {
  86. public:
  87. enum Typ
  88. {
  89. CALL,
  90. OPERATOR,
  91. IF,
  92. FOR,
  93. WHILE,
  94. RETURN,
  95. BREAK,
  96. CONTINUE,
  97. VARIABLE
  98. };
  99. protected:
  100. Typ typ;
  101. bool fehler;
  102. int returnTyp;
  103. int ref;
  104. public:
  105. // Konstruktor
  106. __declspec( dllexport ) KSGSBefehl( Typ typ );
  107. // Destruktor
  108. __declspec( dllexport ) ~KSGSBefehl();
  109. // constant
  110. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const;
  111. __declspec( dllexport ) bool hatFehler() const;
  112. __declspec( dllexport ) int getReturnTyp() const;
  113. __declspec( dllexport ) bool istTyp( Typ t ) const;
  114. // Reference Counting
  115. __declspec( dllexport ) KSGSBefehl *getThis();
  116. __declspec( dllexport ) virtual KSGSBefehl *release();
  117. // static
  118. __declspec( dllexport ) static KSGSVariable *prozessVariable( KSGSVariable *zVorObj, KSGSBefehlVariable *zVar, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI );
  119. __declspec( dllexport ) static KSGSVariable *prozessFunktion( KSGSVariable *zVorObj, KSGSBefehlFunktion *zFunk, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI );
  120. __declspec( dllexport ) static KSGSVariable *prozessMember( KSGSVariable *zVorObj, KSGSBefehlMember *zMem, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI );
  121. __declspec( dllexport ) static KSGSVariable *prozessParameter( KSGSBefehlParameter *zParam, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI );
  122. __declspec( dllexport ) static KSGSVariable *prozessErstell( KSGSBefehlErstell *zErst, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI );
  123. };
  124. class KSGSCallBefehl : public KSGSBefehl
  125. {
  126. private:
  127. Array< KSGSBefehlMember* > objekt;
  128. public:
  129. // Konstruktor
  130. __declspec( dllexport ) KSGSCallBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  131. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  132. // Destruktor
  133. __declspec( dllexport ) ~KSGSCallBefehl();
  134. // constant
  135. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  136. // Reference Counting
  137. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  138. };
  139. class KSGSOperatorBefehl : public KSGSBefehl
  140. {
  141. private:
  142. KSGSBefehlParameter *paramL;
  143. int operatorId;
  144. KSGSBefehlParameter *paramR;
  145. public:
  146. // Konstruktor
  147. __declspec( dllexport ) KSGSOperatorBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  148. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  149. // Destruktor
  150. __declspec( dllexport ) ~KSGSOperatorBefehl();
  151. // constant
  152. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  153. // Reference Counting
  154. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  155. };
  156. class KSGSIfBefehl : public KSGSBefehl
  157. {
  158. private:
  159. KSGSBefehlParameter *bedingung;
  160. RCArray< KSGSBefehl > bTrue;
  161. RCArray< KSGSBefehl > bFalse;
  162. public:
  163. // Konstruktor
  164. __declspec( dllexport ) KSGSIfBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  165. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  166. // Destruktor
  167. __declspec( dllexport ) ~KSGSIfBefehl();
  168. // constant
  169. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  170. // Reference Counting
  171. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  172. };
  173. class KSGSForBefehl : public KSGSBefehl
  174. {
  175. private:
  176. KSGSBefehl *links;
  177. KSGSBefehlParameter *bedingung;
  178. KSGSBefehl *rechts;
  179. RCArray< KSGSBefehl > schleife;
  180. public:
  181. // Konstruktor
  182. __declspec( dllexport ) KSGSForBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  183. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  184. // Destruktor
  185. __declspec( dllexport ) ~KSGSForBefehl();
  186. // constant
  187. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  188. // Reference Counting
  189. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  190. };
  191. class KSGSWhileBefehl : public KSGSBefehl
  192. {
  193. private:
  194. KSGSBefehlParameter *bedingung;
  195. RCArray< KSGSBefehl > schleife;
  196. public:
  197. // Konstruktor
  198. __declspec( dllexport ) KSGSWhileBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  199. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  200. // Destruktor
  201. __declspec( dllexport ) ~KSGSWhileBefehl();
  202. // constant
  203. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  204. // Reference Counting
  205. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  206. };
  207. class KSGSReturnBefehl : public KSGSBefehl
  208. {
  209. private:
  210. KSGSBefehlParameter *param;
  211. public:
  212. // Konstruktor
  213. __declspec( dllexport ) KSGSReturnBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  214. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  215. // Destruktor
  216. __declspec( dllexport ) ~KSGSReturnBefehl();
  217. // constant
  218. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  219. // Reference Counting
  220. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  221. };
  222. class KSGSBreakBefehl : public KSGSBefehl
  223. {
  224. private:
  225. public:
  226. // Konstruktor
  227. __declspec( dllexport ) KSGSBreakBefehl( KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  228. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  229. // Destruktor
  230. __declspec( dllexport ) ~KSGSBreakBefehl();
  231. // constant
  232. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  233. // Reference Counting
  234. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  235. };
  236. class KSGSContinueBefehl : public KSGSBefehl
  237. {
  238. private:
  239. public:
  240. // Konstruktor
  241. __declspec( dllexport ) KSGSContinueBefehl( KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  242. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  243. // Destruktor
  244. __declspec( dllexport ) ~KSGSContinueBefehl();
  245. // constant
  246. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  247. // Reference Counting
  248. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  249. };
  250. class KSGSVariableBefehl : public KSGSBefehl
  251. {
  252. private:
  253. KSGSBefehlErstell *erstell;
  254. public:
  255. // Konstruktor
  256. __declspec( dllexport ) KSGSVariableBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
  257. KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
  258. // Destruktor
  259. __declspec( dllexport ) ~KSGSVariableBefehl();
  260. // constant
  261. __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSKlasseInstanz *zKI ) const override;
  262. // Reference Counting
  263. __declspec( dllexport ) virtual KSGSBefehl *release() override;
  264. };
  265. }
  266. #endif