/[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 2948 by schoenebeck, Fri Jul 15 15:29:04 2016 UTC revision 3035 by schoenebeck, Mon Oct 31 12:00:00 2016 UTC
# Line 7  Line 7 
7   * See README file for details.   * See README file for details.
8   */   */
9    
10    #include "../../common/global_private.h"
11  #include "InstrumentScriptVM.h"  #include "InstrumentScriptVM.h"
12  #include "../AbstractEngineChannel.h"  #include "../AbstractEngineChannel.h"
13  #include "../../common/global_private.h"  #include "../../common/global_private.h"
# Line 230  namespace LinuxSampler { Line 231  namespace LinuxSampler {
231          m_fnIgnoreEvent(this), m_fnIgnoreController(this), m_fnNoteOff(this),          m_fnIgnoreEvent(this), m_fnIgnoreController(this), m_fnNoteOff(this),
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_fnEventStatus(this),          m_fnChangeCutoff(this), m_fnChangeReso(this),  m_fnChangeAttack(this),
235            m_fnChangeDecay(this), m_fnChangeRelease(this), m_fnEventStatus(this),
236          m_fnWait2(this), m_fnStopWait(this),          m_fnWait2(this), m_fnStopWait(this),
237          m_varEngineUptime(this), m_varCallbackID(this)          m_varEngineUptime(this), m_varCallbackID(this)
238      {      {
# Line 355  namespace LinuxSampler { Line 357  namespace LinuxSampler {
357          else if (name == "change_pan") return &m_fnChangePan;          else if (name == "change_pan") return &m_fnChangePan;
358          else if (name == "change_cutoff") return &m_fnChangeCutoff;          else if (name == "change_cutoff") return &m_fnChangeCutoff;
359          else if (name == "change_reso") return &m_fnChangeReso;          else if (name == "change_reso") return &m_fnChangeReso;
360            else if (name == "change_attack") return &m_fnChangeAttack;
361            else if (name == "change_decay") return &m_fnChangeDecay;
362            else if (name == "change_release") return &m_fnChangeRelease;
363          else if (name == "event_status") return &m_fnEventStatus;          else if (name == "event_status") return &m_fnEventStatus;
364          else if (name == "wait") return &m_fnWait2; // override wait() core implementation          else if (name == "wait") return &m_fnWait2; // override wait() core implementation
365          else if (name == "stop_wait") return &m_fnStopWait;          else if (name == "stop_wait") return &m_fnStopWait;

Legend:
Removed from v.2948  
changed lines
  Added in v.3035

  ViewVC Help
Powered by ViewVC