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, performanceThread) Instance of csMessages, used for all message passing from python to csound. |
||
|
command = ''
|
|
eventCallerThe event caller is the central module, communication with all other parts of the application.
|
theTimetheTime is the timed queue used for timed automation of method calls.
|
csThreadInstance of the Csound module, setting up and running Csound.
|
csoundPointer to the actual Csound instance.
|
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.
|
commandNone
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0alpha3 on Mon Feb 23 14:31:58 2009 | http://epydoc.sourceforge.net |