/[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 2952 by schoenebeck, Fri Jul 15 15:29:04 2016 UTC revision 2953 by schoenebeck, Sat Jul 16 11:24:39 2016 UTC
# Line 230  namespace LinuxSampler { Line 230  namespace LinuxSampler {
230          m_fnIgnoreEvent(this), m_fnIgnoreController(this), m_fnNoteOff(this),          m_fnIgnoreEvent(this), m_fnIgnoreController(this), m_fnNoteOff(this),
231          m_fnSetEventMark(this), m_fnDeleteEventMark(this), m_fnByMarks(this),          m_fnSetEventMark(this), m_fnDeleteEventMark(this), m_fnByMarks(this),
232          m_fnChangeVol(this), m_fnChangeTune(this), m_fnChangePan(this),          m_fnChangeVol(this), m_fnChangeTune(this), m_fnChangePan(this),
233          m_fnChangeCutoff(this), m_fnChangeReso(this), m_fnEventStatus(this),          m_fnChangeCutoff(this), m_fnChangeReso(this),  m_fnChangeAttack(this),
234            m_fnChangeDecay(this), m_fnChangeRelease(this), m_fnEventStatus(this),
235          m_fnWait2(this), m_fnStopWait(this),          m_fnWait2(this), m_fnStopWait(this),
236          m_varEngineUptime(this), m_varCallbackID(this)          m_varEngineUptime(this), m_varCallbackID(this)
237      {      {
# Line 355  namespace LinuxSampler { Line 356  namespace LinuxSampler {
356          else if (name == "change_pan") return &m_fnChangePan;          else if (name == "change_pan") return &m_fnChangePan;
357          else if (name == "change_cutoff") return &m_fnChangeCutoff;          else if (name == "change_cutoff") return &m_fnChangeCutoff;
358          else if (name == "change_reso") return &m_fnChangeReso;          else if (name == "change_reso") return &m_fnChangeReso;
359            else if (name == "change_attack") return &m_fnChangeAttack;
360            else if (name == "change_decay") return &m_fnChangeDecay;
361            else if (name == "change_release") return &m_fnChangeRelease;
362          else if (name == "event_status") return &m_fnEventStatus;          else if (name == "event_status") return &m_fnEventStatus;
363          else if (name == "wait") return &m_fnWait2; // override wait() core implementation          else if (name == "wait") return &m_fnWait2; // override wait() core implementation
364          else if (name == "stop_wait") return &m_fnStopWait;          else if (name == "stop_wait") return &m_fnStopWait;

Legend:
Removed from v.2952  
changed lines
  Added in v.2953

  ViewVC Help
Powered by ViewVC