/[svn]/linuxsampler/trunk/src/engines/common/InstrumentScriptVM.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/common/InstrumentScriptVM.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3117 by schoenebeck, Thu Jan 5 16:04:00 2017 UTC revision 3118 by schoenebeck, Fri Apr 21 13:33:03 2017 UTC
# Line 232  namespace LinuxSampler { Line 232  namespace LinuxSampler {
232          m_fnSetEventMark(this), m_fnDeleteEventMark(this), m_fnByMarks(this),          m_fnSetEventMark(this), m_fnDeleteEventMark(this), m_fnByMarks(this),
233          m_fnChangeVol(this), m_fnChangeTune(this), m_fnChangePan(this),          m_fnChangeVol(this), m_fnChangeTune(this), m_fnChangePan(this),
234          m_fnChangeCutoff(this), m_fnChangeReso(this),  m_fnChangeAttack(this),          m_fnChangeCutoff(this), m_fnChangeReso(this),  m_fnChangeAttack(this),
235          m_fnChangeDecay(this), m_fnChangeRelease(this), m_fnEventStatus(this),          m_fnChangeDecay(this), m_fnChangeRelease(this),
236          m_fnWait2(this), m_fnStopWait(this),          m_fnChangeAmpLFODepth(this), m_fnChangeAmpLFOFreq(this),
237            m_fnChangePitchLFODepth(this), m_fnChangePitchLFOFreq(this),
238            m_fnEventStatus(this), m_fnWait2(this), m_fnStopWait(this),
239          m_varEngineUptime(this), m_varCallbackID(this), m_varAllEvents(this)          m_varEngineUptime(this), m_varCallbackID(this), m_varAllEvents(this)
240      {      {
241          m_CC.size = _MEMBER_SIZEOF(AbstractEngineChannel, ControllerTable);          m_CC.size = _MEMBER_SIZEOF(AbstractEngineChannel, ControllerTable);
# Line 363  namespace LinuxSampler { Line 365  namespace LinuxSampler {
365          else if (name == "change_attack") return &m_fnChangeAttack;          else if (name == "change_attack") return &m_fnChangeAttack;
366          else if (name == "change_decay") return &m_fnChangeDecay;          else if (name == "change_decay") return &m_fnChangeDecay;
367          else if (name == "change_release") return &m_fnChangeRelease;          else if (name == "change_release") return &m_fnChangeRelease;
368            else if (name == "change_amp_lfo_depth") return &m_fnChangeAmpLFODepth;
369            else if (name == "change_amp_lfo_freq") return &m_fnChangeAmpLFOFreq;
370            else if (name == "change_pitch_lfo_depth") return &m_fnChangePitchLFODepth;
371            else if (name == "change_pitch_lfo_freq") return &m_fnChangePitchLFOFreq;
372          else if (name == "event_status") return &m_fnEventStatus;          else if (name == "event_status") return &m_fnEventStatus;
373          else if (name == "wait") return &m_fnWait2; // override wait() core implementation          else if (name == "wait") return &m_fnWait2; // override wait() core implementation
374          else if (name == "stop_wait") return &m_fnStopWait;          else if (name == "stop_wait") return &m_fnStopWait;

Legend:
Removed from v.3117  
changed lines
  Added in v.3118

  ViewVC Help
Powered by ViewVC