#include <image.h>
Public Member Functions | |
| ImageStill (Object *parent, byte subType, uint16 index, const Common::String &name) | |
| void | readData (Formats::XRCReadStream *stream) override |
| void | onPostRead () override |
Public Member Functions inherited from Stark::Resources::Image | |
| Image (Object *parent, byte subType, uint16 index, const Common::String &name) | |
| virtual Visual * | getVisual () |
| int | indexForPoint (const Common::Point &point) const |
| Common::Point | getHotspotPosition (uint index) const |
Public Member Functions inherited from Stark::Resources::Object | |
| Type | getType () const |
| byte | getSubType () const |
| uint16 | getIndex () const |
| Common::String | getIndexAsString () const |
| Common::String | getName () const |
| virtual void | saveLoad (ResourceSerializer *serializer) |
| virtual void | saveLoadCurrent (ResourceSerializer *serializer) |
| virtual void | onAllLoaded () |
| virtual void | onEnterLocation () |
| virtual void | onGameLoop () |
| virtual void | onEnginePause (bool pause) |
| virtual void | onExitLocation () |
| virtual void | onPreDestroy () |
| template<class T > | |
| T * | findParent () |
| Object * | findChildWithIndex (Type type, uint16 index, int subType=-1) const |
| Object * | findChildWithOrder (Type type, uint16 order, int subType=-1) const |
| Object * | findChildWithName (Type type, const Common::String &name, int subType=-1) const |
| template<class T > | |
| T * | findChild (bool mustBeUnique=true) const |
| template<class T > | |
| T * | findChildWithSubtype (int subType, bool mustBeUnique=true) const |
| template<class T > | |
| T * | findChildWithIndex (uint16 index, int subType=-1) const |
| template<class T > | |
| T * | findChildWithOrder (uint16 order, int subType=-1) const |
| template<class T > | |
| T * | findChildWithName (const Common::String &name, int subType=-1) const |
| template<class T > | |
| Common::Array< T * > | listChildren (int subType=-1) const |
| template<class T > | |
| Common::Array< T * > | listChildrenRecursive (int subType=-1) |
| void | addChild (Object *child) |
| virtual void | print (uint depth=0) |
| template<> | |
| Object * | cast (Object *resource) |
| template<> | |
| Object * | findParent () |
| template<> | |
| Common::Array< Object * > | listChildren (int subType) const |
Protected Member Functions | |
| void | printData () override |
| void | initVisual () override |
| bool | loadPNGOverride (Stark::VisualImageXMG *visual) const |
Protected Member Functions inherited from Stark::Resources::Image | |
| bool | isPointInPolygon (const Polygon &polygon, const Common::Point &point) const |
Protected Member Functions inherited from Stark::Resources::Object | |
| Object (Object *parent, byte subType, uint16 index, const Common::String &name) | |
| void | printWithDepth (uint depth, const Common::String &string) const |
| void | printDescription (uint depth) const |
Protected Attributes | |
| bool | _noName |
Protected Attributes inherited from Stark::Resources::Image | |
| Common::Path | _filename |
| Common::Path | _archiveName |
| Visual * | _visual |
| bool | _transparent |
| uint32 | _transparentColor |
| uint32 | _field_44_ADF |
| uint32 | _field_48_ADF |
| Common::Point | _hotspot |
| Common::Array< Polygon > | _polygons |
Protected Attributes inherited from Stark::Resources::Object | |
| Type | _type |
| byte | _subType |
| uint16 | _index |
| Common::String | _name |
| Object * | _parent |
| Common::Array< Object * > | _children |
Additional Inherited Members | |
Public Types inherited from Stark::Resources::Image | |
| enum | SubType { kImageSub2 = 2, kImageSub3 = 3, kImageText = 4 } |
| typedef Common::Array< Common::Point > | Polygon |
Static Public Member Functions inherited from Stark::Resources::Image | |
| static Object * | construct (Object *parent, byte subType, uint16 index, const Common::String &name) |
Static Public Member Functions inherited from Stark::Resources::Object | |
| template<class T > | |
| static T * | cast (Object *resource) |
Static Public Attributes inherited from Stark::Resources::Image | |
| static const Type::ResourceType | TYPE = Type::kImage |
A still image resource loading its data from an XMG file
|
overridevirtual |
Deserialize the resource static data and initial state.
Reimplemented from Stark::Resources::Image.
|
overridevirtual |
Called when the node's initialization is complete.
Allows to load additional data from file.
Reimplemented from Stark::Resources::Object.