Parent Directory
|
Revision Log
Links to HEAD: | (view) (download) (annotate) |
Sticky Revision: |
- Fixed compilation error with some compilers.
* NKSP: Implemented built-in script function "change_velo()". * NKSP: Implemented built-in script function "change_note()". * Bumped version (2.0.0.svn49).
* NKSP: Built-in "ignore_event()" function: argument is now optional, like with built-in function "ignore_controller()".
* Fixed invalid (note-on) event ID being assigned to new Note objects. * Fixed a bunch of scheduler time related bugs. * Bumped version (2.0.0.svn47).
* NKSP: Added built-in script function "get_event_par()" and implemented some of its possible parameter selections. * NKSP: Added built-in script function "set_event_par()" and implemented some of its possible parameter selections. * NKSP: Fixed (removed) artificial value limit for duration argument of built-in script functions "change_vol_time()" and "change_tune_time()". * Fixed compile error with pre-C++11 compilers. * Bumped version (2.0.0.svn46).
* NKSP: Implemented built-in script function "change_vol_time()". * NKSP: Implemented built-in script function "change_tune_time()". * NKSP: Implemented built-in script function "fade_in()". * NKSP: Implemented built-in script function "fade_out()". * NKSP: Fixed acceptance of wrong data type of parameters passed to built-in script functions "change_vol()", "change_tune()", "change_pan()", "change_cutoff()", "change_reso()", "change_attack()", "change_decay()", "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()", "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()". * Bumped version (2.0.0.svn45).
* 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).
* NKSP: Fixed all change_*() built-in script functions to apply their synthesis parameter changes immediately in case the respective note was triggered at the same time, instead of scheduling the parameter change, especially because it would cause some parameter types's changes either to be ramped (i.e. change_vol()) or other types even to have not effect at all (i.e. change_attack()). * Bumped version (2.0.0.svn20).
* NKSP: Implemented built-in script function "change_attack()". * NKSP: Implemented built-in script function "change_decay()". * NKSP: Implemented built-in script function "change_release()". * Bumped version (2.0.0.svn19).
* 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).
* Fixed behavior of built-in instrument script functions play_note() and note_off(), which must be distinguished engine internally from "real" MIDI note on/off events in order to avoid misbehaviors like hanging notes. * Bumped version (2.0.0.svn13).
* 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).
* Implemented built-in instrument script function "change_vol()". * Implemented built-in instrument script function "change_tune()". * Implemented built-in instrument script function "change_pan()". * Bumped version (2.0.0.svn11).
* 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).
* Implemented built-in instrument script function "set_event_mark()". * Implemented built-in instrument script function "delete_event_mark()". * Implemented built-in instrument script function "by_marks()". * Added built-in instrument script int const variables $MARK_1 to $MARK_28. * Built-in instrument script functions "ignore_event()", "note_off()" and "gig_set_dim_zone()" now also accept an array of event IDs as argument (i.e. return value of new script function "by_marks()"). * Bumped version (1.0.0.svn53).
* Implemented built-in instrument script function "note_off()". * Bumped version (1.0.0.svn52).
* removed usage of c++11 initializer that caused compilation errors on older compilers
* Implemented built-in instrument script function "set_controller()". * Fixed built-in script functions "ignore_event()" and "ignore_controller()". * Added extended instrument script VM for the Gigasampler/GigaStudio format sampler engine, which extends the general instrument script VM with Giga format specific variables and functions. * Giga format instrument scripts: added built-in script int constant variables $GIG_DIM_CHANNEL, $GIG_DIM_LAYER, $GIG_DIM_VELOCITY, $GIG_DIM_AFTERTOUCH, $GIG_DIM_RELEASE, $GIG_DIM_KEYBOARD, $GIG_DIM_ROUNDROBIN, $GIG_DIM_RANDOM, $GIG_DIM_SMARTMIDI, $GIG_DIM_ROUNDROBINKEY, $GIG_DIM_MODWHEEL, $GIG_DIM_BREATH, $GIG_DIM_FOOT, $GIG_DIM_PORTAMENTOTIME, $GIG_DIM_EFFECT1, $GIG_DIM_EFFECT2, $GIG_DIM_GENPURPOSE1, $GIG_DIM_GENPURPOSE2, $GIG_DIM_GENPURPOSE3, $GIG_DIM_GENPURPOSE4, $GIG_DIM_SUSTAIN, $GIG_DIM_PORTAMENTO, $GIG_DIM_SOSTENUTO, $GIG_DIM_SOFT, $GIG_DIM_GENPURPOSE5, $GIG_DIM_GENPURPOSE6, $GIG_DIM_GENPURPOSE7, $GIG_DIM_GENPURPOSE8, $GIG_DIM_EFFECT1DEPTH, $GIG_DIM_EFFECT2DEPTH, $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH. * Giga format instrument scripts: Implemented built-in script function "gig_set_dim_zone(event_id, dimension, zone)", which allows to override dimension zone(s) for new voices. * Bumped version (1.0.0.svn45).
* 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).
* ScriptVM (WIP): Implemented execution of script event handlers "note" and "release". * ScriptVM (WIP): Implemented built-in script function "play_note()" (only two of the max. four function arguments are currently implemented yet though). * ScriptVM (WIP): Fixed incorrect handling of suspended scripts. * Bumped version (1.0.0.svn43).
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 |