|
Isle
|
[AI] Collection class representing a list of ModelDbPart pointers with custom comparison logic. More...
#include <modeldb.h>


Public Member Functions | |
| ModelDbPartList () | |
| [AI] Constructs the ModelDbPartList and initializes the unknown member. More... | |
| MxS8 | Compare (ModelDbPart *p_a, ModelDbPart *p_b) override |
| [AI] Compares two ModelDbPart objects by their ROI names (case-insensitive). More... | |
Public Member Functions inherited from MxList< ModelDbPart * > | |
| MxList () | |
| [AI] Constructor. Initializes the list pointers to null (empty list). [AI] More... | |
| ~MxList () override | |
| [AI] Destructor. Deletes all entries in the list and manages resource ownership. [AI] More... | |
| void | Append (ModelDbPart * p_obj) |
| [AI] More... | |
| void | Prepend (ModelDbPart * p_obj) |
| [AI] More... | |
| void | DeleteAll () |
| [AI] More... | |
| void | Empty () |
| [AI] More... | |
| MxU32 | GetNumElements () |
| [AI] More... | |
Additional Inherited Members | |
Protected Member Functions inherited from MxList< ModelDbPart * > | |
| void | DeleteEntry (MxListEntry< ModelDbPart * > *) |
| [AI] More... | |
| MxListEntry< ModelDbPart * > * | InsertEntry (ModelDbPart *, MxListEntry< ModelDbPart * > *, MxListEntry< ModelDbPart * > *) |
| [AI] More... | |
Protected Member Functions inherited from MxCollection< T > | |
| MxCollection () | |
| [AI] Constructs an empty collection, initializing count and default element destructor. More... | |
| virtual MxS8 | Compare (T a, T b) |
| [AI] Compares two elements of the collection (default implementation returns zero; override in subclasses for meaningful comparison). More... | |
| ~MxCollection () override | |
| [AI] Virtual destructor for proper polymorphic destruction. More... | |
| void | SetDestroy (void(*p_customDestructor)(T)) |
| [AI] Assigns a custom destructor function to be used for elements of this collection. More... | |
Protected Member Functions inherited from MxCore | |
| MxCore () | |
| [AI] Constructs a new MxCore object and assigns it a unique id. More... | |
| virtual | ~MxCore () |
| [AI] Virtual destructor. Required for correct polymorphic cleanup in derived classes. More... | |
| virtual MxLong | Notify (MxParam &p_param) |
| [AI] Virtual callback notification mechanism. More... | |
| virtual MxResult | Tickle () |
| [AI] Called by tickle managers to allow the object to update itself. More... | |
| virtual const char * | ClassName () const |
| [AI] Returns the runtime class name of this object. More... | |
| virtual MxBool | IsA (const char *p_name) const |
| [AI] Checks whether this object's class type or parents match the given name. More... | |
| MxU32 | GetId () |
| [AI] Gets the unique (per-process) id assigned to this object instance. More... | |
Static Protected Member Functions inherited from MxCollection< T > | |
| static void | Destroy (T obj) |
| [AI] Static no-op destroy function; suitable for types that do not need destruction. More... | |
Protected Attributes inherited from MxList< ModelDbPart * > | |
| MxListEntry< ModelDbPart * > * | m_first |
| [AI] Pointer to the first entry in the list. [AI] More... | |
| MxListEntry< ModelDbPart * > * | m_last |
| [AI] Pointer to the last entry in the list. [AI] More... | |
Protected Attributes inherited from MxCollection< T > | |
| MxU32 | m_count |
| [AI] Number of elements currently stored in the collection. More... | |
| void(* | m_customDestructor )(T) |
| [AI] Function pointer to the custom element destructor used for cleanup of elements. More... | |
[AI] Collection class representing a list of ModelDbPart pointers with custom comparison logic.
Used for model part organization.
[AI] Stores all parts associated with a particular world/model. Inherits from MxList<ModelDbPart*> and defines a custom Compare method based on ROI name.
|
inline |
[AI] Constructs the ModelDbPartList and initializes the unknown member.
|
inlineoverride |
[AI] Compares two ModelDbPart objects by their ROI names (case-insensitive).
[AI] If names match, syncs the part's data length and offset from p_a to p_b. This provides comparison and merging for part loading.
| p_a | First ModelDbPart* to compare. [AI] |
| p_b | Second ModelDbPart* to compare. If names match, its metadata is updated from p_a. [AI] |