Parent Directory
|
Revision Log
Links to HEAD: | (view) (download) (as text) (annotate) |
Sticky Revision: |
NKSP: Cleanup of class inheritance scheme. * scriptvm/tree.h: Mark all relevant classes with C++11 'final' keyword. * scriptvm/tree.h: StringLiteral class has no need for virtually.
NKSP: Introducing floating point support. * NKSP language: Added support for NKSP real number literals and arithmetic operations on them (e.g. "(3.9 + 2.9) / 12.3 - 42.0"). * NKSP language: Added support for NKSP real number (floating point) script variables (declare ~foo := 3.4). * NKSP language: Added support for NKSP real number (floating point) array script variables (declare ?foo[3] := ( 1.1, 2.7, 49.0 )). * NKSP built-in script function "message()" accepts now real number argument as well. * Added built-in NKSP script function "real_to_int()" and its short hand form "int()" for casting from real number to integer in NKSP scripts. * Added built-in NKSP script function "int_to_real()" and its short hand form "real()" for casting from integer to real number in NKSP scripts. * Bumped version (2.1.1.svn6).
NKSP: Added standard units support for numbers and final "!" operator: * NKSP strictness: Variable names, function names and preprocessor condition names must start with a regular character (a-z or A-Z); starting them with a digit or underscore is no longer allowed. * NKSP parser fix: equal comparison operator "=" and not equal comparison operator "#" must only accept integer operands. * NKSP language: Implemented support for standard units like Hertz, seconds, Bel including support for metric unit prefixes; so one can now e.g. conveniently use numbers in scripts like "5us" meaning "5 microseconds", or e.g. "12kHz" meaning "12 kilo Hertz", or e.g. "-14mdB" meaning "minus 14 Millidecibel", or e.g. "28c" meaning "28 cents" (for tuning). * NKSP language: Introduced "final" operator "!" which is specifically intended for synthesis parameter values to denote that the synthesis parameter value is intended to be the "final" value for that synthesis parameter that should explicitly be used by the engine and thus causing the sampler engine to ignore all other modulation sources for the same synthesis parameter (like e.g. LFO, EG); by simply prefixing a value, variable or formula with this new "!" operator the expression is marked as being "final". * Bumped version (2.1.1.svn4).
* NKSP: Introducing 64 bit support for NKSP integer scripts variables (declare $foo). * Require C++11 compiler support. * Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used for checking in configure for C++11 support (as mandatory requirement) and automatically adds compiler argument if required (e.g. -std=C++11). * Bumped version (2.1.1.svn3).
* Added test cases for NKSP core language aspects and core built-in functions. * NKSP: Added method ScriptVM::setExitResultEnabled() which allows to explicitly enable the built-in exit() function to optionally accept one function argument; the value of the passed exit() function argument will then become available by calling VMExecContext::exitResult() after script execution. * Bumped version (2.1.1.svn2).
* Fixed some compiler warnings * Fixed compilation error when cross-compiling to Mac
* NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which can be set to disable all subsequent built-in "message()" function calls on preprocessor level. * Bumped version (2.0.0.svn71).
* NKSP: Added built-in script function "fork()". * NKSP: Added built-in array variable %NKSP_CALLBACK_CHILD_ID[]. * NKSP: Added built-in variable $NKSP_CALLBACK_PARENT_ID. * NKSP: Fixed potential crash when accessing dynamic built-in array variables. * Bumped version (2.0.0.svn65).
* NKSP: Print a time stamp along to each call of built-in function "message()". * ScriptVM API: Added VMParserContext::preprocessorComments() which allows to retrieve all code blocks filtered out by the preprocessor. * Bumped version (2.0.0.svn63).
* NKSP: Implemented built-in script function "abort()" which allows to abort another script handler by passing its callback ID. * Bumped version (2.0.0.svn61).
* NKSP language: Added support for "synchronized .. end synchronized" code blocks. * Bumped version (2.0.0.svn60).
* NKSP language: Added support for user declared const array variables. * NKSP language: Raise parser warning if array variable is accessed with an index that exceeds the array's size. * Bumped version (2.0.0.svn58).
* NKSP: built-in "play_note()" function now accepts -2 for its fourth argument (note duration) which means the life time of the note shall be sticked to the requested note number of argument 1. * NKSP Fix: built-in "play_note()" function now returns 0 as result value if -1 was passed for its fourth argument (note duration) and the respective parent note is already gone. * NKSP: Built-in array variable %KEY_DOWN[] is now a read-only variable. * Built-in variable $EVENT_NOTE is now a read-only variable. * Built-in variable $EVENT_VELOCITY is now a read-only variable. * Bumped version (2.0.0.svn56).
* NKSP Fix: Never suspend "init" event handlers. * NKSP: Implemented built-in script function "array_equal()". * NKSP: Implemented built-in script function "search()". * NKSP: Implemented built-in script function "sort()". * Bumped version (2.0.0.svn52).
- Fixed compilation error with some compilers.
* NKSP: Fixed polyphonic variables not being reset to zero after usage. * Bumped version (2.0.0.svn48).
* NKSP: Fixed crash when using built-in script array variable "%ALL_EVENTS". * NKSP: Added built-in function "change_amp_lfo_depth()". * NKSP: Added built-in function "change_amp_lfo_freq()". * NKSP: Added built-in function "change_pitch_lfo_depth()". * NKSP: Added built-in function "change_pitch_lfo_freq()". * Bumped version (2.0.0.svn44).
- Fixed some minor few compiler warnings.
* RT Instrument Scripts: Fixed crash when using built-in script function "by_marks()". * LSCP Server: Fixed client connection not being closed after network error. * Fixed some more few compiler warnings. * Bumped version (2.0.0.svn33).
* Fixed numerous compiler warnings. * Bumped version (2.0.0.svn32).
* NKSP language: Added support for user defined script functions. * Bumped version (2.0.0.svn18).
* NKSP: Implemented built-in script function "stop_wait()". * NKSP: Implemented built-in script variable "$NI_CALLBACK_ID". * NKSP: Implemented built-in script variable "$NI_CALLBACK_TYPE". * NKSP: Implemented built-in script variable "$NKSP_IGNORE_WAIT". * NKSP: Added support for read-only built-in variables (respectively handled by the script parser). * NKSP: Added built-in script constant "$NI_CB_TYPE_INIT". * NKSP: Added built-in script constant "$NI_CB_TYPE_NOTE". * NKSP: Added built-in script constant "$NI_CB_TYPE_RELEASE". * NKSP: Added built-in script constant "$NI_CB_TYPE_CONTROLLER". * Bumped version (2.0.0.svn17).
* NKSP: Implemented built-in script function "inc()". * NKSP: Implemented built-in script function "dec()". * NKSP language fix: division expressions were evaluated too often. * NKSP language fix: string concatenation operator was right associative instead of left (to right). * Bumped version (2.0.0.svn15).
* NKSP: Implemented built-in script variable "$KSP_TIMER". * NKSP: Implemented built-in script variable "$NKSP_REAL_TIMER". * NKSP: Implemented built-in script variable "$NKSP_PERF_TIMER". * NKSP: Implemented built-in script variable "$ENGINE_UPTIME". * Bumped version (2.0.0.svn14).
* NKSP: Added & implemented built-in script function "change_cutoff()". * NKSP: Added & implemented built-in script function "change_reso()". * NKSP: Added & implemented built-in script function "event_status()". * NKSP: Added built-in script constants "$EVENT_STATUS_INACTIVE" and "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for built-in "event_status()" script function. * NKSP language: Added support for bitwise operators ".or.", ".and." and ".not.". * NKSP language scanner: Fixed IDs matching to require at least one character (i.e. when matching function names or variable names). * NKSP language scanner: disabled unusued rules. * Bumped version (2.0.0.svn12).
* Added new C++ API class "ScriptVMFactory". * Instrument Scripts: extended parser issues to provide not only first line and first column, but also last line and last column of issue (thus marking the precise span of the issue within the source code). * Bumped version (2.0.0.svn7).
* Instrument Scripts: Fixed line numbers on parser error/warning messages. * Instrument Scripts: Added output of precise column on parser error/warning messages. * Shut up some irrelevant errors of parser generating shell scripts. * Bumped version (2.0.0.svn6).
* All engines: Active voices are now internally grouped to "Note" objects, instead of being directly assigned to a keyboard key. This allows more fine graded processing of voices, which is i.e. required for certain instrument script features. * Built-in script function "play_note()": Added support for passing special value -1 for "duration-us" argument, which will cause the triggered note to be released once the original note was released. * Bumped version (2.0.0.svn3).
* All engines: Implemented scheduler for delayed MIDI events and for suspended real-time instrument scripts. * Real-Time instrument scripts: Implemented support for built-in "wait()" function's "duration-us" argument, thus scripts using this function are now correctly resumed after the requested amount of microseconds. * Real-Time instrument scripts: Implemented support for built-in "play_note()" function's "duration-us" argument, thus notes triggered with this argument are now correctly released after the requested amount of microseconds. * Real-Time instrument scripts: Fixed crash which happened when trying to reference an undeclared script variable. * Real-Time instrument scripts: Script events were not cleared when engine channel was reset, potentially causing undefined behavior. * All engines: Attempt to partly fix resetting engine channels vs. resetting engine, an overall cleanup of the Reset*(), ConnectAudioDevice(), DisconnectAudioDevice() API methods would still be desirable though, because the current situation is still inconsistent and error prone. * Bumped version (2.0.0.svn2).
* RT instrument scripts: Pass/preserve polyphonic variable data from respective "note" event handler to "release" event handler. * Fixed theoretical memory leak regarding instrument scripts. * Bumped version (1.0.0.svn54).
* Implemented built-in instrument script function "abs()". * Implemented built-in instrument script function "random()". * Implemented built-in instrument script function "num_elements()". * Disabled debug mode of RefPtr template class. * Bumped version (1.0.0.svn51).
* ScriptVM (WIP): started to integrate real-time instrument script support into the sampler engine implementations. The code is shared among all sampler engines, however currently only the gig file format supports storing instrument scripts (as LinuxSampler extension to the original GigaStudio 4 file format). * gig engine: Added support for loading instrument scripts from .gig files. * ScriptVM (WIP): Implemented built-in script variables %CC, $CC_NUM, $EVENT_NOTE, $EVENT_VELOCITY, $VCC_MONO_AT, $VCC_PITCH_BEND. * ScriptVM (WIP): Implemented execution of script event handler "init". * ScriptVM (WIP): Implemented execution of script event handler "controller". * Bumped version (1.0.0.svn42).
* ScriptVM: refactoring and fixes.
* (WIP) Implemented parser and VM for upcoming new real-time instrument script support. It needs yet to be integrated into the sampler's sampler engines. You can toy around for now with the command line tool "ls_instr_script" and i.e. examples showing the core language features under src/scriptvm/examples/. * Bumped version (1.0.0.svn41).
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.
ViewVC Help | |
Powered by ViewVC |