22 #include "CBot/CBotInstr/CBotInstr.h" 60 virtual const std::string
GetDebugName()
override {
return "CBotListInstr"; }
61 virtual std::map<std::string, CBotInstr*>
GetDebugLinks()
override;
Class for one CBot instruction.
Definition: CBotInstr.h:86
A list of instructions separated by semicolons - ...; ...; ...; ...;.
Definition: CBotListInstr.h:30
The execution stack.
Definition: CBotStack.h:44
static CBotInstr * Compile(CBotToken *&p, CBotCStack *pStack, bool bLocal=true)
Compile.
Definition: CBotListInstr.cpp:42
virtual std::map< std::string, CBotInstr * > GetDebugLinks() override
Definition: CBotListInstr.cpp:120
The CBotCStack class Management of the stack of compilation.
Definition: CBotCStack.h:35
virtual const std::string GetDebugName() override
Returns the name of this class.
Definition: CBotListInstr.h:60
void RestoreState(CBotStack *&pj, bool bMain) override
RestoreState.
Definition: CBotListInstr.cpp:101
bool Execute(CBotStack *&pj) override
Execute Executes a set of instructions.
Definition: CBotListInstr.cpp:77
CBot engine.
Definition: CBotCallMethode.cpp:28
Class representing one token of a program.
Definition: CBotToken.h:80