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 raiseErrors flag 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 actions attribute to store a map of action names to a list of callbacks.

addAction(action, func, *args, **kwargs)[source]

Adds a callback to the specified action.

All other positional and keyword arguments will be stored and passed to the function upon activation.

doAction(action)[source]

Helper method that calls all callbacks registered for the given action.

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.

data may be a dictionary to initialize the registry with. Only dictionaries gotten from the data property should be used.

reuse_ids specifies whether or not the automatic ID generator should re-use old, now unused IDs. See genNewID() for more information.

start_id is the lowest ID that will be generated by the automatic ID generator.

max_id is the highest ID that will be generated by the automatic ID generator. Should this limit by reached, an AssertionError will be raised.

default_reg may be a dictionary mapping IDs to names. It will only be used if data did 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. id may be None to automatically generate one.

This class also supports the in operator, 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 data argument.

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_ids was 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_ids was true, this method starts counting up from start_id until 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, an AssertionError is 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 TypeError will 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 TypeError will be thrown.

register(name, force_id=None)[source]

Registers a name to the registry.

name is the name of the object and must be a string.

force_id can be optionally set to override the automatic ID generation and force a specific ID.

Note that using force_id is discouraged, since it may cause problems when reuse_ids is false.