Panda3D
Public Member Functions | Public Attributes | Static Public Attributes

ParentMgr Class Reference

List of all members.

Public Member Functions

def __init__
def destroy
def privRemoveReparentRequest
def registerParent
def requestReparent
def unregisterParent

Public Attributes

 pendingChild2parentToken
 pendingParentToken2children
 token2nodepath

Static Public Attributes

tuple notify = DirectNotifyGlobal.directNotify.newCategory('ParentMgr')

Detailed Description

ParentMgr holds a table of nodes that avatars may be parented to
in a distributed manner. All clients within a particular zone maintain
identical tables of these nodes, and the nodes are referenced by 'tokens'
which the clients can pass to each other to communicate distributed
reparenting information.

The functionality of ParentMgr used to be implemented with a simple
token->node dictionary. As distributed 'parent' objects were manifested,
they would add themselves to the dictionary. Problems occured when
distributed avatars were manifested before the objects to which they
were parented to.

Since the order of object manifestation depends on the order of the
classes in the DC file, we could maintain an ordering of DC definitions
that ensures that the necessary objects are manifested before avatars.
However, it's easy enough to keep a list of pending reparents and thus
support the general case without requiring any strict ordering in the DC.

Constructor & Destructor Documentation

def __init__ (   self)

Member Function Documentation

def destroy (   self)
def privRemoveReparentRequest (   self,
  child 
)
this internal function removes any currently-pending reparent
request for the given child nodepath 
def registerParent (   self,
  token,
  parent 
)
def requestReparent (   self,
  child,
  parentToken 
)
def unregisterParent (   self,
  token 
)

Member Data Documentation

tuple notify = DirectNotifyGlobal.directNotify.newCategory('ParentMgr') [static]
 All Classes Namespaces Functions Variables Properties