/[svn]/linuxsampler/trunk/src/engines/common/InstrumentScriptVMFunctions.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/engines/common/InstrumentScriptVMFunctions.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2598 - (show annotations) (download) (as text)
Fri Jun 6 12:38:54 2014 UTC (9 years, 10 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 2039 byte(s)
* ScriptVM (WIP): Built-in script function "play_note()" now returns the
  event ID of the triggered note.
* ScriptVM (WIP): Implemented built-in script int variable $EVENT_ID.
* ScriptVM (WIP): Implemented built-in script function "ignore_event()".
* ScriptVM (WIP): Implemented built-in script function
  "ignore_controller()" (accepts one and no argument).
* Bumped version (1.0.0.svn44).

1 /*
2 * Copyright (c) 2014 Christian Schoenebeck
3 *
4 * http://www.linuxsampler.org
5 *
6 * This file is part of LinuxSampler and released under the same terms.
7 * See README file for details.
8 */
9
10 #ifndef LS_INSTRSCRIPTVMFUNCTIONS_H
11 #define LS_INSTRSCRIPTVMFUNCTIONS_H
12
13 #include "../../common/global.h"
14 #include "../../scriptvm/CoreVMFunctions.h"
15
16 namespace LinuxSampler {
17
18 class InstrumentScriptVM;
19
20 class InstrumentScriptVMFunction_play_note : public VMIntResultFunction {
21 public:
22 InstrumentScriptVMFunction_play_note(InstrumentScriptVM* parent);
23 int minRequiredArgs() const { return 1; }
24 int maxAllowedArgs() const { return 4; }
25 bool acceptsArgType(int iArg, ExprType_t type) const { return type == INT_EXPR;}
26 ExprType_t argType(int iArg) const { return INT_EXPR; }
27 VMFnResult* exec(VMFnArgs* args);
28 protected:
29 InstrumentScriptVM* m_vm;
30 };
31
32 class InstrumentScriptVMFunction_ignore_event : public VMEmptyResultFunction {
33 public:
34 InstrumentScriptVMFunction_ignore_event(InstrumentScriptVM* parent);
35 int minRequiredArgs() const { return 1; }
36 int maxAllowedArgs() const { return 1; }
37 bool acceptsArgType(int iArg, ExprType_t type) const { return type == INT_EXPR;}
38 ExprType_t argType(int iArg) const { return INT_EXPR; }
39 VMFnResult* exec(VMFnArgs* args);
40 protected:
41 InstrumentScriptVM* m_vm;
42 };
43
44 class InstrumentScriptVMFunction_ignore_controller : public VMEmptyResultFunction {
45 public:
46 InstrumentScriptVMFunction_ignore_controller(InstrumentScriptVM* parent);
47 int minRequiredArgs() const { return 0; }
48 int maxAllowedArgs() const { return 1; }
49 bool acceptsArgType(int iArg, ExprType_t type) const { return type == INT_EXPR;}
50 ExprType_t argType(int iArg) const { return INT_EXPR; }
51 VMFnResult* exec(VMFnArgs* args);
52 protected:
53 InstrumentScriptVM* m_vm;
54 };
55
56 } // namespace LinuxSampler
57
58 #endif // LS_INSTRSCRIPTVMFUNCTIONS_H

  ViewVC Help
Powered by ViewVC