|
bool | PreDraw (TravState *) override |
| initialise pre draw method More...
|
|
bool | PostDraw (TravState *travstate) override |
| initialise PostDraw method More...
|
|
| Texture (const kstl::string &name, DECLARE_CLASS_NAME_TREE_ARG) |
| constructor More...
|
|
void | SetRepeatUV (bool RU, bool RV) |
| set the repeat value More...
|
|
virtual void | DoPreDraw (TravState *) |
| pre draw method More...
|
|
virtual void | DoDraw (TravState *travstate) |
| draw method More...
|
|
virtual void | DoPostDraw (TravState *travstate) |
| post draw method More...
|
|
void | CheckPostDraw (TravState *travstate) |
| check before calling corresponding DoPredraw More...
|
|
virtual bool | BBoxUpdate (kdouble time) |
| update the bounding box More...
|
|
bool | addItem (const CMSP &item, ItemPosition pos=Last) override |
| add item in scene tree More...
|
|
bool | removeItem (const CMSP &item) override |
| remove item in scene tree More...
|
|
virtual void | GetGlobalPosition (Matrix3x4 *pLocalToGlobal, kfloat &x, kfloat &y, kfloat &z) |
| get the global position of the drawable More...
|
|
bool | addItem (const CMSP &item, ItemPosition pos=Last DECLARE_DEFAULT_LINK_NAME) override |
| add item at first or last position
|
|
void | Init () |
| Modifiable managmenent.
|
|
void | EmptyItemList () |
| remove all items (sons)
|
|
CMSP | GetInstanceByPath (const std::string &path) |
| return the instance corresponding to the given path in sons tree
|
|
std::string | GetRuntimeID () const |
| ID.
|
|
CoreModifiableAttribute * | getAttribute (KigsID labelid) const |
| Attribute management.
|
|
u32 | getNbArrayElements (KigsID attributeLabel) const |
| return element count for an array type attribute
|
|
template<typename attribute_type , typename value_type > |
attribute_type * | AddDynamicAttribute (KigsID ID, const value_type &value) |
| Dynamic attribute management.
|
|
const kigs::unordered_map< KigsID, ModifiableMethodStruct > * | GetMethods () |
| Method management.
|
|
bool | aggregateWith (CMSP &item, ItemPosition pos=Last) |
| Aggregate management.
|
|
void | flagAsNotificationCenterRegistered () |
| Flags.
|
|
void | InitParametersFromList (const std::vector< CoreModifiableAttribute * > *params) |
| Utility. More...
|
|
virtual void | addUser (CoreModifiable *user) |
| add the given parent to list
|
|
virtual void | removeUser (CoreModifiable *user) |
| remove user (parent)
|
|
|
enum | TextureType |
| type of texture
|
|
static std::vector< CMSP > | GetRootInstances (const KigsID &cid, bool exactTypeOnly=false) |
| static method : return the set of all root instances of the given type
|
|
static void | Append (std::string &XMLString, const std::list< CoreModifiable * > &toexport, bool recursive, ExportSettings *settings=nullptr) |
| static method to export the several CoreModifiable to an XML file. if recursive flag is set to true, export also all sons tree More...
|
|
static void | Export (const std::string &filename, CoreModifiable *toexport, bool recursive=false, ExportSettings *settings=nullptr) |
| static method to export the given CoreModifiable to an XML file. if recursive flag is set to true, export also all sons tree More...
|
|
static XMLNode * | ExportToXMLNode (CoreModifiable *toexport, XML *owner_xml_file, bool recursive, ExportSettings *settings=nullptr) |
| static method to export the given CoreModifiable to an XML Node. if recursive flag is set to true, export also all sons tree More...
|
|
static std::string | ExportToXMLString (CoreModifiable *toexport, bool recursive, ExportSettings *settings=nullptr) |
| static method to export the given CoreModifiable to an XML file. if recursive flag is set to true, export also all sons tree More...
|
|
static void | Export (std::string &XMLString, const std::list< CoreModifiable * > &toexport, bool recursive, ExportSettings *settings=nullptr) |
| static method to export the several CoreModifiable to an XML file. if recursive flag is set to true, export also all sons tree More...
|
|
static CMSP | Import (const std::string &filename, bool noInit=false, bool keepImportFileName=false, ImportState *state=nullptr, const std::string &override_name="") |
| return an new CoreModifiable instance using the description found in XML file given by name
|
|
static CMSP | GetInstanceByGlobalPath (const std::string &path) |
| static method : return the instance corresponding to the given path, and given search start
|
|
static void | debugPrintfFullTree (int maxindent=3) |
| Editor. More...
|
|
template<typename StringType > |
static CMSP | Import (XMLNodeTemplate< StringType > *currentNode, CoreModifiable *currentModifiable, ImportState &importState) |
| recusrive method to add sons and attributes found in the XML file
|
|
maUInt | mWidth |
| height of the texture
|
|
maUInt | mHeight |
| width of the texture
|
|
maInt | mTransparencyType |
| 0 = no transparency, 1 = billboard (binary transparency), 2 = need blend, -1 = to test on file loading
|
|
maBool | mHasMipmap |
| TRUE if the texture has mipmap.
|
|
maString | mFileName |
| file name of the used texture
|
|
maInt | mTextureType |
| type of the used texture
|
|
maBool | mRepeat_U |
| TRUE if I repeat the texture on the u axis.
|
|
maBool | mRepeat_V |
| TRUE if I repeat the texture on the v axis.
|
|
maBool | mIsDynamic |
| TRUE if we want the texture be directly accessed from memory (platform dependant)
|
|
maBool | mForcePow2 |
| TRUE if we want the texture to be resized to a power of two at loading (done on the specific part !)
|
|
OpenGL implementation of Texture.