TorqueScript Reference
|
Functions | |
String | call (funcName, [args...]?) |
Boolean | compile (fileName) |
String | compilePath (path) |
void | debug () |
void | deleteVariables (wildCard) |
String | enumerateConsoleClasses ([baseClass]?) |
String | eval (script) |
Boolean | exec (fileName, [nocalls]?, [journalScript]?) |
Boolean | execPrefs (fileName, [nocalls]?, [journalScript]?) |
void | export (wildCard, [fileName]?, [append]?) |
String | getAppleDeviceIPAddress () |
String | getDSOPath (scriptFileName) |
String | getModNameFromPath (string path) |
String | getPrefsPath ([fileName]?) |
String | getVariable (string varName) |
Boolean | isFunction (string funcName) |
Boolean | isMethod (string namespace, string method) |
void | setScriptExecEcho (echo?) |
void | trace (enable) |
String call | ( | funcName | , |
[args ... ] ? | |||
) |
Use the call function to dynamically build and call a function.
funcName | A string containing the unadorned name of a function to be executed. |
args | .. - Any arguments that should be passed to the function. |
Use the compile function to pre-compile a script file without executing the contents.
fileName | A path to the script to compile. |
String compilePath | ( | path | ) |
void debug | ( | ) |
Use the debug function to cause the engine to issue a debug break and to break into an active debugger. For this to work, the engine must have been compiled with either TORQUE_DEBUG, or INTERNAL_RELEASE defined
void deleteVariables | ( | wildCard | ) |
Use the deleteVariables function to delete any global variable matching the wildCard statement.
wildCard | A string identifying what variable(s) to delete. All characters used to create a global are allowed and the special symbol *\, meaning 0 or more instances of any character. |
String enumerateConsoleClasses | ( | [baseClass] ? | ) |
String eval | ( | script | ) |
Use the eval function to execute any valid script statement. If you choose to eval a multi-line statement, be sure that there are no comments or comment blocks embedded in the script string.
script | A string containing a valid script statement. This may be a single line statement or multiple lines concatenated together with new-line characters. |
Use the exec function to compile and execute a normal script, or a special journal script. If $Pref::ignoreDSOs is set to true, the system will use .cs before a .dso file if both are found.
fileName | A string containing a path to the script to be compiled and executed. |
nocalls | A boolean value. If this value is set to true, then all function calls encountered while executing the script file will be skipped and not called. This allows us to re-define function definitions found in a script file, without re-executing other worker scripts in the same file. |
journalScript | A boolean value. If this value is set tot true, and if a journal is being played, the engine will attempt to read this script from the journal stream. If no journal is playing, this field is ignored. |
void export | ( | wildCard | , |
[fileName] ? | , | ||
[append] ? | |||
) |
Use the export function to save all global variables matching the specified name pattern in wildCard to a file, either appending to that file or over-writing it.
wildCard | A string identifying what variable(s) to export. All characters used to create a global are allowed and the special symbol *\, meaning 0 or more instances of any character. |
fileName | A string containing a path to a file in which to save the globals and their definitions. |
append | A boolean value. If this value is true, the file will be appended to if it exists, otherwise it will be created/over-written. |
String getAppleDeviceIPAddress | ( | ) |
Gets the Apple hardware local IP on wifi. Should work on OS X and iOS
String getDSOPath | ( | scriptFileName | ) |
Returns the DSO path of the given filename
scriptFileName | A string contains the file to search for |
String getModNameFromPath | ( | string | path | ) |
Attempts to extract a mod directory from path. Returns empty string on failure.
String getPrefsPath | ( | [fileName] ? | ) |
String getVariable | ( | string | varName | ) |
Grabs the relevant data for the variable represented by the given string
varName | A String representing the variable to check |
Boolean isFunction | ( | string | funcName | ) |
Checks whether given name represents a current valid function.
funcName | The name of the function to check. |
Boolean isMethod | ( | string | namespace, |
string | method | ||
) |
Checks whether the given method name represents a valid method within the given namespace.
namespace | A string representing the namespace in which the method should reside. |
method | The name of the method in question. |
void setScriptExecEcho | ( | echo? | ) |
Whether to echo script file execution or not.
void trace | ( | enable | ) |
Use the trace function to enable (or disable) function call tracing. If enabled, tracing will print a message every time a function is entered, showing what arguments it received, and it will print a message every time a function is exited, showing the return value (or last value of last statement) for that function.
enable | A boolean value. If set to true, tracing is enabled, otherwise it is disabled. |