|
__init__(self,
handle)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
destroy(self)
Destroy a player instance and all its resources. |
source code
|
|
|
|
|
blacklist_plugin(self,
uri)
Blacklist plugin. |
source code
|
|
|
|
|
|
|
save_bmx(self,
plugins,
num_plugins,
save_waves,
datastream)
Saves a BMX to memory or file. |
source code
|
|
|
load_ccm(self,
fileName)
Load a project in CCM file format from disk. |
source code
|
|
|
save_ccm(self,
fileName)
Save current project in the CCM file format to disk. |
source code
|
|
|
get_state(self)
Returns one of the values in the state enumeration. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
get_pluginloader_count(self)
Returns number of plugin loaders. |
source code
|
|
|
get_pluginloader(self,
index)
Returns a zzub_pluginloader_t handle by index. |
source code
|
|
|
get_pluginloader_by_name(self,
name)
Finds a zzub_pluginloader_t handle by uri. |
source code
|
|
|
|
|
get_plugin_count(self)
Returns number of plugins in the current song. |
source code
|
|
|
get_plugin_by_name(self,
name)
Returns the plugin object given the plugins name. |
source code
|
|
|
|
|
get_plugin(self,
index)
Returns the plugin object given the plugins index in the graph. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set_callback(self,
callback,
tag)
Sets a function that receives events. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set_midi_plugin(self,
plugin)
Sets the plugin to receive MIDI data if the plugin's internal MIDI
channel is set to the special channel 17 ("Play if
selected"). |
source code
|
|
|
|
|
get_new_plugin_name(self,
uri,
maxLen=1024)
Generates a new plugin name that can be used in a call to
create_plugin(). |
source code
|
|
|
|
|
create_plugin(self,
input,
dataSize,
instanceName,
loader,
flags=0)
Create a new plugin |
source code
|
|
|
|
|
flush(self,
redo_event,
undo_event)
Write changes made to the graph since zzub_player_begin(). |
source code
|
|
|
|
|
redo(self)
Redoes all editing operations since last call to
zzub_player_history_commit(). |
source code
|
|
|
history_commit(self,
description)
Commits the last operations to the undo buffer and marks a new undo
step. |
source code
|
|
|
history_get_uncomitted_operations(self)
Returns the count of uncomitted operations. |
source code
|
|
|
history_flush_last(self)
Causes the last operations to not appear in the undo buffer. |
source code
|
|
|
history_flush(self)
Clears the undo buffer and frees all associated resources. |
source code
|
|
|
history_get_size(self)
Returns the size of the undo buffer. |
source code
|
|
|
history_get_position(self)
Returns the current position in the undo buffer. |
source code
|
|
|
history_get_description(self,
position)
Returns the description of an operation in the undo buffer. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|