Home | Trees | Indices | Help |
|
---|
|
Author: Øyvind Brandtsegg
Contact: obrandts@gmail.com
License: GPL
Requires: csnd
|
|||
eventCaller = control.eventCaller.EventCaller() The event caller is the central module, communication with all other parts of the application. |
|||
theTime = control.theTime2.TheTime2(eventCaller) theTime is the timed queue used for timed automation of method calls. |
|||
csThread = cs.csModule.CsoundThreadRoutine(theTime) Instance of the Csound module, setting up and running Csound. |
|||
csound = csThread.csound Pointer to the actual Csound instance. |
|||
performanceThread = csThread.csound (Would be) Pointer to the C++ thread running Csound. |
|||
csMessages = cs.csMessages.CsoundMessages(csound, performanceT Instance of csMessages, used for all message passing from python to csound. |
|||
command = ''
|
|
performanceThread(Would be) Pointer to the C++ thread running Csound. The current implementation does not use the performancethread, but the ksmps loop based method of running Csound. The pointer to the performance thread has been implemented to make it feasible to change between ksmps-loop and performancethread driven Csound.
|
csMessagesInstance of csMessages, used for all message passing from python to csound.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Wed Jul 23 20:26:14 2008 | http://epydoc.sourceforge.net |