peng3d.util - Utility Functions and Classes¶
-
class
peng3d.util.WatchingList(l, callback=None)[source]¶ Subclass of
list()implementing a watched list.A WatchingList will call the given callback with a reference to itself whenever it is modified. Internally, the callback is stored as a weak reference, meaning that the creator should keep a reference around.
This class is used in
peng3d.gui.widgets.BasicWidget()to allow for modifying single coordinates of the pos and size properties.
-
peng3d.util.register_pyglet_handler(peng, func, event, raiseErrors=False)[source]¶ Registers the given pyglet-style event handler for the given pyglet event.
This function allows pyglet-style event handlers to receive events bridged through the peng3d event system. Internally, this function creates a lambda function that decodes the arguments and then calls the pyglet-style event handler.
The
raiseErrorsflag is passed through to the peng3d event system and will cause any errors raised by this handler to be ignored.See also
See
addEventListener()for more information.
-
class
peng3d.util.ActionDispatcher[source]¶ Helper Class to be used to enable action support.
Actions are simple callbacks that are specific to the instance they are registered with.
To be able to use actions, a class must be a subclass of
ActionDispatcher().Creation of required data structures is handled automatically when the first action is added.
Internally, this object uses the
actionsattribute to store a map of action names to a list of callbacks.
-
class
peng3d.util.SmartRegistry(data=None, reuse_ids=False, start_id=0, max_id=inf, default_reg=None)[source]¶ Smart registry allowing easy management of mappings from int to str and vice versa.
Note that bidict is required to be able to use this class.
datamay be a dictionary to initialize the registry with. Only dictionaries gotten from thedataproperty should be used.reuse_idsspecifies whether or not the automatic ID generator should re-use old, now unused IDs. SeegenNewID()for more information.start_idis the lowest ID that will be generated by the automatic ID generator.max_idis the highest ID that will be generated by the automatic ID generator. Should this limit by reached, anAssertionErrorwill be raised.default_regmay be a dictionary mapping IDs to names. It will only be used ifdatadid not already contain a registry.It is possible to access the registry via the dict-style
reg[key]notation. This will return the name of whatever object was used as the key.Registering is also possible in a similar manner, like
reg[name]=id.idmay beNoneto automatically generate one.This class also supports the
inoperator, note that both IDs and names are checked.-
data¶ Read-only property to access the internal data.
This is a dictionary containing all information necessary to re-create the registry via the
dataargument.The returned object is fully JSON/YAML/MessagePack serializable, as it only contains basic python data types.
-
genNewID()[source]¶ Generates a new ID.
If
reuse_idswas false, the new ID will be read from an internal counter which is also automatically increased. This means that the newly generated ID is already reserved.If
reuse_idswas true, this method starts counting up fromstart_iduntil it finds an ID that is not currently known. Note that the ID is not reserved, this means that calling this method simultaneously from multiple threads may cause the same ID to be returned twice.Additionally, if the ID is greater or equal to
max_id, anAssertionErroris raised.
-
normalizeID(in_id)[source]¶ Takes in an object and normalizes it to its ID/integer representation.
Currently, only integers and strings may be passed in, else a
TypeErrorwill be thrown.
-
normalizeName(in_name)[source]¶ Takes in an object and normalizes it to its name/string.
Currently, only integers and strings may be passed in, else a
TypeErrorwill be thrown.
-
register(name, force_id=None)[source]¶ Registers a name to the registry.
nameis the name of the object and must be a string.force_idcan be optionally set to override the automatic ID generation and force a specific ID.Note that using
force_idis discouraged, since it may cause problems whenreuse_idsis false.
-