/[svn]/linuxsampler/trunk/src/network/lscp.y
ViewVC logotype

Annotation of /linuxsampler/trunk/src/network/lscp.y

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1135 - (hide annotations) (download)
Thu Mar 29 09:40:45 2007 UTC (17 years ago) by iliev
File size: 48210 byte(s)
* Added new LSCP command - SET FX_SEND NAME
* The default map is now the first available map

1 schoenebeck 35 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5 schoenebeck 56 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 1047 * Copyright (C) 2005 - 2007 Christian Schoenebeck *
7 schoenebeck 35 * *
8     * This program is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24 schoenebeck 947 /* CAUTION: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
25     /* */
26     /* don't forget to run 'make parser' after you changed this file, */
27     /* otherwise the parser will not be regenerated ! */
28     /* */
29     /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
30 schoenebeck 210
31 schoenebeck 35 %{
32    
33     #include "lscpparser.h"
34     #include "lscpserver.h"
35 senkov 170 #include "lscpevent.h"
36 schoenebeck 35
37     // to save us typing work in the rules action definitions
38     #define LSCPSERVER ((yyparse_param_t*) yyparse_param)->pServer
39    
40 schoenebeck 219 // clears input buffer
41 schoenebeck 35 void restart(yyparse_param_t* pparam, int& yychar);
42     #define RESTART restart((yyparse_param_t*) YYPARSE_PARAM, yychar)
43    
44     // we provide our own version of yyerror() so we don't have to link against the yacc library
45     void yyerror(const char* s);
46    
47 schoenebeck 219 static char buf[1024]; // input buffer to feed the parser with new characters
48     static int bytes = 0; // current number of characters in the input buffer
49     static int ptr = 0; // current position in the input buffer
50    
51     // external reference to the function which actually reads from the socket
52     extern int GetLSCPCommand( void *buf, int max_size);
53    
54     // custom scanner function which reads from the socket
55     int yylex(YYSTYPE* yylval) {
56     // check if we have to read new characters
57     if (ptr >= bytes) {
58     bytes = GetLSCPCommand(buf, 1023);
59     ptr = 0;
60     if (bytes < 0) {
61     bytes = 0;
62     return 0;
63     }
64     }
65     return (int) buf[ptr++];
66     }
67    
68 schoenebeck 35 %}
69    
70     // reentrant parser
71     %pure_parser
72    
73 schoenebeck 219 %type <Char> char digit
74     %type <Dotnum> dotnum volume_value boolean
75 schoenebeck 1001 %type <Number> number sampler_channel instrument_index fx_send_id audio_channel_index device_index midi_input_channel_index midi_input_port_index midi_map midi_bank midi_prog midi_ctrl
76     %type <String> string text stringval digits param_val_list param_val filename map_name entry_name fx_send_name engine_name command add_instruction create_instruction destroy_instruction get_instruction list_instruction load_instruction set_chan_instruction load_instr_args load_engine_args audio_output_type_name midi_input_type_name remove_instruction unmap_instruction set_instruction subscribe_event unsubscribe_event map_instruction reset_instruction clear_instruction
77 schoenebeck 35 %type <FillResponse> buffer_size_type
78 schoenebeck 123 %type <KeyValList> key_val_list
79 schoenebeck 947 %type <LoadMode> instr_load_mode
80 schoenebeck 1047 %type <Bool> modal_arg
81 schoenebeck 35
82     %start input
83    
84     %%
85    
86     //TODO: return more meaningful error messages
87    
88 schoenebeck 573 /*
89 schoenebeck 973 The LSCP specification document input file (Documentation/lscp.xml) is
90     automatically updated with this file using the scripts/update_grammar.pl
91     script. Do not modify or delete the GRAMMAR_BNF_BEGIN and GRAMMAR_BNF_END
92     lines !
93 schoenebeck 573 */
94    
95     // GRAMMAR_BNF_BEGIN - do NOT delete or modify this line !!!
96    
97 senkov 170 input : line LF
98 schoenebeck 219 | line CR LF
99     ;
100 schoenebeck 35
101 senkov 170 line : /* epsilon (empty line ignored) */ { return LSCP_DONE; }
102     | comment { return LSCP_DONE; }
103     | command { LSCPSERVER->AnswerClient($1); return LSCP_DONE; }
104 schoenebeck 555 | error { LSCPSERVER->AnswerClient("ERR:0:Unknown command.\r\n"); RESTART; return LSCP_SYNTAX_ERROR; }
105 schoenebeck 35 ;
106    
107 schoenebeck 219 comment : '#'
108     | comment '#'
109 schoenebeck 111 | comment SP
110 schoenebeck 219 | comment number
111 schoenebeck 111 | comment string
112     ;
113    
114 schoenebeck 973 command : ADD SP add_instruction { $$ = $3; }
115 schoenebeck 947 | MAP SP map_instruction { $$ = $3; }
116     | UNMAP SP unmap_instruction { $$ = $3; }
117 schoenebeck 219 | GET SP get_instruction { $$ = $3; }
118     | CREATE SP create_instruction { $$ = $3; }
119     | DESTROY SP destroy_instruction { $$ = $3; }
120     | LIST SP list_instruction { $$ = $3; }
121     | LOAD SP load_instruction { $$ = $3; }
122 schoenebeck 947 | REMOVE SP remove_instruction { $$ = $3; }
123 schoenebeck 219 | SET SP set_instruction { $$ = $3; }
124     | SUBSCRIBE SP subscribe_event { $$ = $3; }
125     | UNSUBSCRIBE SP unsubscribe_event { $$ = $3; }
126 senkov 397 | SELECT SP text { $$ = LSCPSERVER->QueryDatabase($3); }
127 schoenebeck 947 | RESET SP reset_instruction { $$ = $3; }
128     | CLEAR SP clear_instruction { $$ = $3; }
129 schoenebeck 219 | RESET { $$ = LSCPSERVER->ResetSampler(); }
130     | QUIT { LSCPSERVER->AnswerClient("Bye!\r\n"); return LSCP_QUIT; }
131 schoenebeck 35 ;
132    
133 schoenebeck 973 add_instruction : CHANNEL { $$ = LSCPSERVER->AddChannel(); }
134     | MIDI_INSTRUMENT_MAP { $$ = LSCPSERVER->AddMidiInstrumentMap(); }
135     | MIDI_INSTRUMENT_MAP SP map_name { $$ = LSCPSERVER->AddMidiInstrumentMap($3); }
136     ;
137    
138 iliev 981 subscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_count); }
139     | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_info); }
140     | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_count); }
141     | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_info); }
142     | CHANNEL_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_count); }
143     | VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_voice_count); }
144     | STREAM_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_stream_count); }
145     | BUFFER_FILL { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_buffer_fill); }
146     | CHANNEL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_info); }
147 iliev 1108 | FX_SEND_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_count); }
148     | FX_SEND_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_info); }
149 iliev 981 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
150     | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
151     | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_count); }
152     | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_info); }
153     | MISCELLANEOUS { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_misc); }
154     | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_voice_count); }
155 iliev 1108 | GLOBAL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_global_info); }
156 senkov 135 ;
157    
158 iliev 981 unsubscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_count); }
159     | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_info); }
160     | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_count); }
161     | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_info); }
162     | CHANNEL_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_count); }
163     | VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_voice_count); }
164     | STREAM_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_stream_count); }
165     | BUFFER_FILL { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_buffer_fill); }
166     | CHANNEL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_info); }
167 iliev 1108 | FX_SEND_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_count); }
168     | FX_SEND_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_info); }
169 iliev 981 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
170     | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
171     | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_count); }
172     | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_info); }
173     | MISCELLANEOUS { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_misc); }
174     | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_voice_count); }
175 iliev 1108 | GLOBAL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_global_info); }
176 senkov 135 ;
177    
178 schoenebeck 1047 map_instruction : MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,MidiInstrumentMapper::VOID,"",$3); }
179     | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,$18,"",$3); }
180     | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP entry_name { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,MidiInstrumentMapper::VOID,$18,$3); }
181     | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode SP entry_name { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,$18,$20,$3); }
182 schoenebeck 947 ;
183    
184 schoenebeck 973 unmap_instruction : MIDI_INSTRUMENT SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->RemoveMIDIInstrumentMapping($3,$5,$7); }
185 schoenebeck 947 ;
186    
187 schoenebeck 973 remove_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->RemoveChannel($3); }
188     | MIDI_INSTRUMENT_MAP SP midi_map { $$ = LSCPSERVER->RemoveMidiInstrumentMap($3); }
189     | MIDI_INSTRUMENT_MAP SP ALL { $$ = LSCPSERVER->RemoveAllMidiInstrumentMaps(); }
190 schoenebeck 947 ;
191    
192 schoenebeck 219 get_instruction : AVAILABLE_ENGINES { $$ = LSCPSERVER->GetAvailableEngines(); }
193     | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableMidiInputDrivers(); }
194     | MIDI_INPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetMidiInputDriverInfo($5); }
195     | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7); }
196     | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7, $9); }
197     | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableAudioOutputDrivers(); }
198     | AUDIO_OUTPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetAudioOutputDriverInfo($5); }
199     | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7); }
200     | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7, $9); }
201     | AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDeviceCount(); }
202     | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDeviceCount(); }
203     | AUDIO_OUTPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetAudioOutputDeviceInfo($5); }
204     | MIDI_INPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetMidiInputDeviceInfo($5); }
205     | MIDI_INPUT_PORT SP INFO SP number SP number { $$ = LSCPSERVER->GetMidiInputPortInfo($5, $7); }
206     | MIDI_INPUT_PORT_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetMidiInputPortParameterInfo($5, $7, $9); }
207     | AUDIO_OUTPUT_CHANNEL SP INFO SP number SP number { $$ = LSCPSERVER->GetAudioOutputChannelInfo($5, $7); }
208     | AUDIO_OUTPUT_CHANNEL_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetAudioOutputChannelParameterInfo($5, $7, $9); }
209     | CHANNELS { $$ = LSCPSERVER->GetChannels(); }
210     | CHANNEL SP INFO SP sampler_channel { $$ = LSCPSERVER->GetChannelInfo($5); }
211     | CHANNEL SP BUFFER_FILL SP buffer_size_type SP sampler_channel { $$ = LSCPSERVER->GetBufferFill($5, $7); }
212     | CHANNEL SP STREAM_COUNT SP sampler_channel { $$ = LSCPSERVER->GetStreamCount($5); }
213     | CHANNEL SP VOICE_COUNT SP sampler_channel { $$ = LSCPSERVER->GetVoiceCount($5); }
214     | ENGINE SP INFO SP engine_name { $$ = LSCPSERVER->GetEngineInfo($5); }
215 schoenebeck 563 | SERVER SP INFO { $$ = LSCPSERVER->GetServerInfo(); }
216 iliev 778 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->GetTotalVoiceCount(); }
217     | TOTAL_VOICE_COUNT_MAX { $$ = LSCPSERVER->GetTotalVoiceCountMax(); }
218 schoenebeck 973 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMappings($3); }
219     | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->GetAllMidiInstrumentMappings(); }
220     | MIDI_INSTRUMENT SP INFO SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->GetMidiInstrumentMapping($5,$7,$9); }
221     | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->GetMidiInstrumentMaps(); }
222     | MIDI_INSTRUMENT_MAP SP INFO SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMap($5); }
223 schoenebeck 1001 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->GetFxSends($3); }
224     | FX_SEND SP INFO SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->GetFxSendInfo($5,$7); }
225 schoenebeck 1005 | VOLUME { $$ = LSCPSERVER->GetGlobalVolume(); }
226 schoenebeck 35 ;
227    
228 schoenebeck 483 set_instruction : AUDIO_OUTPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputDeviceParameter($3, $5, $7); }
229     | AUDIO_OUTPUT_CHANNEL_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputChannelParameter($3, $5, $7, $9); }
230     | MIDI_INPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputDeviceParameter($3, $5, $7); }
231     | MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputPortParameter($3, $5, $7, $9); }
232     | CHANNEL SP set_chan_instruction { $$ = $3; }
233 schoenebeck 973 | MIDI_INSTRUMENT_MAP SP NAME SP midi_map SP map_name { $$ = LSCPSERVER->SetMidiInstrumentMapName($5, $7); }
234 iliev 1135 | FX_SEND SP NAME SP sampler_channel SP fx_send_id SP fx_send_name { $$ = LSCPSERVER->SetFxSendName($5,$7,$9); }
235 schoenebeck 1001 | FX_SEND SP AUDIO_OUTPUT_CHANNEL SP sampler_channel SP fx_send_id SP audio_channel_index SP audio_channel_index { $$ = LSCPSERVER->SetFxSendAudioOutputChannel($5,$7,$9,$11); }
236 schoenebeck 1026 | FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl { $$ = LSCPSERVER->SetFxSendMidiController($5,$7,$9); }
237     | FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value { $$ = LSCPSERVER->SetFxSendLevel($5,$7,$9); }
238 schoenebeck 483 | ECHO SP boolean { $$ = LSCPSERVER->SetEcho((yyparse_param_t*) yyparse_param, $3); }
239 schoenebeck 1005 | VOLUME SP volume_value { $$ = LSCPSERVER->SetGlobalVolume($3); }
240 schoenebeck 123 ;
241    
242 schoenebeck 219 create_instruction : AUDIO_OUTPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateAudioOutputDevice($3,$5); }
243     | AUDIO_OUTPUT_DEVICE SP string { $$ = LSCPSERVER->CreateAudioOutputDevice($3); }
244     | MIDI_INPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateMidiInputDevice($3,$5); }
245     | MIDI_INPUT_DEVICE SP string { $$ = LSCPSERVER->CreateMidiInputDevice($3); }
246 schoenebeck 1001 | FX_SEND SP sampler_channel SP midi_ctrl { $$ = LSCPSERVER->CreateFxSend($3,$5); }
247     | FX_SEND SP sampler_channel SP midi_ctrl SP fx_send_name { $$ = LSCPSERVER->CreateFxSend($3,$5,$7); }
248 schoenebeck 123 ;
249    
250 schoenebeck 947 reset_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->ResetChannel($3); }
251     ;
252    
253 schoenebeck 973 clear_instruction : MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ClearMidiInstrumentMappings($3); }
254     | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ClearAllMidiInstrumentMappings(); }
255 schoenebeck 947 ;
256    
257 schoenebeck 219 destroy_instruction : AUDIO_OUTPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyAudioOutputDevice($3); }
258     | MIDI_INPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyMidiInputDevice($3); }
259 schoenebeck 1001 | FX_SEND SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->DestroyFxSend($3,$5); }
260 schoenebeck 123 ;
261    
262 schoenebeck 35 load_instruction : INSTRUMENT SP load_instr_args { $$ = $3; }
263     | ENGINE SP load_engine_args { $$ = $3; }
264     ;
265    
266 schoenebeck 219 set_chan_instruction : AUDIO_OUTPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetAudioOutputDevice($5, $3); }
267     | AUDIO_OUTPUT_CHANNEL SP sampler_channel SP audio_channel_index SP audio_channel_index { $$ = LSCPSERVER->SetAudioOutputChannel($5, $7, $3); }
268     | AUDIO_OUTPUT_TYPE SP sampler_channel SP audio_output_type_name { $$ = LSCPSERVER->SetAudioOutputType($5, $3); }
269     | MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInput($5, $7, $9, $3); }
270     | MIDI_INPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetMIDIInputDevice($5, $3); }
271     | MIDI_INPUT_PORT SP sampler_channel SP midi_input_port_index { $$ = LSCPSERVER->SetMIDIInputPort($5, $3); }
272     | MIDI_INPUT_CHANNEL SP sampler_channel SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInputChannel($5, $3); }
273     | MIDI_INPUT_TYPE SP sampler_channel SP midi_input_type_name { $$ = LSCPSERVER->SetMIDIInputType($5, $3); }
274     | VOLUME SP sampler_channel SP volume_value { $$ = LSCPSERVER->SetVolume($5, $3); }
275 schoenebeck 705 | MUTE SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelMute($5, $3); }
276     | SOLO SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelSolo($5, $3); }
277 schoenebeck 973 | MIDI_INSTRUMENT_MAP SP sampler_channel SP midi_map { $$ = LSCPSERVER->SetChannelMap($3, $5); }
278     | MIDI_INSTRUMENT_MAP SP sampler_channel SP NONE { $$ = LSCPSERVER->SetChannelMap($3, -1); }
279     | MIDI_INSTRUMENT_MAP SP sampler_channel SP DEFAULT { $$ = LSCPSERVER->SetChannelMap($3, -2); }
280 schoenebeck 35 ;
281    
282 schoenebeck 1047 modal_arg : /* epsilon (empty argument) */ { $$ = true; }
283     | NON_MODAL SP { $$ = false; }
284     ;
285    
286 schoenebeck 483 key_val_list : string '=' param_val_list { $$[$1] = $3; }
287     | key_val_list SP string '=' param_val_list { $$ = $1; $$[$3] = $5; }
288 senkov 135 ;
289 schoenebeck 123
290 schoenebeck 35 buffer_size_type : BYTES { $$ = fill_response_bytes; }
291     | PERCENTAGE { $$ = fill_response_percentage; }
292     ;
293    
294 capela 527 list_instruction : AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDevices(); }
295     | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDevices(); }
296     | CHANNELS { $$ = LSCPSERVER->ListChannels(); }
297     | AVAILABLE_ENGINES { $$ = LSCPSERVER->ListAvailableEngines(); }
298     | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableMidiInputDrivers(); }
299     | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableAudioOutputDrivers(); }
300 schoenebeck 973 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ListMidiInstrumentMappings($3); }
301     | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ListAllMidiInstrumentMappings(); }
302     | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->ListMidiInstrumentMaps(); }
303 schoenebeck 1001 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->ListFxSends($3); }
304 schoenebeck 123 ;
305    
306 schoenebeck 219 load_instr_args : filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($1, $3, $5); }
307     | NON_MODAL SP filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($3, $5, $7, true); }
308 schoenebeck 35 ;
309    
310 schoenebeck 411 load_engine_args : engine_name SP sampler_channel { $$ = LSCPSERVER->SetEngineType($1, $3); }
311 schoenebeck 35 ;
312    
313 schoenebeck 947 instr_load_mode : ON_DEMAND { $$ = MidiInstrumentMapper::ON_DEMAND; }
314     | ON_DEMAND_HOLD { $$ = MidiInstrumentMapper::ON_DEMAND_HOLD; }
315     | PERSISTENT { $$ = MidiInstrumentMapper::PERSISTENT; }
316     ;
317    
318 schoenebeck 219 device_index : number
319     ;
320    
321     audio_channel_index : number
322     ;
323    
324     audio_output_type_name : string
325     ;
326    
327     midi_input_port_index : number
328     ;
329    
330     midi_input_channel_index : number
331 schoenebeck 274 | ALL { $$ = 16; }
332 schoenebeck 219 ;
333    
334     midi_input_type_name : string
335     ;
336    
337 schoenebeck 973 midi_map : number
338 schoenebeck 947 ;
339    
340 schoenebeck 973 midi_bank : number
341 schoenebeck 947 ;
342    
343     midi_prog : number
344     ;
345    
346 schoenebeck 1001 midi_ctrl : number
347     ;
348    
349 schoenebeck 219 volume_value : dotnum
350     | number { $$ = $1; }
351     ;
352    
353     sampler_channel : number
354     ;
355    
356     instrument_index : number
357     ;
358    
359 schoenebeck 1001 fx_send_id : number
360     ;
361    
362 schoenebeck 219 engine_name : string
363     ;
364    
365     filename : stringval
366     ;
367    
368 schoenebeck 973 map_name : stringval
369     ;
370    
371 schoenebeck 947 entry_name : stringval
372     ;
373    
374 schoenebeck 1001 fx_send_name : stringval
375     ;
376    
377 schoenebeck 483 param_val_list : param_val
378     | param_val_list','param_val { $$ = $1 + "," + $3; }
379     ;
380    
381 schoenebeck 219 param_val : string
382 schoenebeck 826 | stringval
383 schoenebeck 483 | number { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); }
384     | dotnum { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); }
385 schoenebeck 219 ;
386    
387 schoenebeck 573 // GRAMMAR_BNF_END - do NOT delete or modify this line !!!
388 schoenebeck 219
389 schoenebeck 573
390 schoenebeck 219 // atomic variable symbol rules
391    
392     boolean : number { $$ = $1; }
393     | string { $$ = -1; }
394 capela 159 ;
395    
396 schoenebeck 219 string : char { std::string s; s = $1; $$ = s; }
397     | string char { $$ = $1 + $2; }
398 capela 159 ;
399    
400 schoenebeck 225 dotnum : digits '.' digits { $$ = atof(String($1 + "." + $3).c_str()); }
401 schoenebeck 219 | '+' digits '.' digits { String s = "+"; s += $2; s += "."; s += $4; $$ = atof(s.c_str()); }
402     | '-' digits '.' digits { $$ = atof(String("-" + $2 + "." + $4).c_str()); }
403 capela 143 ;
404    
405 schoenebeck 219
406     digits : digit { $$ = $1; }
407     | digits digit { $$ = $1 + $2; }
408 senkov 155 ;
409    
410 schoenebeck 219 digit : '0' { $$ = '0'; }
411     | '1' { $$ = '1'; }
412     | '2' { $$ = '2'; }
413     | '3' { $$ = '3'; }
414     | '4' { $$ = '4'; }
415     | '5' { $$ = '5'; }
416     | '6' { $$ = '6'; }
417     | '7' { $$ = '7'; }
418     | '8' { $$ = '8'; }
419     | '9' { $$ = '9'; }
420 senkov 155 ;
421    
422 schoenebeck 219 number : digit { $$ = atoi(String(1, $1).c_str()); }
423     | '1' digits { $$ = atoi(String(String("1") + $2).c_str()); }
424     | '2' digits { $$ = atoi(String(String("2") + $2).c_str()); }
425     | '3' digits { $$ = atoi(String(String("3") + $2).c_str()); }
426     | '4' digits { $$ = atoi(String(String("4") + $2).c_str()); }
427     | '5' digits { $$ = atoi(String(String("5") + $2).c_str()); }
428     | '6' digits { $$ = atoi(String(String("6") + $2).c_str()); }
429     | '7' digits { $$ = atoi(String(String("7") + $2).c_str()); }
430     | '8' digits { $$ = atoi(String(String("8") + $2).c_str()); }
431     | '9' digits { $$ = atoi(String(String("9") + $2).c_str()); }
432    
433     char : 'A' { $$ = 'A'; } | 'B' { $$ = 'B'; } | 'C' { $$ = 'C'; } | 'D' { $$ = 'D'; } | 'E' { $$ = 'E'; } | 'F' { $$ = 'F'; } | 'G' { $$ = 'G'; } | 'H' { $$ = 'H'; } | 'I' { $$ = 'I'; } | 'J' { $$ = 'J'; } | 'K' { $$ = 'K'; } | 'L' { $$ = 'L'; } | 'M' { $$ = 'M'; } | 'N' { $$ = 'N'; } | 'O' { $$ = 'O'; } | 'P' { $$ = 'P'; } | 'Q' { $$ = 'Q'; } | 'R' { $$ = 'R'; } | 'S' { $$ = 'S'; } | 'T' { $$ = 'T'; } | 'U' { $$ = 'U'; } | 'V' { $$ = 'V'; } | 'W' { $$ = 'W'; } | 'X' { $$ = 'X'; } | 'Y' { $$ = 'Y'; } | 'Z' { $$ = 'Z'; }
434     | 'a' { $$ = 'a'; } | 'b' { $$ = 'b'; } | 'c' { $$ = 'c'; } | 'd' { $$ = 'd'; } | 'e' { $$ = 'e'; } | 'f' { $$ = 'f'; } | 'g' { $$ = 'g'; } | 'h' { $$ = 'h'; } | 'i' { $$ = 'i'; } | 'j' { $$ = 'j'; } | 'k' { $$ = 'k'; } | 'l' { $$ = 'l'; } | 'm' { $$ = 'm'; } | 'n' { $$ = 'n'; } | 'o' { $$ = 'o'; } | 'p' { $$ = 'p'; } | 'q' { $$ = 'q'; } | 'r' { $$ = 'r'; } | 's' { $$ = 's'; } | 't' { $$ = 't'; } | 'u' { $$ = 'u'; } | 'v' { $$ = 'v'; } | 'w' { $$ = 'w'; } | 'x' { $$ = 'x'; } | 'y' { $$ = 'y'; } | 'z' { $$ = 'z'; }
435     | '0' { $$ = '0'; } | '1' { $$ = '1'; } | '2' { $$ = '2'; } | '3' { $$ = '3'; } | '4' { $$ = '4'; } | '5' { $$ = '5'; } | '6' { $$ = '6'; } | '7' { $$ = '7'; } | '8' { $$ = '8'; } | '9' { $$ = '9'; }
436 schoenebeck 226 | '!' { $$ = '!'; } | '#' { $$ = '#'; } | '$' { $$ = '$'; } | '%' { $$ = '%'; } | '&' { $$ = '&'; } | '(' { $$ = '('; } | ')' { $$ = ')'; } | '*' { $$ = '*'; } | '+' { $$ = '+'; } | '-' { $$ = '-'; } | '.' { $$ = '.'; } | ',' { $$ = ','; } | '/' { $$ = '/'; }
437 schoenebeck 219 | ':' { $$ = ':'; } | ';' { $$ = ';'; } | '<' { $$ = '<'; } | '=' { $$ = '='; } | '>' { $$ = '>'; } | '?' { $$ = '?'; } | '@' { $$ = '@'; }
438     | '[' { $$ = '['; } | '\\' { $$ = '\\'; } | ']' { $$ = ']'; } | '^' { $$ = '^'; } | '_' { $$ = '_'; }
439     | '{' { $$ = '{'; } | '|' { $$ = '|'; } | '}' { $$ = '}'; } | '~' { $$ = '~'; }
440     | '\200' { $$ = '\200'; } | '\201' { $$ = '\201'; } | '\202' { $$ = '\202'; }
441     | '\203' { $$ = '\203'; } | '\204' { $$ = '\204'; } | '\205' { $$ = '\205'; }
442     | '\206' { $$ = '\206'; } | '\207' { $$ = '\207'; } | '\210' { $$ = '\210'; }
443     | '\211' { $$ = '\211'; } | '\212' { $$ = '\212'; } | '\213' { $$ = '\213'; }
444     | '\214' { $$ = '\214'; } | '\215' { $$ = '\215'; } | '\216' { $$ = '\216'; }
445     | '\217' { $$ = '\217'; } | '\220' { $$ = '\220'; } | '\221' { $$ = '\221'; }
446     | '\222' { $$ = '\222'; } | '\223' { $$ = '\223'; } | '\224' { $$ = '\224'; }
447     | '\225' { $$ = '\225'; } | '\226' { $$ = '\226'; } | '\227' { $$ = '\227'; }
448     | '\230' { $$ = '\230'; } | '\231' { $$ = '\231'; } | '\232' { $$ = '\232'; }
449     | '\233' { $$ = '\233'; } | '\234' { $$ = '\234'; } | '\235' { $$ = '\235'; }
450     | '\236' { $$ = '\236'; } | '\237' { $$ = '\237'; } | '\240' { $$ = '\240'; }
451     | '\241' { $$ = '\241'; } | '\242' { $$ = '\242'; } | '\243' { $$ = '\243'; }
452     | '\244' { $$ = '\244'; } | '\245' { $$ = '\245'; } | '\246' { $$ = '\246'; }
453     | '\247' { $$ = '\247'; } | '\250' { $$ = '\250'; } | '\251' { $$ = '\251'; }
454     | '\252' { $$ = '\252'; } | '\253' { $$ = '\253'; } | '\254' { $$ = '\254'; }
455     | '\255' { $$ = '\255'; } | '\256' { $$ = '\256'; } | '\257' { $$ = '\257'; }
456     | '\260' { $$ = '\260'; } | '\261' { $$ = '\261'; } | '\262' { $$ = '\262'; }
457     | '\263' { $$ = '\263'; } | '\264' { $$ = '\264'; } | '\265' { $$ = '\265'; }
458     | '\266' { $$ = '\266'; } | '\267' { $$ = '\267'; } | '\270' { $$ = '\270'; }
459     | '\271' { $$ = '\271'; } | '\272' { $$ = '\272'; } | '\273' { $$ = '\273'; }
460     | '\274' { $$ = '\274'; } | '\275' { $$ = '\275'; } | '\276' { $$ = '\276'; }
461     | '\277' { $$ = '\277'; } | '\300' { $$ = '\300'; } | '\301' { $$ = '\301'; }
462     | '\302' { $$ = '\302'; } | '\303' { $$ = '\303'; } | '\304' { $$ = '\304'; }
463     | '\305' { $$ = '\305'; } | '\306' { $$ = '\306'; } | '\307' { $$ = '\307'; }
464     | '\310' { $$ = '\310'; } | '\311' { $$ = '\311'; } | '\312' { $$ = '\312'; }
465     | '\313' { $$ = '\313'; } | '\314' { $$ = '\314'; } | '\315' { $$ = '\315'; }
466     | '\316' { $$ = '\316'; } | '\317' { $$ = '\317'; } | '\320' { $$ = '\320'; }
467     | '\321' { $$ = '\321'; } | '\322' { $$ = '\322'; } | '\323' { $$ = '\323'; }
468     | '\324' { $$ = '\324'; } | '\325' { $$ = '\325'; } | '\326' { $$ = '\326'; }
469     | '\327' { $$ = '\327'; } | '\330' { $$ = '\330'; } | '\331' { $$ = '\331'; }
470     | '\332' { $$ = '\332'; } | '\333' { $$ = '\333'; } | '\334' { $$ = '\334'; }
471     | '\335' { $$ = '\335'; } | '\336' { $$ = '\336'; } | '\337' { $$ = '\337'; }
472     | '\340' { $$ = '\340'; } | '\341' { $$ = '\341'; } | '\342' { $$ = '\342'; }
473     | '\343' { $$ = '\343'; } | '\344' { $$ = '\344'; } | '\345' { $$ = '\345'; }
474     | '\346' { $$ = '\346'; } | '\347' { $$ = '\347'; } | '\350' { $$ = '\350'; }
475     | '\351' { $$ = '\351'; } | '\352' { $$ = '\352'; } | '\353' { $$ = '\353'; }
476     | '\354' { $$ = '\354'; } | '\355' { $$ = '\355'; } | '\356' { $$ = '\356'; }
477     | '\357' { $$ = '\357'; } | '\360' { $$ = '\360'; } | '\361' { $$ = '\361'; }
478     | '\362' { $$ = '\362'; } | '\363' { $$ = '\363'; } | '\364' { $$ = '\364'; }
479     | '\365' { $$ = '\365'; } | '\366' { $$ = '\366'; } | '\367' { $$ = '\367'; }
480     | '\370' { $$ = '\370'; } | '\371' { $$ = '\371'; } | '\372' { $$ = '\372'; }
481     | '\373' { $$ = '\373'; } | '\374' { $$ = '\374'; } | '\375' { $$ = '\375'; }
482     | '\376' { $$ = '\376'; } | '\377' { $$ = '\377'; }
483 senkov 155 ;
484    
485 schoenebeck 221 text : SP { $$ = " "; }
486     | string
487     | text SP { $$ = $1 + " "; }
488     | text string { $$ = $1 + $2; }
489 schoenebeck 35 ;
490    
491 schoenebeck 225 stringval : '\'' text '\'' { $$ = $2; }
492     | '\"' text '\"' { $$ = $2; }
493 schoenebeck 221 ;
494 schoenebeck 219
495 schoenebeck 221
496 schoenebeck 219 // rules which are more or less just terminal symbols
497    
498     SP : ' '
499 schoenebeck 35 ;
500    
501 schoenebeck 219 LF : '\n'
502 schoenebeck 35 ;
503    
504 schoenebeck 219 CR : '\r'
505 schoenebeck 35 ;
506    
507 schoenebeck 219 ADD : 'A''D''D'
508 schoenebeck 35 ;
509    
510 schoenebeck 219 GET : 'G''E''T'
511 schoenebeck 35 ;
512    
513 schoenebeck 947 MAP : 'M''A''P'
514     ;
515    
516     UNMAP : 'U''N''M''A''P'
517     ;
518    
519     CLEAR : 'C''L''E''A''R'
520     ;
521    
522 schoenebeck 219 CREATE : 'C''R''E''A''T''E'
523 schoenebeck 35 ;
524    
525 schoenebeck 219 DESTROY : 'D''E''S''T''R''O''Y'
526 schoenebeck 210 ;
527    
528 schoenebeck 219 LIST : 'L''I''S''T'
529 schoenebeck 35 ;
530    
531 schoenebeck 219 LOAD : 'L''O''A''D'
532     ;
533    
534 schoenebeck 228 ALL : 'A''L''L'
535     ;
536    
537 schoenebeck 973 NONE : 'N''O''N''E'
538     ;
539    
540     DEFAULT : 'D''E''F''A''U''L''T'
541     ;
542    
543 schoenebeck 219 NON_MODAL : 'N''O''N''_''M''O''D''A''L'
544     ;
545    
546     REMOVE : 'R''E''M''O''V''E'
547     ;
548    
549     SET : 'S''E''T'
550     ;
551    
552     SUBSCRIBE : 'S''U''B''S''C''R''I''B''E'
553     ;
554    
555     UNSUBSCRIBE : 'U''N''S''U''B''S''C''R''I''B''E'
556     ;
557    
558 senkov 397 SELECT : 'S''E''L''E''C''T'
559     ;
560    
561 schoenebeck 219 CHANNEL : 'C''H''A''N''N''E''L'
562     ;
563    
564     AVAILABLE_ENGINES : 'A''V''A''I''L''A''B''L''E''_''E''N''G''I''N''E''S'
565     ;
566    
567     AVAILABLE_AUDIO_OUTPUT_DRIVERS : 'A''V''A''I''L''A''B''L''E''_''A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R''S'
568     ;
569    
570     CHANNELS : 'C''H''A''N''N''E''L''S'
571     ;
572    
573     INFO : 'I''N''F''O'
574     ;
575    
576 iliev 981 AUDIO_OUTPUT_DEVICE_COUNT : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''C''O''U''N''T'
577     ;
578    
579     AUDIO_OUTPUT_DEVICE_INFO : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''I''N''F''O'
580     ;
581    
582     MIDI_INPUT_DEVICE_COUNT : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''C''O''U''N''T'
583     ;
584    
585     MIDI_INPUT_DEVICE_INFO : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''I''N''F''O'
586     ;
587    
588     MIDI_INSTRUMENT_MAP_COUNT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''_''C''O''U''N''T'
589     ;
590    
591     MIDI_INSTRUMENT_MAP_INFO : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''_''I''N''F''O'
592     ;
593    
594     MIDI_INSTRUMENT_COUNT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''C''O''U''N''T'
595     ;
596    
597     MIDI_INSTRUMENT_INFO : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''I''N''F''O'
598     ;
599    
600 schoenebeck 556 CHANNEL_COUNT : 'C''H''A''N''N''E''L''_''C''O''U''N''T'
601     ;
602    
603     CHANNEL_INFO : 'C''H''A''N''N''E''L''_''I''N''F''O'
604     ;
605    
606 iliev 1108 FX_SEND_COUNT : 'F''X''_''S''E''N''D''_''C''O''U''N''T'
607     ;
608    
609     FX_SEND_INFO : 'F''X''_''S''E''N''D''_''I''N''F''O'
610     ;
611    
612 schoenebeck 219 BUFFER_FILL : 'B''U''F''F''E''R''_''F''I''L''L'
613     ;
614    
615     STREAM_COUNT : 'S''T''R''E''A''M''_''C''O''U''N''T'
616     ;
617    
618     VOICE_COUNT : 'V''O''I''C''E''_''C''O''U''N''T'
619     ;
620    
621 iliev 778 TOTAL_VOICE_COUNT : 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T'
622     ;
623    
624     TOTAL_VOICE_COUNT_MAX: 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T''_''M''A''X'
625     ;
626    
627 iliev 1108 GLOBAL_INFO : 'G''L''O''B''A''L''_''I''N''F''O'
628     ;
629    
630 schoenebeck 219 INSTRUMENT : 'I''N''S''T''R''U''M''E''N''T'
631     ;
632    
633     ENGINE : 'E' 'N' 'G' 'I' 'N' 'E'
634     ;
635    
636 schoenebeck 947 ON_DEMAND : 'O''N''_''D''E''M''A''N''D'
637     ;
638    
639     ON_DEMAND_HOLD : 'O''N''_''D''E''M''A''N''D''_''H''O''L''D'
640     ;
641    
642     PERSISTENT : 'P''E''R''S''I''S''T''E''N''T'
643     ;
644    
645 schoenebeck 219 AUDIO_OUTPUT_DEVICE_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''P''A''R''A''M''E''T''E''R'
646     ;
647    
648     AUDIO_OUTPUT_DEVICES : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''S'
649     ;
650    
651     AUDIO_OUTPUT_DEVICE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E'
652     ;
653    
654     AUDIO_OUTPUT_DRIVER_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R''_''P''A''R''A''M''E''T''E''R'
655     ;
656    
657     AUDIO_OUTPUT_DRIVER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R'
658     ;
659    
660     AUDIO_OUTPUT_CHANNEL_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''C''H''A''N''N''E''L''_''P''A''R''A''M''E''T''E''R'
661     ;
662    
663     AUDIO_OUTPUT_CHANNEL : 'A''U''D''I''O''_''O''U''T''P''U''T''_''C''H''A''N''N''E''L'
664     ;
665    
666     AUDIO_OUTPUT_TYPE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''T''Y''P''E'
667     ;
668    
669     AVAILABLE_MIDI_INPUT_DRIVERS : 'A''V''A''I''L''A''B''L''E''_''M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R''S'
670     ;
671    
672     MIDI_INPUT_DEVICE_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''P''A''R''A''M''E''T''E''R'
673     ;
674    
675     MIDI_INPUT_PORT_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''P''O''R''T''_''P''A''R''A''M''E''T''E''R'
676     ;
677    
678     MIDI_INPUT_DEVICES : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''S'
679     ;
680    
681     MIDI_INPUT_DEVICE : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E'
682     ;
683    
684     MIDI_INPUT_DRIVER_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R''_''P''A''R''A''M''E''T''E''R'
685     ;
686    
687 schoenebeck 947 MIDI_INSTRUMENT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T'
688     ;
689    
690     MIDI_INSTRUMENTS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''S'
691     ;
692    
693 schoenebeck 973 MIDI_INSTRUMENT_MAP : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P'
694     ;
695    
696     MIDI_INSTRUMENT_MAPS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''S'
697     ;
698    
699 schoenebeck 219 MIDI_INPUT_DRIVER : 'M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R'
700     ;
701    
702     MIDI_INPUT_PORT : 'M''I''D''I''_''I''N''P''U''T''_''P''O''R''T'
703     ;
704    
705     MIDI_INPUT_CHANNEL : 'M''I''D''I''_''I''N''P''U''T''_''C''H''A''N''N''E''L'
706     ;
707    
708     MIDI_INPUT_TYPE : 'M''I''D''I''_''I''N''P''U''T''_''T''Y''P''E'
709     ;
710    
711     MIDI_INPUT : 'M''I''D''I''_''I''N''P''U''T'
712     ;
713    
714 schoenebeck 1026 MIDI_CONTROLLER : 'M''I''D''I''_''C''O''N''T''R''O''L''L''E''R'
715     ;
716    
717 schoenebeck 1001 FX_SEND : 'F''X''_''S''E''N''D'
718     ;
719    
720     FX_SENDS : 'F''X''_''S''E''N''D''S'
721     ;
722    
723 schoenebeck 563 SERVER : 'S''E''R''V''E''R'
724     ;
725    
726 schoenebeck 219 VOLUME : 'V''O''L''U''M''E'
727     ;
728    
729 schoenebeck 1026 LEVEL : 'L''E''V''E''L'
730     ;
731    
732 schoenebeck 705 MUTE : 'M''U''T''E'
733     ;
734    
735     SOLO : 'S''O''L''O'
736     ;
737    
738 schoenebeck 219 BYTES : 'B''Y''T''E''S'
739     ;
740    
741     PERCENTAGE : 'P''E''R''C''E''N''T''A''G''E'
742     ;
743    
744     RESET : 'R''E''S''E''T'
745     ;
746    
747     MISCELLANEOUS : 'M''I''S''C''E''L''L''A''N''E''O''U''S'
748     ;
749    
750 schoenebeck 973 NAME : 'N''A''M''E'
751     ;
752    
753 schoenebeck 219 ECHO : 'E''C''H''O'
754     ;
755    
756     QUIT : 'Q''U''I''T'
757     ;
758    
759 schoenebeck 35 %%
760    
761     /**
762     * Will be called when an error occured (usually syntax error).
763     */
764     void yyerror(const char* s) {
765     dmsg(2,("LSCPParser: %s\n", s));
766     }
767    
768     /**
769 schoenebeck 219 * Clears input buffer.
770 schoenebeck 35 */
771     void restart(yyparse_param_t* pparam, int& yychar) {
772 schoenebeck 219 bytes = 0;
773     ptr = 0;
774 schoenebeck 35 }

  ViewVC Help
Powered by ViewVC