TypedObject
from panda3d.core import TypedObject
- class TypedObject
Bases:
Bases:
MemoryBase
This is an abstract class that all classes which use
TypeHandle
, and also provide virtual functions to support polymorphism, should inherit from. Each derived class should definegetType()
, which should return the specific type of the derived class. Inheriting from this automatically provides support forisOfType()
andisExactType()
.All classes that inherit directly or indirectly from TypedObject should redefine
getType()
and force_init_type(), as shown below. Some classes that do not inherit from TypedObject may still declareTypeHandles
for themselves by defining methods calledgetClassType()
and init_type(). Classes such as these may serve as base classes, but the dynamic type identification system will be limited. Classes that do not inherit from TypedObject need not define the virtual functionsgetType()
and force_init_type() (or any other virtual functions).There is a specific layout for defining the overrides from this class. Keeping the definitions formatted just like these examples will allow someone in the future to use a sed (or similar) script to make global changes, if necessary. Avoid rearranging the braces or the order of the functions unless you’re ready to change them in every file all at once.
What follows are some examples that can be used in new classes that you create.
In the class definition (.h file):
public: static TypeHandle get_class_type() { return _type_handle; } static void init_type() { <<<BaseClassOne>>>::init_type(); <<<BaseClassTwo>>>::init_type(); <<<BaseClassN>>>::init_type(); register_type(_type_handle, "<<<ThisClassStringName>>>", <<<BaseClassOne>>>::get_class_type(), <<<BaseClassTwo>>>::get_class_type(), <<<BaseClassN>>>::get_class_type()); } virtual TypeHandle get_type() const { return get_class_type(); } virtual TypeHandle force_init_type() {init_type(); return get_class_type();} private: static TypeHandle _type_handle;
In the class .cxx file:
TypeHandle <<<ThisClassStringName>>>::_type_handle;
In the class config_<<<PackageName>>>.cxx file:
ConfigureFn(config_<<<PackageName>>>) { <<<ClassOne>>>::init_type(); <<<ClassTwo>>>::init_type(); <<<ClassN>>>::init_type(); }
Inheritance diagram
- static getClassType() TypeHandle
- getType() TypeHandle
Derived classes should override this function to return
getClassType()
.
- getTypeIndex() int
Returns the internal index number associated with this object’s
TypeHandle
, a unique number for each different type. This is equivalent to get_type().get_index().
- isExactType(handle: TypeHandle) bool
Returns true if the current object is the indicated type exactly.
- isOfType(handle: TypeHandle) bool
Returns true if the current object is or derives from the indicated type.
- property type TypeHandle
Returns the
TypeHandle
representing this object’s type.Derived classes should override this function to return
getClassType()
.Derived classes should override this function to return
getClassType()
.