/[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 3214 by schoenebeck, Thu May 25 14:46:47 2017 UTC revision 3246 by schoenebeck, Sun May 28 22:22:56 2017 UTC
# Line 13  Line 13 
13  #include "../../common/global_private.h"  #include "../../common/global_private.h"
14  #include "AbstractInstrumentManager.h"  #include "AbstractInstrumentManager.h"
15  #include "MidiKeyboardManager.h"  #include "MidiKeyboardManager.h"
16    #include "Fade.h"
17    
18  namespace LinuxSampler {  namespace LinuxSampler {
19    
# Line 239  namespace LinuxSampler { Line 240  namespace LinuxSampler {
240          m_fnChangeNote(this), m_fnChangeVelo(this),          m_fnChangeNote(this), m_fnChangeVelo(this),
241          m_fnEventStatus(this), m_fnWait2(this), m_fnStopWait(this),          m_fnEventStatus(this), m_fnWait2(this), m_fnStopWait(this),
242          m_fnFadeIn(this), m_fnFadeOut(this),          m_fnFadeIn(this), m_fnFadeOut(this),
243            m_fnChangeVolCurve(this), m_fnChangeTuneCurve(this),
244          m_fnGetEventPar(this), m_fnSetEventPar(this),          m_fnGetEventPar(this), m_fnSetEventPar(this),
245          m_varEngineUptime(this), m_varCallbackID(this), m_varAllEvents(this)          m_varEngineUptime(this), m_varCallbackID(this), m_varAllEvents(this)
246      {      {
# Line 344  namespace LinuxSampler { Line 346  namespace LinuxSampler {
346          m["$EVENT_PAR_1"] = EVENT_PAR_1;          m["$EVENT_PAR_1"] = EVENT_PAR_1;
347          m["$EVENT_PAR_2"] = EVENT_PAR_2;          m["$EVENT_PAR_2"] = EVENT_PAR_2;
348          m["$EVENT_PAR_3"] = EVENT_PAR_3;          m["$EVENT_PAR_3"] = EVENT_PAR_3;
349            m["$NKSP_LINEAR"] = FADE_CURVE_LINEAR;
350            m["$NKSP_EASE_IN_EASE_OUT"] = FADE_CURVE_EASE_IN_EASE_OUT;
351    
352          return m;          return m;
353      }      }
# Line 387  namespace LinuxSampler { Line 391  namespace LinuxSampler {
391          else if (name == "change_pitch_lfo_freq") return &m_fnChangePitchLFOFreq;          else if (name == "change_pitch_lfo_freq") return &m_fnChangePitchLFOFreq;
392          else if (name == "fade_in") return &m_fnFadeIn;          else if (name == "fade_in") return &m_fnFadeIn;
393          else if (name == "fade_out") return &m_fnFadeOut;          else if (name == "fade_out") return &m_fnFadeOut;
394            else if (name == "change_vol_curve") return &m_fnChangeVolCurve;
395            else if (name == "change_tune_curve") return &m_fnChangeTuneCurve;
396          else if (name == "get_event_par") return &m_fnGetEventPar;          else if (name == "get_event_par") return &m_fnGetEventPar;
397          else if (name == "set_event_par") return &m_fnSetEventPar;          else if (name == "set_event_par") return &m_fnSetEventPar;
398          else if (name == "event_status") return &m_fnEventStatus;          else if (name == "event_status") return &m_fnEventStatus;

Legend:
Removed from v.3214  
changed lines
  Added in v.3246

  ViewVC Help
Powered by ViewVC