DCClass
from panda3d.direct import DCClass
- class DCClass
Bases:
Bases:
DCDeclaration
Defines a particular DistributedClass as read from an input .dc file.
Inheritance diagram
- aiFormatGenerate(distobj: object, do_id: int, parent_id: int, zone_id: int, district_channel_id: int, from_channel_id: int, optional_fields: object) panda3d.core.Datagram
- aiFormatUpdate(field_name: str, do_id: int, to_id: int, from_id: int, args: object) panda3d.core.Datagram
Generates a datagram containing the message necessary to send an update for the indicated distributed object from the AI.
- aiFormatUpdateMsgType(field_name: str, do_id: int, to_id: int, from_id: int, msg_type: int, args: object) panda3d.core.Datagram
Generates a datagram containing the message necessary to send an update, using the indicated msg type for the indicated distributed object from the AI.
- clientFormatGenerateCMU(distobj: object, do_id: int, zone_id: int, optional_fields: object) panda3d.core.Datagram
Generates a datagram containing the message necessary to generate a new distributed object from the client. This requires querying the object for the initial value of its required fields.
optional_fields is a list of fieldNames to generate in addition to the normal required fields.
This method is only called by the CMU implementation.
- clientFormatUpdate(field_name: str, do_id: int, args: object) panda3d.core.Datagram
Generates a datagram containing the message necessary to send an update for the indicated distributed object from the client.
- directUpdate(distobj: object, field_name: str, datagram: panda3d.core.Datagram)
Processes an update for a named field from a packed datagram.
- directUpdate(distobj: object, field_name: str, value_blob: bytes)
Processes an update for a named field from a packed value blob.
- getClassDef() object
Returns the class object that was previously associated with this DistributedClass. This will return a new reference to the object.
- getConstructor() DCField
Returns the constructor method for this class if it is defined, or NULL if the class uses the default constructor.
- getField(n: int) DCField
Returns the nth field in the class. This is not necessarily the field with index n; this is the nth field defined in the class directly, ignoring inheritance.
- getFieldByIndex(index_number: int) DCField
Returns a pointer to the
DCField
that has the indicated index number. If the numbered field is not found in the current class, the parent classes will be searched, so the value returned may not actually be a field within this class. Returns NULL if there is no such field defined.
- getFieldByName(name: str) DCField
Returns a pointer to the
DCField
that shares the indicated name. If the named field is not found in the current class, the parent classes will be searched, so the value returned may not actually be a field within this class. Returns NULL if there is no such field defined.
- getInheritedField(n: int) DCField
Returns the nth field field in the class and all of its ancestors.
This used to be the same thing as
getFieldByIndex()
, back when the fields were numbered sequentially within a class’s inheritance hierarchy. Now that fields have a globally unique index number, this is no longer true.
- getNumFields() int
Returns the number of fields defined directly in this class, ignoring inheritance.
- getNumInheritedFields() int
Returns the total number of field fields defined in this class and all ancestor classes.
- getNumber() int
Returns a unique index number associated with this class. This is defined implicitly when the .dc file(s) are read.
- getOwnerClassDef() object
Returns the owner class object that was previously associated with this DistributedClass. This will return a new reference to the object.
- hasClassDef() bool
Returns true if the
DCClass
object has an associated Python class definition, false otherwise.
- hasConstructor() bool
Returns true if this class has a constructor method, false if it just uses the default constructor.
- hasOwnerClassDef() bool
Returns true if the
DCClass
object has an associated Python owner class definition, false otherwise.
- inheritsFromBogusClass() bool
Returns true if this class, or any class in the inheritance heirarchy for this class, is a “bogus” class–a forward reference to an as-yet-undefined class.
- isBogusClass() bool
Returns true if the class has been flagged as a bogus class. This is set for classes that are generated by the parser as placeholder for missing classes, as when reading a partial file; it should not occur in a normal valid dc file.
- isStruct() bool
Returns true if the class has been identified with the “struct” keyword in the dc file, false if it was declared with “dclass”.
- output(out: panda3d.core.ostream)
Write a string representation of this instance to <out>.
- packRequiredField(packer: DCPacker, distobj: object, field: DCField) bool
Looks up the current value of the indicated field by calling the appropriate get*() function, then packs that value into the packer. This field is presumably either a required field or a specified optional field, and we are building up a datagram for the generate-with-required message.
Returns true on success, false on failure.
- packRequiredField(datagram: panda3d.core.Datagram, distobj: object, field: DCField) bool
Looks up the current value of the indicated field by calling the appropriate get*() function, then packs that value into the datagram. This field is presumably either a required field or a specified optional field, and we are building up a datagram for the generate-with-required message.
Returns true on success, false on failure.
- receiveUpdate(distobj: object, di: panda3d.core.DatagramIterator)
Extracts the update message out of the packer and applies it to the indicated object by calling the appropriate method.
- receiveUpdateAllRequired(distobj: object, di: panda3d.core.DatagramIterator)
Processes a big datagram that includes all of the “required” fields that are sent when an avatar is created. This is all of the atomic fields that are marked “required”, whether they are broadcast or not.
- receiveUpdateBroadcastRequired(distobj: object, di: panda3d.core.DatagramIterator)
Processes a big datagram that includes all of the “required” fields that are sent along with a normal “generate with required” message. This is all of the atomic fields that are marked “broadcast required”.
- receiveUpdateBroadcastRequiredOwner(distobj: object, di: panda3d.core.DatagramIterator)
Processes a big datagram that includes all of the “required” fields that are sent along with a normal “generate with required” message. This is all of the atomic fields that are marked “broadcast ownrecv”. Should be used for ‘owner-view’ objects.
- receiveUpdateOther(distobj: object, di: panda3d.core.DatagramIterator)
Processes a datagram that lists some additional fields that are broadcast in one chunk.
- setClassDef(class_def: object)
Sets the class object associated with this DistributedClass. This object will be used to construct new instances of the class.
- setOwnerClassDef(owner_class_def: object)
Sets the owner class object associated with this DistributedClass. This object will be used to construct new owner instances of the class.
- startGenerate()
Starts the PStats timer going on the “generate” task, that is, marks the beginning of the process of generating a new object, for the purposes of timing this process.
This should balance with a corresponding call to
stopGenerate()
.
- stopGenerate()
Stops the PStats timer on the “generate” task. This should balance with a preceding call to
startGenerate()
.