|
enum | ExecutionState { kBegin,
kRun,
kActionTrigger
} |
|
enum | ExecutionType { kOneShot = 1,
kRepeating = 2
} |
|
void | init () override |
|
void | readData (Common::SeekableReadStream &stream) override |
|
void | execute () override |
|
virtual bool | isVideoDonePlaying () |
|
| RenderActionRecord (uint zOrder) |
|
void | onPause (bool pause) override |
|
virtual CursorManager::CursorType | getHoverCursor () const |
|
virtual void | handleInput (NancyInput &input) |
|
| RenderObject (uint16 zOrder) |
|
| RenderObject (uint16 zOrder, Graphics::ManagedSurface &surface, const Common::Rect &srcBounds, const Common::Rect &destBounds) |
|
virtual void | registerGraphics () |
|
virtual void | updateGraphics () |
|
void | moveTo (const Common::Point &position) |
|
void | moveTo (const Common::Rect &bounds) |
|
void | setVisible (bool visible) |
|
void | setTransparent (bool isTransparent) |
|
bool | isVisible () const |
|
void | grabPalette (byte *colors, uint paletteStart=0, uint paletteSize=256) |
|
void | setPalette (const Common::Path &paletteName, uint paletteStart=0, uint paletteSize=256) |
|
void | setPalette (const byte *colors, uint paletteStart=0, uint paletteSize=256) |
|
bool | hasMoved () const |
|
Common::Rect | getScreenPosition () const |
|
Common::Rect | getPreviousScreenPosition () const |
|
Common::Rect | convertToLocal (const Common::Rect &screen) const |
|
Common::Rect | convertToScreen (const Common::Rect &rect) const |
|
Common::Rect | getBounds () const |
|
uint16 | getZOrder () const |
|
Common::String | _description |
|
byte | _type |
|
ExecutionType | _execType |
|
DependencyRecord | _dependencies |
|
bool | _isActive |
|
bool | _isDone |
|
bool | _hasHotspot |
|
Common::Rect | _hotspot |
|
ExecutionState | _state |
|
int16 | _days |
|
DependencyRecord * | _cursorDependency |
|
Graphics::ManagedSurface | _drawSurface |
|
Common::String | _text |
|
SoundDescription | _sound |
|
SoundDescription | _responseGenericSound |
|
byte | _conditionalResponseCharacterID |
|
byte | _goodbyeResponseCharacterID |
|
byte | _defaultNextScene = kDefaultNextSceneEnabled |
|
byte | _popNextScene = kNoPopNextScene |
|
SceneChangeDescription | _sceneChange |
|
Common::Array< ResponseStruct > | _responses |
|
Common::Array< FlagsStruct > | _flagsStructs |
|
Common::Array< SceneBranchStruct > | _sceneBranchStructs |
|
bool | _hasDrawnTextbox |
|
int16 | _pickedResponse |
|
const byte | _noResponse |
|
bool | _needsRedraw |
|
bool | _isVisible |
|
bool | _hasMoved |
|
uint16 | _z |
|
Common::Rect | _previousScreenPosition |
|
Common::Rect | _screenPosition |
|
static const byte | kDefaultNextSceneEnabled = 1 |
|
static const byte | kDefaultNextSceneDisabled = 2 |
|
static const byte | kPopNextScene = 1 |
|
static const byte | kNoPopNextScene = 2 |
|