/[svn]/linuxsampler/trunk/src/network/lscpsymbols.h
ViewVC logotype

Log of /linuxsampler/trunk/src/network/lscpsymbols.h

Parent Directory Parent Directory | Revision Log Revision Log


Sticky Revision:
(Current path doesn't exist after revision 1215)

Revision 984 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Dec 18 10:28:00 2006 UTC (17 years, 4 months ago) by iliev
File length: 1831 byte(s)
Diff to previous 947
- parser and specification update


Revision 947 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 27 21:34:55 2006 UTC (17 years, 4 months ago) by schoenebeck
File length: 1831 byte(s)
Diff to previous 778
* implemented MIDI instrument mapping according to latest LSCP draft


Revision 778 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 23 06:58:26 2005 UTC (18 years, 7 months ago) by iliev
File length: 1359 byte(s)
Diff to previous 397
Added new LSCP commands: GET TOTAL_VOICE_COUNT,
GET TOTAL_VOICE_COUNT_MAX, SUBSCRIBE/UNSUBSCRIBE TOTAL_VOICE_COUNT


Revision 397 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Feb 21 04:28:50 2005 UTC (19 years, 2 months ago) by senkov
File length: 1349 byte(s)
Diff to previous 219
* Added first cut of instrument database query support.


Revision 219 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Aug 17 20:35:04 2004 UTC (19 years, 8 months ago) by schoenebeck
File length: 1356 byte(s)
Diff to previous 210
* completely removed the lex scanner and replaced it by pure yacc rules
  for all terminal symbols (that is command keywords and variables) to
  avoid misunderstandings while parsing (e.g. recognition of command
  keywords in string arguments)
* src/drivers/audio/AudioChannel.cpp: changed channel parameter 'Name' to
 'NAME' as defined in the LSCP documentation


Revision 210 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jul 24 12:33:49 2004 UTC (19 years, 9 months ago) by schoenebeck
File length: 4386 byte(s)
Diff to previous 155
* implemented "SET ECHO" LSCP command


Revision 155 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 28 04:30:11 2004 UTC (19 years, 9 months ago) by senkov
File length: 4345 byte(s)
Diff to previous 143
* Updated parser, lscp server and sampler class for new MIDI_INPUT
* Minor fixes (and major new bugs) here and there
* Consolidated 3 SET CHANNEL MIDI_xxx commands into one:
SET CHANNEL MIDI_INPUT


Revision 143 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 23 18:54:08 2004 UTC (19 years, 10 months ago) by capela
File length: 3799 byte(s)
Diff to previous 141
* SET CHANNEL AUDIO_OUTPUT_TYPE <chan> <driver> command is back!
  creates an audio output device instance of the given driver type
  ('Jack' or 'Alsa') with default parameters if none exists,
  otherwise it just picks the first available device and assign
  it to the intended sampler channel.

* The AudioOutputDevice class get's a new pure virtual method,
  Driver(), which is implemented on both of the existing inherited
  classes, AudioOutputDeviceAlsa and AudioOutputDeviceJack, with
  the sole purpose to return the driver type name as a String
  ('Alsa' and 'Jack', respectively).

* The quoting on the filename argument for the LOAD INSTRUMENT
  command has been made optional; you can have both ways, with
  single quotes or none, keeping compability with older LSCP
  specification.

* An additional sanity check is made on LOAD INSTRUMENT, whether
  the sampler channel has an audio output device assigned, thus
  preventing the server from crashing on instrument file load.

* The GET AUDIO_OUTPUT_DEVICE INFO now includes the missing
  'driver' item, as predicted by the draft protocol document.


Revision 141 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 21 01:21:33 2004 UTC (19 years, 10 months ago) by senkov
File length: 3739 byte(s)
Diff to previous 135
* LOAD INSTRUMENT NON_MODAL


Revision 135 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jun 20 16:01:50 2004 UTC (19 years, 10 months ago) by senkov
File length: 3751 byte(s)
Diff to previous 123
* Update parser to comply with the latest spec


Revision 123 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 14 19:33:16 2004 UTC (19 years, 10 months ago) by schoenebeck
File length: 3606 byte(s)
Diff to previous 111
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP


Revision 111 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jun 5 20:55:50 2004 UTC (19 years, 10 months ago) by schoenebeck
File length: 3058 byte(s)
Diff to previous 35
* LSCP allows now comment lines, that is lines starting with a hash ('#')
  character
* src/engines/gig/Voice.cpp: fixed "SET CHANNEL VOLUME" bug


Revision 35 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Mar 5 13:46:15 2004 UTC (20 years, 1 month ago) by schoenebeck
File length: 3024 byte(s)
* implemented parser for the LinuxSampler control protocol (LSCP) by using
  flex / bison (where src/network/lscp.l is the input file for lex / flex
  and src/network/lscp.y is the input file for yacc / bison), parser and
  scanner can be regenerated by 'make parser'
* implemented LSCP network server (only single threaded so far), LSCP
  server will be launched if LinuxSampler was started with "--server" flag,
  implemented the following LSCP commands so far: "LOAD INSTRUMENT", "GET
  CHANNEL VOICE_COUNT", "GET CHANNEL STREAM_COUNT", "GET CHANNEL
  BUFFER_FILL", "SET CHANNEL VOLUME" and "RESET CHANNEL"
* disk thread now started within the engine


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC