Method | Description | |
---|---|---|
Compile ( ) : bool |
Tries to compile the script.
|
|
CreateLexer ( string p_strCode, |
Creates a Mod Script lexer for the given code, using the given error tracker.
|
|
CreateParser ( string p_strCode, |
Creates a Mod Script parser for the given code, using the given error tracker.
|
|
Execute ( ) : bool |
Executes the script.
|
|
ModScriptInterpreter ( Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy p_msfFunctions, string p_strScript ) : System |
A simple construtor that initializes the object with the given values.
|
|
ModScriptInterpreter ( string p_strScript ) : System |
A simple construtor that initializes the object with the given values.
|
Method | Description | |
---|---|---|
CreateInterpreterContext ( Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy p_msfFunctions ) : |
Creates the context object that tracks the state of the script being executed.
|
|
Run ( ITree p_astScript ) : object |
Runs the script represented by the given abstract syntax tree.
|
|
Run ( ITree p_astScript, bool p_booTreatKeywordsAsLiterals ) : object |
Runs the script represented by the given abstract syntax tree.
|
Method | Description | |
---|---|---|
ExpandVariables ( ITree p_astLiteral ) : string |
Expands the variables in the given literal, and strips the enclosing quotes from quoted literals. Expanding variables replaces the variables with the values the variables represent. |
|
GenerateAst ( string p_strModScriptCode, bool p_booCompileTest ) : ITree |
Parses the given Mod Script into an AST.
|
|
HandleConditionalStatement ( ITree p_astConditional ) : void |
Handles the IF statements.
|
|
HandleForLoop ( ITree p_astForLoop ) : void |
Hanldes FOR loops.
|
|
HandleFunction ( ITree p_astFunction ) : object |
Calss the function represented by the given abstract syntax tree.
|
|
HandleSelect ( ITree p_astSelect ) : void |
Handles the GUI SELECT-type statements. This methods presents a selection form to the user, and acts on the selection. |
|
HandleSelectString ( ITree p_astSelect ) : void |
Handles the C# switch-type SELECT-type statements. This methods processes the SELECT-type statements that behave like if...elseif statements. |
protected CreateInterpreterContext ( Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy p_msfFunctions ) : |
||
p_msfFunctions | Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy | The object that implements the script functions. |
return |
public CreateLexer ( string p_strCode, |
||
p_strCode | string | The code be lexed. |
p_ertErrorTracker | The error tracker to use to log /// lexing errors. | |
return |
public CreateParser ( string p_strCode, |
||
p_strCode | string | The code be parsed. |
p_ertErrorTracker | The error tracker to use to log /// parsing errors. | |
return |
public ModScriptInterpreter ( Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy p_msfFunctions, string p_strScript ) : System | ||
p_msfFunctions | Nexus.Client.ModManagement.Scripting.ModScript.ModScriptFunctionProxy | The object that implements the script functions. |
p_strScript | string | The script to execute. |
return | System |
public ModScriptInterpreter ( string p_strScript ) : System | ||
p_strScript | string | The script to execute. |
return | System |
protected Run ( ITree p_astScript ) : object | ||
p_astScript | ITree | The abstract syntax tree representation of the script to execute. |
return | object |
protected Run ( ITree p_astScript, bool p_booTreatKeywordsAsLiterals ) : object | ||
p_astScript | ITree | The abstract syntax tree representation of the script to execute. |
p_booTreatKeywordsAsLiterals | bool | Whether keywords should be treated as literals instead of keywords. |
return | object |