|
| CLASS_PROTOTYPE (ScriptMaster) |
|
ScriptThread * | CreateThread (GameScript *scr, str label, Listener *self=NULL) |
|
ScriptThread * | CreateThread (str filename, str label, Listener *self=NULL) |
|
void | ExecuteThread (GameScript *scr, str label="") |
|
void | ExecuteThread (str filename, str label="") |
|
void | ExecuteThread (GameScript *scr, str label, Event &parms) |
|
void | ExecuteThread (str filename, str label, Event &parms) |
|
ScriptThread * | CreateScriptThread (ScriptClass *scriptClass, unsigned char *m_pCodePos) |
|
ScriptThread * | CreateScriptThread (GameScript *scr, Listener *self, const_str label) |
|
ScriptThread * | CreateScriptThread (GameScript *scr, Listener *self, str label) |
|
ScriptThread * | CreateScriptThread (ScriptClass *scriptClass, const_str label) |
|
ScriptThread * | CreateScriptThread (ScriptClass *scriptClass, str label) |
|
void | Reset (qboolean samemap=false) |
|
ScriptThread * | PreviousThread (void) |
|
ScriptThread * | CurrentThread (void) |
|
ScriptThread * | CurrentScriptThread (void) |
|
ScriptClass * | CurrentScriptClass (void) |
|
GameScript * | GetGameScript (const_str filename, qboolean recompile=false) |
|
GameScript * | GetGameScript (str filename, qboolean recompile=false) |
|
GameScript * | GetScript (const_str filename, qboolean recompile=false) |
|
GameScript * | GetScript (str filename, qboolean recompile=false) |
|
void | SetTime (int time) |
|
void | AddTiming (ScriptThread *thread, int time) |
|
void | RemoveTiming (ScriptThread *thread) |
|
const_str | AddString (const char *s) |
|
const_str | AddString (str &s) |
|
const_str | GetString (const char *s) |
|
const_str | GetString (str s) |
|
str & | GetString (const_str s) |
|
void | ArchiveString (Archiver &arc, const_str &s) |
|
void | Pause () |
|
void | Unpause () |
|
void | AllowPause (bool allow) |
|
void | AddMenu (str name) |
|
void | RemoveMenu (str name) |
|
void | LoadMenus (void) |
|
void | Archive (Archiver &arc) override |
|
GameScript * | GetTempScript (const char *data) |
|
void | PrintStatus (void) |
|
void | PrintThread (int iThreadNum) |
|
| CLASS_PROTOTYPE (Listener) |
|
virtual Listener * | GetScriptOwner (void) |
|
virtual void | SetScriptOwner (Listener *newOwner) |
|
void | CancelEventsOfType (Event *ev) |
|
void | CancelEventsOfType (Event &ev) |
|
void | CancelFlaggedEvents (int flags) |
|
void | CancelPendingEvents (void) |
|
qboolean | EventPending (Event &ev) |
|
void | PostEvent (Event *ev, float delay, int flags=0) |
|
void | PostEvent (const Event &ev, float delay, int flags=0) |
|
qboolean | PostponeAllEvents (float time) |
|
qboolean | PostponeEvent (Event &ev, float time) |
|
bool | ProcessEvent (const Event &ev) |
|
bool | ProcessEvent (Event *ev) |
|
bool | ProcessEvent (Event &ev) |
|
ScriptVariable & | ProcessEventReturn (Event *ev) |
|
void | ProcessContainerEvent (const Container< Event * > &conev) |
|
qboolean | ProcessPendingEvents (void) |
|
bool | ProcessScriptEvent (Event &ev) |
|
bool | ProcessScriptEvent (Event *ev) |
|
int | GetFlags (Event *event) const |
|
qboolean | ValidEvent (str name) const |
|
void | CommandDelay (Event *ev) |
|
void | Remove (Event *ev) |
|
void | ScriptRemove (Event *ev) |
|
void | EventInheritsFrom (Event *ev) |
|
void | EventIsInheritedBy (Event *ev) |
|
void | GetClassname (Event *ev) |
|
virtual ClassDef * | classinfo (void) const |
|
void | warning (const char *function, const char *format,...) const |
|
void | error (const char *function, const char *format,...) const |
|
qboolean | inheritsFrom (ClassDef *c) const |
|
qboolean | inheritsFrom (const char *name) const |
|
qboolean | isInheritedBy (const char *name) const |
|
qboolean | isInheritedBy (ClassDef *c) const |
|
const char * | getClassname (void) const |
|
const char * | getClassID (void) const |
|
const char * | getSuperclass (void) const |
|
void * | operator new (size_t s) |
|
void | operator delete (void *ptr) |
|
void * | operator new (size_t size, void *placement) |
|
void | operator delete (void *ptr, void *placement) |
|
template<typename T> |
void * | operator new (size_t size, T &placement) |
|
template<typename T> |
void | operator delete (void *ptr, T &placement) |
|