123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- #ifndef KSGSBefehl_H
- #define KSGSBefehl_H
- #include <Array.h>
- #include <Text.h>
- using namespace Framework;
- namespace KSGScript
- {
- class KSGScriptObj; // ../Main/KSGScriptObj.h
- struct KSGSLeseBefehl; // ../Leser/KSGSLeser.h
- struct KSGSLeseDebug; // ../Leser/KSGSLeser.h
- struct KSGSBefehlParameter; // aus dieser Datei
- class KSGSCompKlassTable; // ../Leser/Compile.h
- class KSGSCompFuncTable; // ../Leser/Compile.h
- class KSGSCompVarTable; // ../Leser/Compile.h
- class KSGSBefehl; // aus dieser Datei
- class KSGSFunktionInstanz; // KSGSFunktion
- class KSGSVariable; // KSGSKlasse.h
- struct KSGSBefehlVariable
- {
- int varId;
- int varSichtbar; // 0 = global, 1 = klasse, 2 = parameter, 3 = lokal
- // Konstruktor
- __declspec( dllexport ) KSGSBefehlVariable( Text *txt, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT, KSGSCompVarTable *zVT,
- const char *klassName, const char *funktionName, int *typId, bool *ok );
- };
- struct KSGSBefehlFunktion
- {
- int funcId;
- int funkSichtbar;
- Array< KSGSBefehlParameter* > parameter;
- // Konstruktor
- __declspec( dllexport ) KSGSBefehlFunktion( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT, KSGSCompVarTable *zVT,
- const char *klassName, const char *funktionName, int *typId, bool *ok );
- // Destruktor
- ~KSGSBefehlFunktion();
- };
- struct KSGSBefehlMember
- {
- enum Typ
- {
- BEFEHL,
- FUNKTION,
- VARIABLE
- };
- Typ typ;
- KSGSBefehl *bef;
- KSGSBefehlFunktion *funk;
- KSGSBefehlVariable *var;
- // Konstruktor
- __declspec( dllexport ) KSGSBefehlMember( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, int *typId, bool *ok );
- // Destruktor
- __declspec( dllexport ) ~KSGSBefehlMember();
- };
- struct KSGSBefehlParameter
- {
- enum Typ
- {
- WERT,
- OBJEKT
- };
- Typ typ;
- Text wert;
- Array< KSGSBefehlMember* > objekt;
- // Konstruktor
- __declspec( dllexport ) KSGSBefehlParameter( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, int *typId, bool *ok );
- // Destruktor
- __declspec( dllexport ) ~KSGSBefehlParameter();
- };
- struct KSGSBefehlErstell
- {
- int id;
- int typId;
- bool konstruktor;
- KSGSBefehlParameter *param;
- // Konstruktor
- __declspec( dllexport ) KSGSBefehlErstell( KSGScriptObj *zObj, Text *txt, KSGSLeseDebug *dbg, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName, bool *ok );
- // Destruktor
- __declspec( dllexport ) ~KSGSBefehlErstell();
- };
- class KSGSBefehl
- {
- public:
- enum Typ
- {
- CALL,
- OPERATOR,
- IF,
- FOR,
- WHILE,
- RETURN,
- BREAK,
- CONTINUE,
- VARIABLE
- };
- protected:
- Typ typ;
- bool fehler;
- int returnTyp;
- int ref;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSBefehl( Typ typ );
- // Destruktor
- __declspec( dllexport ) virtual ~KSGSBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const;
- __declspec( dllexport ) bool hatFehler() const;
- __declspec( dllexport ) int getReturnTyp() const;
- __declspec( dllexport ) bool istTyp( Typ t ) const;
- // Reference Counting
- __declspec( dllexport ) KSGSBefehl *getThis();
- __declspec( dllexport ) virtual KSGSBefehl *release();
- // static
- __declspec( dllexport ) static KSGSVariable *prozessVariable( KSGSVariable *zVorObj, KSGSBefehlVariable *zVar, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI );
- __declspec( dllexport ) static KSGSVariable *prozessFunktion( KSGSVariable *zVorObj, KSGSBefehlFunktion *zFunk, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI );
- __declspec( dllexport ) static KSGSVariable *prozessMember( KSGSVariable *zVorObj, KSGSBefehlMember *zMem, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI );
- __declspec( dllexport ) static KSGSVariable *prozessParameter( KSGSBefehlParameter *zParam, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI );
- __declspec( dllexport ) static KSGSVariable *prozessErstell( KSGSBefehlErstell *zErst, KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI );
- };
- class KSGSCallBefehl : public KSGSBefehl
- {
- private:
- Array< KSGSBefehlMember* > objekt;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSCallBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSCallBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSOperatorBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehlParameter *paramL;
- int operatorId;
- KSGSBefehlParameter *paramR;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSOperatorBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSOperatorBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSIfBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehlParameter *bedingung;
- RCArray< KSGSBefehl > bTrue;
- RCArray< KSGSBefehl > bFalse;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSIfBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSIfBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSForBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehl *links;
- KSGSBefehlParameter *bedingung;
- KSGSBefehl *rechts;
- RCArray< KSGSBefehl > schleife;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSForBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSForBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSWhileBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehlParameter *bedingung;
- RCArray< KSGSBefehl > schleife;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSWhileBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSWhileBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSReturnBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehlParameter *param;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSReturnBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSReturnBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSBreakBefehl : public KSGSBefehl
- {
- private:
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSBreakBefehl( KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSBreakBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSContinueBefehl : public KSGSBefehl
- {
- private:
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSContinueBefehl( KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSContinueBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- class KSGSVariableBefehl : public KSGSBefehl
- {
- private:
- KSGSBefehlErstell *erstell;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSVariableBefehl( KSGScriptObj *zObj, KSGSLeseBefehl *bef, KSGSCompKlassTable *zKT, KSGSCompFuncTable *zFT,
- KSGSCompVarTable *zVT, const char *klassName, const char *funktionName );
- // Destruktor
- __declspec( dllexport ) ~KSGSVariableBefehl();
- // constant
- __declspec( dllexport ) virtual KSGSVariable *ausführen( KSGScriptObj *zObj, KSGSFunktionInstanz *zFI, KSGSVariable *zKI ) const override;
- };
- }
- #endif
|