|
|
| Script (GobEngine *vm) |
| |
| uint32 | read (byte *data, int32 size) |
| |
| uint32 | peek (byte *data, int32 size, int32 offset=0) const |
| |
|
int32 | pos () const |
| |
|
int32 | getSize () const |
| |
|
bool | seek (int32 offset, int whence=SEEK_SET) |
| |
|
bool | skip (int32 offset) |
| |
|
bool | skipBlock () |
| |
|
byte | readByte () |
| |
|
char | readChar () |
| |
|
uint8 | readUint8 () |
| |
|
uint16 | readUint16 () |
| |
|
uint32 | readUint32 () |
| |
|
int8 | readInt8 () |
| |
|
int16 | readInt16 () |
| |
|
int32 | readInt32 () |
| |
|
char * | readString (int32 length=-1) |
| |
|
byte | peekByte (int32 offset=0) |
| |
|
char | peekChar (int32 offset=0) |
| |
|
uint8 | peekUint8 (int32 offset=0) |
| |
|
uint16 | peekUint16 (int32 offset=0) |
| |
|
uint32 | peekUint32 (int32 offset=0) |
| |
|
int8 | peekInt8 (int32 offset=0) |
| |
|
int16 | peekInt16 (int32 offset=0) |
| |
|
int32 | peekInt32 (int32 offset=0) |
| |
|
char * | peekString (int32 offset=0) |
| |
|
uint16 | readVarIndex (uint16 *size=0, uint16 *type=0) |
| |
|
int16 | readValExpr (byte stopToken=99) |
| |
|
int16 | readExpr (byte stopToken, byte *type) |
| |
|
void | skipExpr (char stopToken) |
| |
|
char | evalExpr (int32 *pRes) |
| |
|
bool | evalBool () |
| |
|
int32 | evalInt () |
| |
|
const char * | evalString () |
| |
|
int32 | getResultInt () const |
| |
|
char * | getResultStr () const |
| |
| int32 | getOffset (byte *ptr) const |
| |
| byte * | getData (int32 offset) const |
| |
| byte * | getData () |
| |
| bool | load (const Common::String &fileName) |
| |
| void | unload () |
| |
| bool | isLoaded () const |
| |
| void | setFinished (bool finished) |
| |
| bool | isFinished () const |
| |
| void | push () |
| |
| void | pop (bool ret=true) |
| |
| void | call (uint32 offset) |
| |
| void | writeByte (int32 offset, byte v) |
| |
|
uint8 | getVersionMajor () const |
| |
|
uint8 | getVersionMinor () const |
| |
|
uint32 | getVariablesCount () const |
| |
|
uint32 | getTextsOffset () const |
| |
|
uint32 | getResourcesOffset () const |
| |
|
uint16 | getAnimDataSize () const |
| |
|
uint8 | getImFileNumber () const |
| |
|
uint8 | getExFileNumber () const |
| |
|
uint8 | getCommunHandling () const |
| |
|
uint16 | getFunctionOffset (uint8 function) const |
| |