Log of /linuxsampler/trunk/configure.ac
Parent Directory
|
Revision Log
Revision
3767 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri May 15 19:28:13 2020 UTC
(3 years, 6 months ago)
by
schoenebeck
File length: 62664 byte(s)
Diff to
previous 3766
* Ref<> class: prevent compiler error if T == T_Base
(due to method signature duplicate).
* Bumped version (2.1.1.svn55).
Revision
3766 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Apr 6 12:41:49 2020 UTC
(3 years, 7 months ago)
by
schoenebeck
File length: 62664 byte(s)
Diff to
previous 3765
Fixed deadlocks (e.g. when restarting engines).
* Individual thread implementations (e.g. disk thread, etc.):
Disable thread cancellation on critical sections, e.g. when holding
mutex locks, to prevent deadlocks if thread is stopped and/or
restarted.
* Added TestCancel() calls to thread implementations if missing.
* No need to wrap Thread::TestCancel() calls into
CONFIG_PTHREAD_TESTCANCEL macro conditions (since TestCancel() is
already a stub on systems which don't have pthread_testcancel()
available).
* If compiled for debugging: give each thread a human readable name
to simplify debugging of multi-threading issues.
* DiskThreadBase: TestCancel() and pthread_testcancel() calls are
per-se redundant, so only call TestCancel().
* Added missing override keywords to silent compiler warnings.
* Bumped version (2.1.1.svn54).
Revision
3765 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Apr 6 09:46:52 2020 UTC
(3 years, 7 months ago)
by
schoenebeck
File length: 62664 byte(s)
Diff to
previous 3764
Mutex class: Implemented bug detection and deadlock debugging features.
* Bug detection: By enabling macro DEBUG_MUTEX at compile time and
calling new method setDebugEnabled(true) at runtime, automatic bug
detection features are activated which e.g. raise an assertion fault
if a thread attempts to Unlock() a thread it does not own a lock on,
or when locking more than once while not using mutex type RECURSIVE
and much more.
* Deadlock debugging: Also if these features were activated like
described above, the most recent mutex lock is recorded by capturing
the name of the thread and the precise call stack which caused the
mutex lock. This information can be used to identify the exact
situation that lead to a dead lock efficiently with a debugger.
* Bumped version (2.1.1.svn53).
Revision
3764 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Apr 5 21:41:27 2020 UTC
(3 years, 7 months ago)
by
schoenebeck
File length: 62664 byte(s)
Diff to
previous 3763
Thread class: Added new methods (POSIX implementation only yet):
* Added methods pushCancelable() and popCancelable() for allowing to
prevent thread being terminated on critical sections.
* Added methods name(), nameOfCaller() and setNameOfCaller() to allow
assigning threads human readable names for debugging purposes.
* configure: Always check for availability of pthread_testcancel()
and use it if so (previously it was only used if explicitly enabled
by configure script option).
* Raise a compiler warning if pthread_testcancel() is not available.
* Bumped version (2.1.1.svn52).
Revision
3763 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Apr 5 20:15:57 2020 UTC
(3 years, 7 months ago)
by
schoenebeck
File length: 62907 byte(s)
Diff to
previous 3747
* Implemented global backtraceAsString() function for debugging purposes
(POSIX systems only, no Windows implementation yet).
* Bumped version (2.1.1.svn51).
Revision
3747 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 16 11:31:46 2020 UTC
(3 years, 9 months ago)
by
schoenebeck
File length: 62907 byte(s)
Diff to
previous 3744
* NKSP: Fixed re-entrant issue with function calls which caused wrong
result values if the same function was called multiple times in a term
(specifically if metric prefixes were used).
* Tests: Added NKSP core language test cases to guard this fixed issue.
* Bumped version (2.1.1.svn50).
Revision
3744 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 15 11:50:02 2020 UTC
(3 years, 9 months ago)
by
schoenebeck
File length: 62907 byte(s)
Diff to
previous 3742
* NKSP: Fixed intermediate function result values never having reflected
any standard measuring unit type.
* Tests: Guard this fixed NKSP issue by test cases.
* Bumped version (2.1.1.svn49).
Revision
3742 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Feb 14 15:15:13 2020 UTC
(3 years, 9 months ago)
by
schoenebeck
File length: 62907 byte(s)
Diff to
previous 3739
* NKSP: Fixed incorrect EG times if standard measuring unit was
passed to built-in functions "change_attack()", "change_decay()"
or "change_release()".
* Bumped version (2.1.1.svn48).
Revision
3739 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Feb 4 14:51:15 2020 UTC
(3 years, 9 months ago)
by
schoenebeck
File length: 62907 byte(s)
Diff to
previous 3733
* Added configure checks whether C++ compiler supports so called
'designated initializers'.
* Bumped version (2.1.1.svn47).
Revision
3733 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 1 18:11:20 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3729
NKSP: Added support for 'patch' variables.
* NKSP language: Added support for 'patch' variable qualifier
(as new dedicated keyword 'patch').
* NKSP parser: capture locations of 'patch' variable declarations
in script's source code.
* ScriptVM: Allow patching 'patch' script variables by replacing
their default assignment expression with a supplied replacement
variable initialization expression by optional 2nd argument when
calling loadScript().
* ScriptVM: Allow retrieval of default initialization expressions
of all 'patch' variables by optional 3rd argument when calling
loadScript() (i.e. for instrument editors).
* gig engine: Implemented support for loading real-time instrument
scripts with 'patch' variables bundled with gig instruments.
* Bumped version (2.1.1.svn46).
Revision
3729 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 31 10:57:53 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3728
NKSP parser: track code locations also by raw byte position and length.
* NKSP VM API: Added member variables 'firstByte' and 'lengthBytes' to
struct 'CodeBlock'.
* NKSP Editor API: Added methods firstByte() and lengthBytes() to
class 'VMSourceToken'.
* NKSP VM language parser: track all positions also by raw byte offset
and length (along to the already existing tracking by line/column).
* NKSP editor syntax highlighting scanner: track all positions also by
raw byte offset and length (along to the already existing tracking by
line/column).
* Bumped version (2.1.1.svn45).
Revision
3728 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 29 13:58:33 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3726
NKSP: Reduced code for parsing NKSP variable declarations:
* Use 2 generalized grammar rules with optional components (i.e. optional
value assignment and optional variable qualifiers) instead of previous
linear combinations of grammar rules, which also fixes some edge case.
* Bumped version (2.1.1.svn44).
Revision
3726 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 26 15:30:52 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3725
Fixed potential crash with high pitch at end of RAM playback:
* AbstractVoice: variable 'cachedsamples' is already in sample points,
so the previous division by amount of audio channels, allowed RAM
playback to exceed beyond the amount of samples being cached.
* Bumped version (2.1.1.svn43).
Revision
3725 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 23 18:45:00 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3724
* Fixed playing noise at the end of a disk stream under certain
conditions.
* Bumped version (2.1.1.svn42).
Revision
3724 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 23 18:15:37 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3721
* Fixed crash when editing key groups (a.k.a. exclusive groups)
with an instrument editor during playback.
* Bumped version (2.1.1.svn41).
Revision
3721 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jan 20 15:10:05 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3719
* gig engine: If minimum cutoff is defined, remap cutoff controller CC
values to really span the entire possible cutoff range (to avoid a
dead controller zone).
* Bumped version (2.1.1.svn40).
Revision
3719 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 15 16:12:51 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3715
* gig engine: Fixed potential crash with polynomial interpolator
and max. pitch.
* Bumped version (2.1.1.svn39).
Revision
3715 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 12 17:07:34 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3714
* NKSP: Removed upper value constraint for 2nd argument of built-in
functions "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
"change_pitch_lfo_freq()","change_reso()", "change_cutoff()",
"change_amp_lfo_depth()", "change_cutoff_lfo_depth()" and
"change_pitch_lfo_depth()", to allow e.g. passing value 2000000
to double the LFO frequency / resonance / cutoff frequency.
* Bumped version (2.1.1.svn38).
Revision
3714 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 11 20:19:11 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3708
NKSP: Fixed crash with built-in functions returning an array.
* Calling built-in functions returning an array type was broken and
caused a crash when built-in function's NULL (supposed to be array)
result value was used by the script VM.
* Bumped version (2.1.1.svn37).
Revision
3708 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 8 22:11:30 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3701
Fixed compile errors with C++17:
* std::ptr_fun was removed from STL in C++17,
use C++11 lambda expression instead.
* std::mem_fun and std::bind2nd were removed from STL in C++17,
use C++11 lambda expression instead.
* Bumped version (2.1.1.svn36).
Revision
3701 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 4 18:15:04 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3699
* Added support for 'null function RPN/NRPN' (which is RPN/NRPN
parameter MSB=127 and LSB=127, and which is disabling subsequent
data entry/increment/decrement CC messages.
* Bumped version (2.1.1.svn35).
Revision
3699 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 4 14:07:02 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3697
* Added support for MIDI CC #96 (data increment).
* Added support for MIDI CC #97 (data decrement).
* Bumped version (2.1.1.svn34).
Revision
3697 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 4 12:09:45 2020 UTC
(3 years, 10 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3695
Implemented support for compressed RPN/NRPN message sequences:
* Allow processing MIDI data entry messages without having to be
preceded strictly always by RPN/NRPN parameter selection messages
prior to each value change (i.e. data entry CC).
* Bumped version (2.1.1.svn33).
Revision
3695 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 3 15:44:29 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3691
* NKSP: Fixed certain built-in variables having returned
some (seemingly random) metric unit factor (instead of none).
* Bumped version (2.1.1.svn32).
Revision
3691 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 3 12:35:20 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3690
* NKSP: Implemented built-in script function "set_rpn()".
* NKSP: Implemented built-in script function "set_nrpn()".
* Bumped version (2.1.1.svn31).
Revision
3690 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 3 10:18:21 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3688
NKSP: Added support for RPN and NRPN event handlers:
* NKSP language: Added support for RPN event handler
("on rpn ... end on" in instrument scripts).
* NKSP language: Added support for NRPN event handler
("on nrpn ... end on" in instrument scripts).
* Added built-in read-only variables "$RPN_ADDRESS" and "$RPN_VALUE" which
may be read from the new RPN/NRPN script handlers to get the (N)RPN
parameter that had been changed and its new value.
* Added built-in const variables "$NI_CB_TYPE_RPN" and "$NI_CB_TYPE_NRPN"
which are identifying the new (N)RPN handlers as such at script runtime.
* Bumped version (2.1.1.svn30).
Revision
3688 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 2 23:47:42 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3687
Added support for MIDI CC #38 (data entry LSB):
* Combine data entry MSB and data entry LSB events' values to one 14-bit
value, which allows higher resolution (N)RPN value handling.
* Handle now hard coded RPN events in separate method
ProcessHardcodedRpn().
* Handle now hard coded NRPN events in separate method
ProcessHardcodedNrpn().
* Bumped version (2.1.1.svn29).
Revision
3687 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 2 22:37:07 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3686
EngineChannel: Overhaul of RPN / NRPN related methods:
* Added new *Rpn*Parameter*() methods as replacement for previous
*Rpn*Controller*() methods and marked the old ones as deprecated.
* Added new *Nrpn*Parameter*() methods as replacement for previous
*Nrpn*Controller*() methods and marked the old ones as deprecated.
* The new GetMidiRpnParameter() and GetMidiNrpnParameter() methods
return their result as common (in MIDI world) 14 bit representation
of sender's MSB and LSB values, instead of the uncommon 16 bit
representation of the old GetMidiRpnController() and
GetMidiNrpnController() methods.
* Bumped version (2.1.1.svn28).
Revision
3686 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 2 22:02:53 2020 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3678
* Event:Init(): memset() entire Event::Param union to zero instead of trying
to do that for its individual members; the latter became error prone due
to the union's growing complexity meanwhile.
* Bumped version (2.1.1.svn27).
Revision
3678 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Dec 27 22:46:08 2019 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3655
* NKSP: Added built-in script functions "msb()" and "lsb()".
* Bumped version (2.1.1.svn26).
Revision
3655 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Dec 13 17:14:48 2019 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3646
* gig engine: Fixed cutoff controller handling for new filter types.
* Bumped version (2.1.1.svn25).
Revision
3646 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Dec 8 23:17:34 2019 UTC
(3 years, 11 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3639
* gig format extension: Support for additional filter types:
lowpass 1/2/4/6-pole, highpass 1/2/4/6-pole, bandpass 2-pole,
bandreject 2-pole.
* Bumped version (2.1.1.svn24).
Revision
3639 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Oct 25 18:46:58 2019 UTC
(4 years, 1 month ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3625
* Using now cubic interpolation as resampling algorithm by default; and
linear interpolation is deprecated now.
* Bumped version (2.1.1.svn23).
Revision
3625 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Oct 3 13:37:25 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3616
* gig format extension: Added support for different LFO wave forms
(currently either sine [default], triangle, saw or square).
* gig format extension: Added support for LFO phase displacement
(0°..360°).
* gig format extension: Added support for flipping LFO polarity on LFO 3
(in the original gig format this was only available for LFO 1 and LFO 2).
* Bumped version (2.1.1.svn22).
Revision
3616 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 1 10:50:29 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3615
* Gig engine: Changed default wave form for all 3 LFOs to sine
(instead of triangle; see discussion "GigaStudio LFO
compatibility" on mailing list from 2019-09-26 for details).
* Bumped version (2.1.1.svn21).
Revision
3615 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 1 09:49:08 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3614
* Gig engine: changed LFO start levels; LFO1 and LFO2 both to mid,
LFO3 to max. start level (see discussion "GigaStudio LFO
compatibility" on mailing list from 2019-09-26 for details).
* Bumped version (2.1.1.svn20).
Revision
3614 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 1 09:11:27 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3612
Refactored LFO class names and their header file names:
* Renamed PulseLFO -> LFOPulse, LFOSawIntMath -> LFOSawIntMathNew,
SawLFO -> LFOSawIntMathOld, SineLFO -> LFOSineBuiltinFn,
LFOSine -> LFOSineNumericComplexNr, SquareLFO -> LFOSquarePulse.
* Separated LFOSquarePulse (previously "SquareLFO") to its own
header file.
* Renamed type LFOSigned -> LFOTriangleSigned.
* Renamed type LFOUnsigned -> LFOTriangleUnsigned.
* Bumped version (2.1.1.svn19).
Revision
3612 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 30 18:03:43 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3611
Added new LFO implementations:
* Added int math square LFO implementation.
* Added int math saw LFO implementation.
* Added numeric complex nr sine LFO implementation.
* Added public API C++ class "LFO", which is a cluster class
encapsulating all the sampler's LFO implementations to be used by
3rd party applications (e.g. by Gigedit).
* Marked class LFOTriangleDiHarmonic as deprecated
(will be removed in future).
* Added LFOAll.h which includes all LFO implementation's header files.
* Fixed benchmarks/triang.cpp falsely having favoured "int math abs"
algorithm (since result of 2nd run was not accumulated).
* Added benchmark for saw wave (benchmarks/saw.cpp).
* Added benchmark for sine wave (benchmarks/sine.cpp).
* Added benchmark for square wave (benchmarks/square.cpp).
* Increased amount of benchmarks runs by factor 6 to achieve benchmark
times which are large enough on modern systems.
* Cleanup of LFO APIs.
* Bumped version (2.1.1.svn18).
Revision
3611 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 30 17:35:43 2019 UTC
(4 years, 2 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3595
* LFOTriangleIntMath and LFOTriangleIntAbsMath: Fixed FlipPhase=true
behaviour for start_level_mid.
* Bumped version (2.1.1.svn17).
Revision
3592 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 2 09:40:44 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3590
* NKSP language: Allow unary '+' operator.
* Test cases: Added NKSP tests for unary '+' operator.
* Bumped version (2.1.1.svn15).
Revision
3590 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 2 09:03:31 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3588
NKSP: Implemented common real number math functions.
* Added built-in real number functions "round()", "ceil()", "floor()",
"sqrt()", "log()", "log2()", "log10()", "exp()", "pow()", "sin()",
"cos()", "tan()", "asin()", "acos()", "atan()".
* Added built-in script real number constant "~NI_MATH_PI".
* Added built-in script real number constant "~NI_MATH_E".
* Added NKSP test cases for built-in functions "round()", "ceil()",
"floor()", "sqrt()", "log()", "log2()", "log10()", "exp()", "pow()",
"sin()", "cos()", "tan()", "asin()", "acos()", "atan()".
* Bumped version (2.1.1.svn14).
Revision
3588 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Sep 1 16:06:48 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3587
NKSP: Built-in instrument functions fixes & hardening:
* Fixed the following built-in functions having misinterpreted values given
with unit type (for their 2nd argument) as if they were relative values
(that is as if they were passed without a unit type): "change_attack()",
"change_decay()", "change_release()", "change_cutoff_attack()",
"change_cutoff_decay()", "change_cutoff_release()".
* Fixed the following built-in functions having applied completely wrong
'final' values: "change_sustain()", "change_cutoff_sustain()" (since the
respective EGs being their modulation sink assume uint data type with
value range 0..1000 instead of 0.0..1.0.
* Added individual parse-time checks of function arguments for the following
built-in functions: "play_note()", "note_off()", "set_event_mark()",
"delete_event_mark()", "by_marks()", "change_cutoff()", "change_attack()",
"change_decay()", "change_release()", "change_cutoff_attack()",
"change_cutoff_decay()", "change_cutoff_release()",
"change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
"change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()" and
"change_pan_time()".
* Don't abort function call if unit type was used and at the same time
'final' operator was omitted for the primary value argument of the
following built-in functions: "change_cutoff()", "change_attack()",
"change_decay()", "change_release()", "change_cutoff_attack()",
"change_cutoff_decay()", "change_cutoff_release()",
"change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
"change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()",
"change_pan_time()", instead imply 'final'ness at runtime and raise an
appropriate parser warning at parse time.
* Bumped version (2.1.1.svn13).
Revision
3587 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Aug 31 12:08:49 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3586
NKSP: Real number support for core instrument built-in functions.
* NKSP: Built-in function "play_note()" accepts now real numbers and
seconds as unit type as well for its 3rd and 4th function arguments.
* NKSP: The following built-in functions accept now real numbers as well for
their 2nd function argument: "change_vol()", "change_tune()",
"change_cutoff()", "change_attack()", "change_decay()",
"change_release()", "change_sustain()", "change_cutoff_attack()",
"change_cutoff_decay()", "change_cutoff_sustain()",
"change_cutoff_release()", "change_amp_lfo_freq()",
"change_cutoff_lfo_freq()", "change_pitch_lfo_freq()",
"change_vol_time()", "change_tune_time()", "change_pan_time()",
"fade_in()", "fade_out()", "change_play_pos()".
* NKSP: Fixed built-in function "change_play_pos()" not having accepted
metric prefixes at all.
* Bumped version (2.1.1.svn12).
Revision
3586 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 30 18:59:21 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3585
* NKSP language: Fixed assignment to array variables which was
broken by floating point support introduction (svn r3573).
* Test cases: Added NKSP int array and real array tests for value
assignment and initialization of arrays.
* Bumped version (2.1.1.svn11).
Revision
3585 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 30 17:51:24 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59205 byte(s)
Diff to
previous 3584
NKSP: Cleanup regarding multiple data types for built-in function args.
* NKSP VM API cleanup: Get rid of legacy method
VMFunction::argType(vmint iArg) which was already superseded by its new
replacement VMFunction::acceptsArgType(vmint iArg, ExprType_t type).
* NKSP parser: if wrong argument type was passed to a built-in function and
that built-in function accepts more than one data type for the argument,
then show all supported data types as parser error message.
* Bumped version (2.1.1.svn10).
Revision
3584 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 30 13:33:32 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3581
* NKSP VM API: Added 4 overridden methods to class VMNumberExpr:
evalCastInt(MetricPrefix_t), evalCastInt(MetricPrefix_t,MetricPrefix_t),
evalCastReal(MetricPrefix_t), evalCastReal(MetricPrefix_t,MetricPrefix_t)
as convenient methods for automatically converting values to expected
metric value basis.
* NKSP built-in function "wait()" accepts now both integers and real numbers
as argument.
* Bumped version (2.1.1.svn9).
Revision
3581 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 30 11:40:25 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3577
NKSP: Allow more wider support of standard measuring units & 'final'ness.
* Raised compiler requirement to be C++14 compliant (due to severe
restrictions regarding C-style aggregate initializer lists in C++11
which are now massively used throughout the code base).
* NKSP VM API: Allow units and 'final'ness to be returned as result from
built-in functions (added methods VMFunction::returnUnitType() and
VMFunction::returnsFinal() for that purpose which must be implemented by
built-in function implementations).
* NKSP language: Allow metric unit prefixes of numeric scalar and array
variables to be changed freely at runtime (unlike unit types like Hz etc.
which are still sticky parse-time features of variables which cannot be
changed at runtime for the intentional sake of determinism).
* NKSP language: 'final' values are prohibited for array variables for now
(attempt causes a parsers error).
* NKSP language: expressions with unit types (e.g. Hz) are prohibited for
conditions of runtime control structures like if(), while(), select()
(attempt causes a parser error).
* NKSP VM API: Allow built-in functions to perform their own, individual
parse time checks of arguments going to be passed to the function at
runtime (added method VMFunction::checkArgs() for that purpose).
* NKSP language: raise parser warning if only one operand of binary
operators (like logical 'or' comparison) contain a 'final' value (because
it would always yield in a 'final' result in such cases).
* NKSP language: Allow comparison (=, #, <, >, <=, >=) of values with
different metric unit prefixes, which will behave as expected (e.g.
result of expression '1000us < 2ms' is true).
* NKSP language: Allow adding values with different metric unit prefixes
(e.g. result of expression '100Hz + 5kHz' is '5100Hz').
* NKSP language: Allow subtracting values with different metric unit
prefixes (e.g. result of expression '1ms - 20us' is '980us').
* NKSP language: Allow multiplying with any metric unit prefixes
(e.g. result of expression '2k * 3ms' is '6s'), however multiplications
with unit types on both sides (e.g. '2s * 2s') is still prohibited since
we don't have any considerable practical use for a term like '4s^2'
(hence any attempt multiplying two unit types still causes parser error).
* NKSP language: Allow dividing by any metric unit prefixes and allow
division of same unit type on both sides (e.g. expression '8kHz / 1000Hz'
yields in unit free result '8'). So this is now a way to cast units away
e.g. for passing the result to other expressions, certain function calls
or variables which are not accepting any units (or that specific unit).
* NKSP language: integer arrays and real number arrays can now be converted
to strings (e.g. for dumping their content with message() calls for
script debugging purposes).
* NKSP language: expressions and variables with units are now correctly
casted to strings (e.g. with message() calls).
* NKSP language: comparing real numbers for equalness (e.g. '~foo = 3.1') or
unequalness (e.g. '~foo # 3.1') is now less strict and takes the expected
floating point tolerances into account.
* NKSP VM API: Added methods VMScalarNumberExpr::evalCastInt() and
VMScalarNumberExpr::evalCastReal().
* NKSP VM API: Added base class 'VMNumberArrayExpr' for classes
'VMIntArrayExpr' and 'VMRealArrayExpr'.
* NKSP VM API: replaced all unitPrefix() (parse time) methods by
unitFactor() (runtime) methods.
* Built-in function "exit()" supports now returning units and 'final'ness
exclusively for test cases.
* The following built-in functions support now units as well: "abs()",
"random()", "inc()", "dec()", "in_range()", "min()", "max()",
"real_to_int()", "int()", "int_to_real()" and "real()".
* Built-in functions "array_equal()", "search()" and "sort()" support now
real number arrays (correctly) as well.
* Added individual parse time checks of arguments to be passed to built-in
functions "random()", "inc()", "dec()", "in_range()", "min()", "max()",
"array_equal()" and "search()" specific for their individual purposes.
* Test cases: Added massive amount of NKSP test cases for standard
measuring units and 'final' operator usage cases.
* Test cases: Added NKSP test cases for (floating point tolerance aware)
real number equalness / unequalness comparison.
* Bumped version (2.1.1.svn8).
Revision
3577 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Aug 28 15:23:23 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3573
NKSP: Introducing variable return type for built-in functions.
* Changed method signature VMFunction::returnType() ->
VMFunction::returnType(VMFnArgs* args) to allow built-in
functions to proclaim a different result value type depending
on the arguments to be passed to the function.
* Built-in script function abs() optionally accepts and returns
real number.
* Built-in script functions min() and max() optionally accept
real number arguments and return real number as result in that
case.
* Added real number test cases for the built-in abs(), min() and
max() functions.
* Bumped version (2.1.1.svn7).
Revision
3573 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Aug 27 21:36:53 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3564
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).
Revision
3564 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Aug 24 09:18:57 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3561
NKSP: Bug fixes regarding new measurement units feature:
* Fix: Engine internal Fade of script synthesis parameters volume, pitch
and pan were not rendered at all.
* Fix: Backward compatibility of built-in function arguments without a
metric unit prefix was broken (resulted in incorrect value
transformation).
* Fix: built-in script function change_play_pos() resolved wrong arguments.
* Bumped version (2.1.1.svn5).
Revision
3561 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 23 11:44:00 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3557
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).
Revision
3557 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Aug 18 00:06:04 2019 UTC
(4 years, 3 months ago)
by
schoenebeck
File length: 59204 byte(s)
Diff to
previous 3551
* 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).
Revision
3551 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Aug 1 10:22:56 2019 UTC
(4 years, 4 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3548
* 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).
Revision
3548 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 31 09:35:10 2019 UTC
(4 years, 4 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3537
* Fixed compiler error in Pool.h.
* Fixed compiler errors in test cases.
* Updated README for how to compile & run test cases.
* Updated test case
MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
expected behaviour of the Mutex class implementation (recursive
mutex type).
* Bumped version (2.1.1.svn1).
Revision
3501 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Mar 11 15:07:49 2019 UTC
(4 years, 8 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3497
* FX Sends: Provide more useful error messages on routing problems
(see bug #169).
* LSCP reference doc: Be more clear describing the two distinct
approaches of using external vs. internal effects (see bug #169).
* Bumped version (2.1.0.svn8).
Revision
3497 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Mar 10 13:34:33 2019 UTC
(4 years, 8 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3492
* sfz opcode 'sample': Added support for built-in sample '*silence'
(fixes bug #310, patch by Jacek Roszkowski).
* sfz opcode 'sample': Show warning message for unknown or unsupported
built-in sample types.
* Bumped version (2.1.0.svn7).
Revision
3492 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Mar 7 12:34:44 2019 UTC
(4 years, 8 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3487
* SFZ: Fixed potential crash when a sample is shared by more than one
region (fixes bug #308, patch by Jacek Roszkowski).
* SFZ: Added OVERRIDEs to avoid bug #307 in future.
* Bumped version (2.1.0.svn6).
Revision
3487 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 27 14:50:36 2019 UTC
(4 years, 9 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3452
* SFZ: Fixed memory leak when releasing samples
(fixes bug #307, patch by Jacek Roszkowski)
* Bumped version (2.1.0.svn5).
Revision
3452 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 3 12:08:48 2019 UTC
(4 years, 11 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3448
* Fixed potential endless recursion introduced by SVN r3444
(patch by Ivan Maguidhir).
* Bumped version (2.1.0.svn4).
Revision
3448 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Dec 23 22:10:56 2018 UTC
(4 years, 11 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3444
* Gig format extension: If requested by instrument then don't play
release trigger sample on note-off events.
* Bumped version (2.1.0.svn3).
Revision
3444 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Dec 23 19:32:11 2018 UTC
(4 years, 11 months ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3381
* Only play release trigger samples on sustain pedal up if this behaviour
was explicitly requested by the instrument (otherwise only on note-off).
* Bumped version (2.1.0.svn2).
Revision
3381 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Nov 28 15:54:49 2017 UTC
(6 years ago)
by
schoenebeck
File length: 58963 byte(s)
Diff to
previous 3372
* NKSP: Fixed behavior of built-in functions change_sustain(),
change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
and change_cutoff_release().
* Bumped version (2.1.0.svn1).
Revision
3360 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Oct 27 21:19:18 2017 UTC
(6 years, 1 month ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3354
* NKSP: Added built-in script function "change_cutoff_attack()".
* NKSP: Added built-in script function "change_cutoff_decay()".
* NKSP: Added built-in script function "change_cutoff_sustain()".
* NKSP: Added built-in script function "change_cutoff_release()".
* NKSP: Added built-in script function "change_cutoff_lfo_depth()".
* NKSP: Added built-in script function "change_cutoff_lfo_freq()".
* Bumped version (2.0.0.svn77).
Revision
3354 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Oct 12 14:44:14 2017 UTC
(6 years, 1 month ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3335
* linuxsampler binary fix: option --create-instruments-db ignored
subsequent optional argument due to glibc's implementation oddity
which expects a "=" sign, but no space between them.
* Debian: Added build dependency to libsqlite3-dev for building
linuxsampler with instruments DB support.
* Bumped version (2.0.0.svn76).
Revision
3335 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 30 14:33:15 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3332
* NKSP: Added built-in script function "change_pan_time()".
* NKSP: Added built-in script function "change_pan_curve()".
* Bumped version (2.0.0.svn75).
Revision
3332 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 24 18:51:21 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3328
* NKSP script editor syntax highlighting API: catch all fatal lexer
errors, to avoid the editor app to crash on ill-formed text input.
* Bumped version (2.0.0.svn74).
Revision
3328 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 23 18:27:29 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3316
* gig Engine: Added support for controlling whether the individual
EGADSR stages may be aborted (as LinuxSampler extension to the
original GigaStudio 4 format).
* Bumped version (2.0.0.svn73).
Revision
3316 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 20 12:05:53 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3311
* NKSP: Implemented built-in script function "change_sustain()".
* Bumped version (2.0.0.svn72).
Revision
3311 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 15 16:24:59 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3308
* 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).
Revision
3308 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 15 01:14:20 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3306
* NKSP script editor API: Fixed app termination due to a lexer start
condition stack underrun.
* NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
USE_CODE_IF_NOT() preprocessor statements.
* Bumped version (2.0.0.svn70).
Revision
3306 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Jul 11 15:50:05 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3303
* Fixed Note object leak when triggering notes on keys which did
not have a valid sample mapped (fixes bug #252).
* Fixed compilation errors when compiling with CONFIG_DEVMODE
enabled.
* Bumped version (2.0.0.svn69).
Revision
3303 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 10 17:45:30 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3302
* NKSP: Removed max. value limitation of built-in functions
"change_attack()", "change_decay()" and "change_release()" to
i.e. allow passing 2000000 for doubling the respective time.
* Bumped version (2.0.0.svn68).
Revision
3302 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 9 19:35:18 2017 UTC
(6 years, 4 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3296
* Got rid of resembling an ancient GSt misbehavior which did not pitch at
all if an up-pitch of more than 40 semi tones was requested (I don't
think there is any stock gig sound that requires this misbehavior to
resemble its original sound).
* Bumped version (2.0.0.svn67).
Revision
3296 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jun 28 09:45:56 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3293
* Added built-in script function "callback_status()".
* Added built-in constant $CALLBACK_STATUS_TERMINATED.
* Added built-in constant $CALLBACK_STATUS_QUEUE.
* Added built-in constant $CALLBACK_STATUS_RUNNING.
* Bumped version (2.0.0.svn66).
Revision
3293 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Jun 27 22:19:19 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3290
* 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).
Revision
3290 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 23 12:24:58 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3285
* Revised fundamental C++ classes "Thread", "Mutex" and
"Condition" which fixes potential undefined behavior
(note: this addresses mainly the POSIX implementation,
Win32 is untested yet and would also need an update).
* Bumped version (2.0.0.svn64).
Revision
3285 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 22 10:45:38 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3283
* 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).
Revision
3283 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jun 21 20:59:06 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3277
* RT Instrument Scripts: Fixed potential memory access bug
and potential undefined behavior of "init" event handlers.
* Bumped version (2.0.0.svn62).
Revision
3277 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jun 5 18:40:18 2017 UTC
(6 years, 5 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3260
* 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).
Revision
3260 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed May 31 21:07:44 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3259
* NKSP language: Added support for "synchronized .. end synchronized"
code blocks.
* Bumped version (2.0.0.svn60).
Revision
3259 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed May 31 14:41:04 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3257
* NKSP language fix: Unknown characters were not handled correctly.
* Bumped version (2.0.0.svn59).
Revision
3257 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 30 17:20:02 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3255
* 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).
Revision
3255 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 30 15:43:39 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3253
* NKSP: Implemented built-in script function "change_play_pos()".
* Bumped version (2.0.0.svn57).
Revision
3253 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 30 12:08:45 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3251
* 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).
Revision
3251 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon May 29 22:19:19 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3246
* NKSP: built-in "play_note()" function now supports a sample playback
start offset with argument 3, where special value -1 means to use the
regular sample offset as defined by the instrument file.
* Bumped version (2.0.0.svn55).
Revision
3246 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 28 22:22:56 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3228
* NKSP: Implemented built-in script function "change_vol_curve()".
* NKSP: Implemented built-in script function "change_tune_curve()".
* NKSP: Added built-in script constant "$NKSP_LINEAR".
* NKSP: Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
* Bumped version (2.0.0.svn54).
Revision
3228 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 28 14:46:14 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3221
* Implemented built-in script function "same_region()" (currently only
available for gig format engine).
* Bumped version (2.0.0.svn53).
Revision
3221 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri May 26 18:30:42 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3219
* 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).
Revision
3219 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu May 25 21:49:40 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3218
* NKSP Fix: built-in script function "change_note()" did not
(re)select the correct expected region.
* NKSP Fix: built-in script function "change_velo()" did not
(re)select the correct subregion/dimension region
(whatever term you are using for the sampler format of
your choice).
* Bumped version (2.0.0.svn51).
Revision
3218 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu May 25 16:32:17 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3214
* NKSP: Adjusted behavior of "change_vol()" and "change_tune()" to a more
intuitive behavior if used in combination with "change_vol_time()" or
"change_tune_time()" respectively: now tuning/volume changes are only
assigned (without delay) immediately to a new note if the respective
timing function has not been called before, otherwise the volume/tuning
changes are automatically faded (before, only the event's time stamp was
relevant).
* Bumped version (2.0.0.svn50).
Revision
3214 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu May 25 14:46:47 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3207
* NKSP: Implemented built-in script function "change_velo()".
* NKSP: Implemented built-in script function "change_note()".
* Bumped version (2.0.0.svn49).
Revision
3207 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu May 25 10:53:45 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3205
* NKSP: Fixed polyphonic variables not being reset to zero
after usage.
* Bumped version (2.0.0.svn48).
Revision
3205 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed May 24 20:05:38 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3193
* 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).
Revision
3193 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat May 20 12:28:57 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3188
* 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).
Revision
3188 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri May 19 14:23:12 2017 UTC
(6 years, 6 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3118
* 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).
Revision
3118 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Apr 21 13:33:03 2017 UTC
(6 years, 7 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3101
* 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).
Revision
3101 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 5 18:03:58 2017 UTC
(6 years, 9 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3100
* Instruments DB: Fixed undefined DB transaction behavior.
* Fixed general compiler warnings.
* Bumped version (2.0.0.svn43).
Revision
3100 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 4 16:53:20 2017 UTC
(6 years, 9 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3095
* SFZ: Fixed unintended volume fade-in of voices under certain
conditions.
* Bumped version (2.0.0.svn42).
Revision
3095 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 18 14:52:31 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3092
* SFZ engine: Implemented opcode set_ccN
(initial patch by Giovanni Senatore).
* SFZ engine: print a warning if a CC related
opcode uses an invalid MIDI controller number.
* Bumped version (2.0.0.svn41).
Revision
3092 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jan 16 22:02:36 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3091
* Instruments DB: Added support for scanning SFZ (.sfz) files.
* Instruments DB: Added support for scanning Sound Font (.sf2) files.
* Bumped version (2.0.0.svn40).
Revision
3091 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jan 16 15:01:21 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3084
* Cleanup of instruments DB file creation and opening code.
* The instrument DB path of linuxsampler's --create-instruments-db argument
is now optional, if it is missing, then a default location is used.
* Bumped version (2.0.0.svn39).
Revision
3084 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Jan 10 12:26:38 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3082
* SFZ Engine: Just fixed a false warning about allegedly
unsupported sfz opcode "script", which is obviously not true.
* Bumped version (2.0.0.svn38).
Revision
3082 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jan 9 18:39:35 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3076
* Added support for sfz extension opcode 'script' which may be used to
load real-time instrument script file (NKSP script language).
* Removed code duplication in SFZ file loading code.
* Bumped version (2.0.0.svn37).
Revision
3076 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 5 18:00:52 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3073
* NKSP: Implemented built-in script function "in_range()".
* Bumped version (2.0.0.svn36).
Revision
3073 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 5 16:04:00 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3072
* NKSP: Implemented built-in script array variable "%ALL_EVENTS".
* Bumped version (2.0.0.svn35).
Revision
3072 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 4 15:49:52 2017 UTC
(6 years, 10 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3056
* Gig Engine: Fixed clicks and pumping noise with Lowpass Turbo filter
on very low cutoff settings.
* Bumped version (2.0.0.svn34).
Revision
3056 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Dec 16 12:57:59 2016 UTC
(6 years, 11 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3054
* 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).
Revision
3050 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Dec 8 12:36:56 2016 UTC
(6 years, 11 months ago)
by
schoenebeck
File length: 58964 byte(s)
Diff to
previous 3035
* Instruments DB: Fixed memory access bug of general DB
access code which lead to undefined behavior.
Revision
3018 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Oct 19 17:22:28 2016 UTC
(7 years, 1 month ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 3017
* Added new C++ API method
VirtualMidiDevice::SendChannelPressureToSampler().
* Bumped version (2.0.0.svn30).
Revision
3015 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 18 20:13:08 2016 UTC
(7 years, 1 month ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 3013
* gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
properly and thus were ignored for certain uses.
* Bumped version (2.0.0.svn28).
Revision
3013 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Oct 15 23:54:27 2016 UTC
(7 years, 1 month ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 3008
* NKSP: Fixed NKSP parser warning "Not a statement" when assigning an
initializer list to an array variable.
* Bumped version (2.0.0.svn27).
Revision
3008 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 11 18:25:12 2016 UTC
(7 years, 1 month ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2974
* NKSP: Provide more user friendly error messages on syntax errors.
* Bumped version (2.0.0.svn26).
Revision
2974 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jul 22 15:51:40 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2972
* ScriptVM: Implemented automatic suspension of RT safety
threatening scripts.
* Bumped version (2.0.0.svn25).
Revision
2972 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jul 22 14:37:34 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2970
* NKSP Fix: "init" event handler was not always executed when a script
was loaded.
* NKSP built-in wait() script function: abort script execution if
a negative or zero wait time was passed as argument (since this is
a common indication of a bug either of the script or even of the
engine, which could lead to RT instability or even worse).
* Bumped version (2.0.0.svn24).
Revision
2970 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 21 16:22:55 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2965
* NKSP: Implemented built-in script function "min()".
* NKSP: Implemented built-in script function "max()".
* Bumped version (2.0.0.svn23).
Revision
2965 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 18 09:42:28 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2963
* NKSP: Implemented built-in script function "sh_left()".
* NKSP: Implemented built-in script function "sh_right()".
* Bumped version (2.0.0.svn22).
Revision
2963 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 17 18:41:21 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2962
* All engines: Increased ramp speed of volume smoother and pan smoother
(while slow rate of crossfade smoother is preserved) to allow quick
volume and pan changes by instrument scripts for instance.
* Bumped version (2.0.0.svn21).
Revision
2962 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 17 17:54:04 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2953
* 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).
Revision
2953 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 16 11:24:39 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2951
* 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).
Revision
2951 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jul 15 20:07:47 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2948
* NKSP language: Added support for user defined script functions.
* Bumped version (2.0.0.svn18).
Revision
2948 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jul 15 15:29:04 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2947
* 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).
Revision
2947 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 14 10:37:28 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2945
* NKSP language correction: allow empty statements in entire language
(i.e. "if end if").
* Bumped version (2.0.0.svn16).
Revision
2945 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 14 00:22:26 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2942
* 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).
Revision
2942 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 13 15:51:06 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2938
* 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).
Revision
2938 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 11 17:10:40 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2935
* 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).
Revision
2935 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 10 14:24:13 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2931
* 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).
Revision
2931 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 9 14:38:33 2016 UTC
(7 years, 4 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2927
* 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).
Revision
2927 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 30 16:44:46 2016 UTC
(7 years, 5 months ago)
by
schoenebeck
File length: 58777 byte(s)
Diff to
previous 2911
* Fix: Release trigger voices were not spawned on sustain pedal up
(CC #64) events.
* Fix: Release trigger voices can now also distinguish correctly between
note-off and sustain pedal up events.
* Bumped version (2.0.0.svn10).
Revision
2911 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon May 16 20:27:33 2016 UTC
(7 years, 6 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2902
* NKSP language grammar correction: allow empty event handler bodies
like "on note end on".
* Bumped version (2.0.0.svn9).
Revision
2902 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 3 14:00:16 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2889
* Reload instrument script automatically after being modified by an
instrument editor.
* Bumped version (2.0.0.svn8).
Revision
2889 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Apr 25 17:28:23 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2888
* 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).
Revision
2888 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Apr 24 18:16:10 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2885
* 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).
Revision
2885 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Apr 22 15:37:45 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2884
* Instrument script classes now exported with the liblinuxsampler C++ API.
* Added new API method ScriptVM::syntaxHighlighting() which provides
a convenient syntax highlighting backend for external instrument
script editor applications.
* Bumped version (2.0.0.svn5).
Revision
2884 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Apr 20 15:22:58 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58741 byte(s)
Diff to
previous 2879
* Automake: set environment variable GCC_COLORS=auto to allow GCC to
auto detect whether it (sh/c)ould output its messages in color.
* Fixed behavior of built-in script function "ignore_event()".
* Bumped version (2.0.0.svn4).
Revision
2879 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Apr 19 14:07:53 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58741 byte(s)
Diff to
previous 2871
* 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).
Revision
2871 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Apr 10 18:22:23 2016 UTC
(7 years, 7 months ago)
by
schoenebeck
File length: 58741 byte(s)
Diff to
previous 2866
* 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).
Revision
2719 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 25 22:46:38 2015 UTC
(8 years, 9 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2687
* CoreMIDI: fixed auto bind feature to CoreMIDI ports that go online
* CoreMIDI: fixed minor memory leak
* Bumped version (1.0.0.svn61)
Revision
2687 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 4 17:16:05 2015 UTC
(8 years, 11 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2684
* Instrument editor interface: Changed instrument editor plugin interface,
providing additional informations like the EngineChannel for which the
instrument editor was spawned for. This allows the instrument editors to
interact more actively with the sampler.
* Bumped version (1.0.0.svn60).
Revision
2684 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Dec 29 16:54:33 2014 UTC
(8 years, 11 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2672
* Fixed compilation error that occurred with some compilers, triggered by
recent libgig changes.
* Bumped version (1.0.0.svn59).
Revision
2672 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Sep 6 13:04:01 2014 UTC
(9 years, 2 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2665
* Fixed MIDI program change messages being ignored if quickly executed
after each other (fixes #231).
Revision
2665 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 6 00:49:36 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2662
* Another fix regarding virtual MIDI device event import.
* Bumped version (1.0.0.svn57).
Revision
2662 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 2 22:24:02 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2659
* Fixed virtual MIDI device event import (which caused i.e. the
events from the virtual keyboard of gigedit to be ignored by the
sampler).
* Bumped version (1.0.0.svn56).
Revision
2659 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jun 29 19:34:28 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2645
* Fixed crash which happened if instrument without
instrument script was loaded (fixes #227).
* Bumped version (1.0.0.svn55).
Revision
2645 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jun 18 00:14:57 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2630
* 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).
Revision
2630 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 13 15:01:06 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2629
* 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).
Revision
2629 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 12 18:25:11 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2619
* Implemented built-in instrument script function "note_off()".
* Bumped version (1.0.0.svn52).
Revision
2619 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jun 11 13:24:32 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2618
* 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).
Revision
2618 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jun 11 11:39:44 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2614
* Fixed execution of "init" instrument script handler.
* Fixed further crashes.
* Bumped version (1.0.0.svn50).
Revision
2613 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Jun 10 15:17:01 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2612
* Implemented built-in script int array variable $KEY_DOWN.
* Bumped version (1.0.0.svn48).
Revision
2611 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jun 9 19:20:37 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2600
* Fixed crash when loading an instrument script.
* Fixed "init" script handler only to be executed once:
when the script was loaded.
* Fixed aftertouch script event which always had value zero
and controller number was set to aftertouch value instead.
* gig Engine: Fixed handling of "smartmidi" dimension, which
was recognized as "unknown" dimension.
* Fixed script function gig_set_dim_zone(): was accessing
wrong event.
* ls_instr_script command line tool: is now not limited to
core language scripts, but can now also parse sampler format
dependent instrument scripts, with the respective specific
built-in script variables and functions.
* ScriptVM: Fixed runtime behavior of "and" and "or" binary
script expressions, which also evaluated the right hand side
of the expression even if the left hand side already failed
the overall expression semantic to become true.
* Bumped version (1.0.0.svn46).
Revision
2600 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jun 7 00:16:03 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2598
* 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).
Revision
2598 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 6 12:38:54 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2596
* 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).
Revision
2596 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 5 19:39:12 2014 UTC
(9 years, 5 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2594
* 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).
Revision
2594 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 5 00:16:25 2014 UTC
(9 years, 6 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2581
* 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).
Revision
2581 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri May 30 12:48:05 2014 UTC
(9 years, 6 months ago)
by
schoenebeck
File length: 58776 byte(s)
Diff to
previous 2578
* (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).
Revision
2565 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 20 12:21:39 2014 UTC
(9 years, 6 months ago)
by
schoenebeck
File length: 58736 byte(s)
Diff to
previous 2559
* Giga format: Fixed crash that happened with velocity split sounds
under certain conditions (see also previous commit on libgig).
* Bumped version to 1.0.0.svn40.
Revision
2559 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 18 17:38:25 2014 UTC
(9 years, 6 months ago)
by
schoenebeck
File length: 58736 byte(s)
Diff to
previous 2535
* Aftertouch: extended API to explicitly handle channel pressure and
polyphonic key pressure events (so far polyphonic pressure was not
supported at all, and channel pressure was rerouted as CC128 but not
used so far).
* Gig Engine: Fixed support for 'aftertouch' attenuation controller.
* Bumped version (1.0.0.svn39).
Revision
2535 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Apr 15 19:35:35 2014 UTC
(9 years, 7 months ago)
by
schoenebeck
File length: 58736 byte(s)
Diff to
previous 2534
* LSCP server: optimized server side processing of LSCP shell tasks (caused
a sluggish behavior, i.e. when using arrow up/down keys in LSCP shell).
* LSCP shell: fixed crash on server disconnection.
* LSCP shell: fixed trash printed on terminal for LSCP documentation
sometimes.
* Automake: tried to address a compilation error with automake 1.9
(see bug #216), seems that it did not fix it though.
* Bumped version (1.0.0.svn38).
Revision
2534 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Mar 9 21:34:03 2014 UTC
(9 years, 8 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2532
* LSCP shell (WIP): Added initial support for built-in LSCP reference
documentation, which will automatically show the relevant LSCP reference
section on screen as soon as one specific LSCP command was detected while
typing on the command line.
* Bumped version (1.0.0.svn37).
Revision
2532 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Mar 5 17:29:15 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2531
* LSCP server: fixed crash caused by endless recursion in
LSCP shell grammar evaluation algorithm.
* LSCP shell: quit shell app when TCP connection aborted.
* Bumped version (1.0.0.svn36).
Revision
2531 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Mar 5 00:02:21 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2529
* LSCP shell: Added support for moving cursor left/right with arrow keys.
* Bumped version (1.0.0.svn35).
Revision
2529 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Mar 4 20:41:47 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2523
* SFZ format: Added support for "#include" instruction (modified patch
which was originally posted by Sergey on LS mailing list).
* Bumped version (1.0.0.svn34).
Revision
2523 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 23 19:10:36 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2521
* LSCP Server: Fixed bug in LSCP grammar definition which caused a
statement like "GET SERVER INFOasdf\n" to be accepted as valid
statement (was so far practically irrelevant, however it caused
problems with the following new LSCP shell's auto completion
feature).
* LSCP shell: improvement of auto completion feature, which now
not only resolves the next LSCP command token, but the longest,
unique sequence of LSCP commands expected next. Accordingly it
can now auto complete an entire line.
* Bumped version (1.0.0.svn33).
Revision
2521 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 19 19:02:43 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58725 byte(s)
Diff to
previous 2519
* VirtualMidiDevice: implemented support for program change, bank select
and pitch bend.
* Bumped version (1.0.0.svn32).
Revision
2519 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 8 09:34:32 2014 UTC
(9 years, 9 months ago)
by
persson
File length: 58725 byte(s)
Diff to
previous 2518
* enabled automake 'subdir-objects' option and moved external source
references (vst, au, asio) from makefiles to cpp files, in order to
get rid of warnings from automake 1.14
Revision
2518 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 8 00:49:30 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 58707 byte(s)
Diff to
previous 2517
* LSCP shell (WIP): added support for browsing the command
history with up / down keys.
* LSCP server: fixed compilation error with Bison 3.x.
* Bumped version (1.0.0.svn31).
Revision
2517 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Feb 7 19:53:09 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 57958 byte(s)
Diff to
previous 2516
* LSCP shell (WIP): show a prompt & welcome message
* LSCP shell (WIP): fixed startup crash that happened
on some systems
* Bumped version (1.0.0.svn30).
Revision
2516 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Feb 6 21:11:23 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 57958 byte(s)
Diff to
previous 2515
* WIP: LSCP Shell: implemented support for auto-correction of
obvious and trivial LSCP syntax mistakes, support for
auto-completion by tab key and visual completion suggestion
while typing.
* Bumped version (1.0.0.svn29).
Revision
2515 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 5 20:45:18 2014 UTC
(9 years, 9 months ago)
by
schoenebeck
File length: 57958 byte(s)
Diff to
previous 2512
* WIP: Introducing the LSCP shell: for now, providing color
highlighting while typing (indicating correct part bold white,
incorrect part red, and turning green when the command is
complete. The shell application is implemented as thin client,
that is the parser work is performed on sampler side and the
shell application is just providing output formatting.
* Bumped version (1.0.0.svn28).
Revision
2512 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 26 17:47:43 2014 UTC
(9 years, 10 months ago)
by
schoenebeck
File length: 57916 byte(s)
Diff to
previous 2510
* JACK audio driver: return JACK server's current sample rate
as default value for audio device parameter "SAMPLERATE"
(fixes #166).
* Bumped version (1.0.0.svn27).
Revision
2510 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jan 23 04:00:26 2014 UTC
(9 years, 10 months ago)
by
schoenebeck
File length: 57916 byte(s)
Diff to
previous 2500
* LSCP server: provide comprehensive error messages on LSCP
syntax errors (suggesting expected next non-terminal symbols)
* Bumped version (v1.0.0.svn26).
Revision
2500 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 10 12:20:05 2014 UTC
(9 years, 10 months ago)
by
schoenebeck
File length: 57916 byte(s)
Diff to
previous 2494
* Added support for multiple MIDI input ports per sampler channel (added
various new C++ API methods for this new feature/design, old C++ API
methods are now marked as deprecated but should still provide full
behavior backward compatibility).
* LSCP Network interface: Added the following new LSCP commands for the new
feature mentioned above: "ADD CHANNEL MIDI_INPUT",
"REMOVE CHANNEL MIDI_INPUT" and "LIST CHANNEL MIDI_INPUTS". As with the
C++ API changes, the old LSCP commands for MIDI input management are now
marked as deprecated, but are still there and should provide full behavior
backward compatibility.
* New LSCP specification document (LSCP v1.6).
* AbstractEngine::GSCheckSum(): don't allocate memory on the stack (was
unsafe and caused compilation error with old clang 2.x).
* Bumped version (1.0.0.svn25).
Revision
2494 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 1 17:48:01 2014 UTC
(9 years, 11 months ago)
by
schoenebeck
File length: 57916 byte(s)
Diff to
previous 2478
* Enabled automatic svn "Revision" macro expansion on certain files.
* Bumped version to 1.0.0.svn24.
Revision
2478 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Oct 19 07:52:33 2013 UTC
(10 years, 1 month ago)
by
persson
File length: 57916 byte(s)
Diff to
previous 2473
* fixed build error on newer MinGW
* support building with older jack versions
* support building with spaces in vst sdk path
Revision
2473 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Sep 15 17:55:56 2013 UTC
(10 years, 2 months ago)
by
schoenebeck
File length: 57869 byte(s)
Diff to
previous 2463
* Mac OS X: added temporary hack allowing to spawn gigedit as callback
on the process's main thread.
* Bumped version to 1.0.0.svn23.
Revision
2448 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri May 3 14:26:32 2013 UTC
(10 years, 7 months ago)
by
schoenebeck
File length: 57869 byte(s)
Diff to
previous 2399
* Immediately apply scale tuning changes to active voices.
* Exposed scale tuning to C++ API (along to the already existing standard
SysEx way).
* Bumped version to 1.0.0.svn21
Revision
2372 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Sep 22 18:28:38 2012 UTC
(11 years, 2 months ago)
by
schoenebeck
File length: 57844 byte(s)
Diff to
previous 2369
* VST: implemented retrieval and switching of programs using the
sampler's internal MIDI instrument mapping system
* VST: reply to "canDo" plugin features we don't know as "don't know"
* bumped version to 1.0.0.svn19
Revision
2356 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 8 14:44:47 2012 UTC
(11 years, 4 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57591 byte(s)
Diff to
previous 2343
* LV2: use urid and atom extensions instead of deprecated uri-map and
event
* LV2: lv2 package 1.0 is now required to build the LV2 plugin
* LV2: changed number of output channels to 16 stereo, just like the
VST and AU plugins
Revision
2343 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Apr 29 16:14:45 2012 UTC
(11 years, 7 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57800 byte(s)
Diff to
previous 2330
* fixed configure script error with old autoconf versions
* LV2: use the new lv2 package if present
* lsatomic.h: use gcc provided atomic functions if building with gcc
4.7 and C++11
* added comments in lsatomic.h
Revision
2330 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Mar 12 15:14:31 2012 UTC
(11 years, 8 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2317
* Introduced new C++ API method EngineChannel::InstrumentFileName(int index)
allowing to retrieve the whole list of files used for the loaded
instrument on an engine channel (a.k.a. part). Some GigaStudio instruments
for example are splitted over several files like "Foo.gig", "Foo.gx01",
"Foo.gx02", ...
* Bumped version to 1.0.0.svn18
Revision
2317 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 19 12:13:19 2012 UTC
(11 years, 9 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2304
* sfz engine bugfix: looping was disabled if loop_start was set to 0
* sfz engine: allow regions with end=-1 to turn off other regions
using the group and off_by opcodes (#168)
* sfz engine: made end=0 play the whole sample
* sfz engine: fixed support for lochan and hichan opcodes (#155)
* bumped version to 1.0.0.svn17
Revision
2275 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 19 21:48:45 2011 UTC
(12 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2238
* Bugfix: When creating MIDI instrument map entries with "PERSISTENT"
type, the instruments were uselessly precached with zero samples,
however it still took the full preloading time and on 1st program
change the respective instrument was completely reloaded again.
* Bumped version to 1.0.0.svn15
Revision
2222 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 28 18:24:12 2011 UTC
(12 years, 4 months ago)
by
iliev
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2217
* sfz engine: implemented opcodes fileg_delay, fileg_start, fileg_attack,
fileg_hold, fileg_decay, fileg_sustain, fileg_release, fileg_vel2delay,
fileg_vel2attack, fileg_vel2hold, fileg_vel2decay, fileg_vel2sustain,
fileg_vel2release
* bumped version to 1.0.0.cvs13
Revision
2205 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 11 17:52:01 2011 UTC
(12 years, 4 months ago)
by
iliev
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2203
* Introduced Signal Units and Signal Unit Racks, which hopefully will meet
the demands of the new engines for flexible signal processing.
* sf2: Initial implementation of vibrato LFO, fixes in modulation EG and
and volume EG (work in progress)
Revision
2203 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 9 16:44:27 2011 UTC
(12 years, 4 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57660 byte(s)
Diff to
previous 2197
* sf2 engine: fine-tuned amplitude EG (by switching from gig to sfz EG)
* sfz engine: added support for EG hold (ampeg_hold)
* Mac OS X: made it possible to specify plugin installation dir to
configure
Revision
2197 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 2 09:55:42 2011 UTC
(12 years, 5 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57524 byte(s)
Diff to
previous 2185
* AU: changed number of output channels from one stereo to 16 stereo
* VST: made it possible to build the VST plugin for Mac
* AU: link AU plugin dynamically if --disable-shared isn't specified
* minor Makefile fix for building lscpparser when build and source
directories are separate
Revision
2183 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jun 11 17:53:32 2011 UTC
(12 years, 5 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 57255 byte(s)
Diff to
previous 2167
* Mac OS X fixes: support the new dir for Core Audio SDK, fixed name
collision of enum in EffectControl, fixed building outside source
directory, fixed wrong name of destructor in
AudioOutputDeviceCoreAudio.cpp
* made sure all source files for hostplugins are included when doing
"make dist"
* removed empty directories left from the cvs to svn migration
Revision
2140 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 5 10:35:13 2010 UTC
(13 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 56650 byte(s)
Diff to
previous 2138
* raised limit of program change queue from 100 to 512
(as suggested by Alex Stone)
* removed limit of maximum amount of MIDI ports per MIDI device, since
there is no reason for this limit
* minor syntax simplification regarding 2 new LSCP commands: changed
"SET FX_SEND SEND_EFFECT"" to "SET FX_SEND EFFECT" and changed
"REMOVE FX_SEND SEND_EFFECT"" to "REMOVE FX_SEND EFFECT", also changed
the respective category field of command "GET FX_SEND INFO" from
"SEND_EFFECT" to "EFFECT"
* updated LSCP specification document
* bumped version to 1.0.0.cvs10
Revision
2137 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Oct 4 12:20:23 2010 UTC
(13 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 56649 byte(s)
Diff to
previous 2135
* revised previously added new LSCP commands regarding effect handling:
renamed "master effects" to "send effects", since this is the actual
correct common term for those effects
* also corrected the names regarding "send effects" in the respective
methods of the "FxSsnd" class and "AudioOutputDevice" class of the
sampler's C++ API, the old methods are still available but marked as
deprecated and scheduled for removal
* added LSCP command "SET FX_SEND SEND_EFFECT <sampler_channel>
<fx_send_id> <effect_chain> <chain_pos>"
* added LSCP command "REMOVE FX_SEND SEND_EFFECT <sampler_channel>
<fx_send_id>"
* added a list of common known LADSPA paths (for Windows and POSIX) which
will be automatically checked for being used as LADSPA plugin directory
(if the user did not set the LADSPA_PATH environment variable explicitly)
* bumped version to 1.0.0.cvs8
Revision
2135 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Sep 30 20:00:43 2010 UTC
(13 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 56649 byte(s)
Diff to
previous 2124
* added and implemented a set of 19 new LSCP commands for controlling
internal effects:
- added LSCP command "GET AVAILABLE_EFFECTS"
- added LSCP command "LIST AVAILABLE_EFFECTS"
- added LSCP command "GET EFFECT INFO <effect-index>"
- added LSCP command "CREATE EFFECT_INSTANCE <effect-index>"
- added LSCP command
"CREATE EFFECT_INSTANCE <effect-system> <module> <effect-name>"
- added LSCP command "DESTROY EFFECT_INSTANCE <effect-instance>"
- added LSCP command "GET EFFECT_INSTANCES"
- added LSCP command "LIST EFFECT_INSTANCES"
- added LSCP command "GET EFFECT_INSTANCE INFO <effect-instance>"
- added LSCP command "GET EFFECT_INSTANCE_INPUT_CONTROL INFO
<effect-instance> <input-control>"
- added LSCP command "SET EFFECT_INSTANCE_INPUT_CONTROL <effect-instance>
<input-control> <value>"
- added LSCP command "GET MASTER_EFFECT_CHAINS <audio-device>"
- added LSCP command "LIST MASTER_EFFECT_CHAINS <audio-device>"
- added LSCP command "ADD MASTER_EFFECT_CHAIN <audio-device>"
- added LSCP command
"REMOVE MASTER_EFFECT_CHAIN <audio-device> <effect-chain>"
- added LSCP command
"GET MASTER_EFFECT_CHAIN INFO <audio-device> <effect-chain>"
- added LSCP command "APPEND MASTER_EFFECT_CHAIN EFFECT <audio-device>
<effect-chain> <effect-instance>"
- added LSCP command "INSERT MASTER_EFFECT_CHAIN EFFECT <audio-device>
<effect-chain> <effect-instance> <effect-chain-pos>"
- added LSCP command "REMOVE MASTER_EFFECT_CHAIN EFFECT <audio-device>
<effect-chain> <effect-instance>"
* bumped version to 1.0.0.cvs7
Revision
2121 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Sep 14 17:09:08 2010 UTC
(13 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 56499 byte(s)
Diff to
previous 2119
* implemented Roland GS NRPN 1ArrH which allows to set volume per note
* implemented Roland GS NRPN 1CrrH which allows to set pan per note
* implemented Roland GS NRPN 1DrrH which allows to set reverb send per
note (in this implementation of the sampler its simply hard routed to
the 1st effect send of the sampler channel, no matter what the actual
effect type is)
* implemented Roland GS NRPN 1ErrH which allows to set chorus send per
note (in this implementation of the sampler its simply hard routed to
the 2nd effect send of the sampler channel, no matter what the actual
effect type is)
* bumped version to 1.0.0cvs4
Revision
2053 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 27 20:29:36 2010 UTC
(13 years, 10 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 56289 byte(s)
Diff to
previous 2024
* Introduced support for optional environment variable
"LINUXSAMPLER_PLUGIN_DIR" which allows to override the directory
where the sampler shall look for instrument editor plugins
(patch by Luis Garrido, slightly modified).
* bumped version to 1.0.0.cvs3
Revision
2012 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Oct 23 17:53:17 2009 UTC
(14 years, 1 month ago)
by
iliev
Original Path:
linuxsampler/trunk/configure.in
File length: 56830 byte(s)
Diff to
previous 1956
* Refactoring: moved the independent code from
the Gigasampler format engine to base classes
* SFZ format engine: experimental code (not usable yet)
* SoundFont format engine: experimental code (not usable yet)
* Fixed crash which may occur when MIDI key + transpose is out of range
Revision
1895 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 3 12:15:40 2009 UTC
(14 years, 7 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 55116 byte(s)
Diff to
previous 1876
* fixes for using large audio device buffers
* VST: added support for sample rate and buffer size changes
* VST: close editor (Fantasia) when the VST is removed
* minor fix in configure for mmsystem.h detection on MinGW
* removed warnings from gcc 4.4 and valgrind
Revision
1876 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Mar 27 12:16:12 2009 UTC
(14 years, 8 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 55205 byte(s)
Diff to
previous 1857
* added optional 3rd party user data parameter for following
liblinuxsampler C++ API methods: InstrumentEditor::Main(),
InstrumentEditor::Launch(), InstrumentManager::LaunchInstrumentEditor()
* minor cosmetics regarding configure script summary
* debian packaging: include DSSI and LV2 plugin binaries of the sampler
into the liblinuxsampler package
* RPM packaging: include DSSI and LV2 plugin binaries of the sampler
into the liblinuxsampler package
* bumped version to 0.5.1.12cvs
Revision
1857 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Mar 7 19:23:10 2009 UTC
(14 years, 8 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 53158 byte(s)
Diff to
previous 1855
* fixed hanging notes which occured when note-off event had the exact
same time stamp as the voice's note-on event and occured both in the
same audio fragment cycle (fixes bug #112)
* bumped version to 0.5.1.11cvs
Revision
1852 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Mar 1 22:22:03 2009 UTC
(14 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 53163 byte(s)
Diff to
previous 1846
* bugfix: on sample reference changes (instrument editor), only un-cache
the respective sample if it's really not used by any sampler engine
anymore
* re-cache samples in case they were changed by an instrument editor, e.g.
when a sample was added while playing (#82)
* bumped version to 0.5.1.10cvs
Revision
1830 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 31 11:31:41 2009 UTC
(14 years, 10 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 52956 byte(s)
Diff to
previous 1829
* automatic stacktrace mechanism is now turned off by default and can
be switched on by command line option "--stacktrace" (the automatic
stacktrace mechanism seems to be broken on most systems at the moment)
* bumped version to 0.5.1.9cvs
Revision
1800 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Dec 7 01:26:46 2008 UTC
(14 years, 11 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 52230 byte(s)
Diff to
previous 1794
* maximum voices and disk streams can now be altered at runtime (added new
LSCP commands "GET VOICES", "SET VOICES", "GET STREAMS", "SET STREAMS"
and accordingly new LSCP events "GLOBAL_INFO:VOICES" and
"GLOBAL_INFO:STREAMS")
* bumped version to 0.5.1.8cvs
Revision
1762 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Aug 29 17:33:02 2008 UTC
(15 years, 3 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 51187 byte(s)
Diff to
previous 1750
* global volume sysex message can now be selected at compile time to be
only applied to the sampler channels that are connected to the respective
MIDI input port the SysEx message arrived on (by default global volume
SysEx messages apply globally to the whole sampler)
* bumped version to 0.5.1.7cvs
Revision
1750 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 10 15:00:38 2008 UTC
(15 years, 4 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 50197 byte(s)
Diff to
previous 1748
* added support for chromatic / drumkit mode Roland GS Sysex message
which is usally used to switch a part between chromatic sounds and
drumkit sounds (as opposed to their common default setting of MIDI
part 10 being a drumkit part and all other ones chromatic parts), in
LS however one can switch between the first 16 MIDI instrument maps
of all ones defined for the sampler
* bumped version to 0.5.1.6cvs
Revision
1748 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jun 22 14:46:46 2008 UTC
(15 years, 5 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 50197 byte(s)
Diff to
previous 1742
* bugfix: notes triggered at position 0 in the audio buffer were
sometimes wrongly killed in the same buffer, causing no sound to be
played
* fixes for audio drivers with varying buffer sizes
* Makefile fix: JACK_CFLAGS wasn't used
* JACK driver: use jack_client_open instead of the deprecated
jack_client_new
Revision
1695 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 16 01:09:33 2008 UTC
(15 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 50005 byte(s)
Diff to
previous 1686
* added new LSCP event "DEVICE_MIDI" which can be used by frontends to
react on MIDI data arriving on certain MIDI input devices (so far only
Note-On and Note-Off events are sent via this LSCP event)
* bumped version to 0.5.1.4cvs
Revision
1686 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Feb 14 14:58:50 2008 UTC
(15 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 50005 byte(s)
Diff to
previous 1662
* added new LSCP event "CHANNEL_MIDI" which can be used by frontends to
react on MIDI data arriving on certain sampler channels (so far only
Note-On and Note-Off events are sent via this LSCP event)
* bumped LSCP compliance version to 1.4
* bumped LS version to 0.5.1.3cvs
Revision
1662 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 3 16:21:38 2008 UTC
(15 years, 10 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 50005 byte(s)
Diff to
previous 1659
* the promised "cleanup": rewrote virtual MIDI device's notification a bit
(using now a safe double buffer approach using "SynchronizedConfig"
instead of the Trylock() approach previously to synchronize the list of
virtual MIDI devices)
* bumped version to 0.5.1.2cvs
Revision
1525 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Nov 25 17:47:46 2007 UTC
(16 years ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 48567 byte(s)
Diff to
previous 1502
* LSCP: added new LSCP commands: "GET FILE INSTRUMENTS <file>",
"LIST FILE INSTRUMENTS <file>" and
"GET FILE INSTRUMENT INFO <file> <index>" for retrieving informations
about an arbitrary instrument file on the system where the sampler is
running on (LSCP specs yet to be updated!)
* bumped version to 0.5.0.1cvs
* bumped LSCP compliance to LSCP version 1.3
Revision
1424 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Oct 14 22:00:17 2007 UTC
(16 years, 1 month ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 44836 byte(s)
Diff to
previous 1399
* code cleanup:
- global.h now only covers global definitions that are needed for the C++
API header files, all implementation internal global definitions are now
in global_private.h
- atomic.h is not exposed to the C++ API anymore (replaced the references
in SynchronizedConfig.h for this with local definitions)
- no need to include config.h anymore for using LS's API header files
- DB instruments classes are not exposed to the C++ API
- POSIX callback functions of Thread.h are hidden
- the (optional) gig Engine benchmark compiles again
- updated Doxyfile.in
- fixed warnings in API doc generation
* preparations for release 0.5.0
Revision
1399 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu Oct 11 18:53:29 2007 UTC
(16 years, 1 month ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 44843 byte(s)
Diff to
previous 1375
* the following LSCP command return escape sequences in at least one
of their LSCP response fields: "GET ENGINE INFO", "GET CHANNEL INFO",
"GET MIDI_INSTRUMENT INFO", "GET MIDI_INSTRUMENT_MAP INFO",
"GET FX_SEND INFO", "GET SERVER INFO"
* listed all LSCP commands in the LSCP specs which may use escape
sequences in at least on of their response fields
* hide instrument editor related debug messages in the gig::Engine when
using the default debug level (which is 1)
* bumped version to 0.4.0.8cvs
Revision
1364 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Oct 1 13:38:37 2007 UTC
(16 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 44816 byte(s)
Diff to
previous 1360
* fixed egoistic --instruments-db-location command line switch ;-)
which caused all subsequent command line switches to be ignored
* the default location of the instruments DB file can now be overridden
with ./configure --enable-default-instruments-db-location=/foo/bar.db
* instruments DB feature can be disabled at compile time with
./configure --disable-instruments-db (i.e. for cross compilation)
* in case instruments DB feature is disable at compile time, don't
actually compile the instruments DB source files and don't install the
instruments DB API header files either
Revision
1321 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Sep 4 01:12:49 2007 UTC
(16 years, 3 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 42941 byte(s)
Diff to
previous 1259
* added highly experimental code for synchronizing instrument editors
hosted in the sampler's process to safely edit instruments while playing
without a crash (hopefully) by either suspending single regions wherever
possible or - if unavoidable - whole engine(s)
* disk thread: queue sizes are now proportional to CONFIG_MAX_STREAMS
instead of fix values
* removed legacy Makefiles in meanwhile deleted src/lib directory and its
subdirectories
* bumped version to 0.4.0.7cvs
Revision
1212 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 29 23:59:36 2007 UTC
(16 years, 6 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 42967 byte(s)
Diff to
previous 1187
* added highly experimental support for on-the-fly instrument editing
within the sampler's process (by using instrument editor plugins),
you'll notice the new "Registered instrument editors:" message on
startup, the plugin path can be overridden at compile time with
./configure --enable-plugin-dir=/some/dir
* added a new LSCP command "EDIT INSTRUMENT <sampler-channel>" to spawn
a matching instrument editor for the instrument on the given sampler
channel (LSCP command syntax might be subject to change soon)
* config.h is not going to be installed along with liblinuxsampler's
API header files anymore (not necessary anymore)
* take care of $(DESTDIR) when creating the instruments DB on 'make
install' rule (needed for packaging and cross compilation)
* bumped version to 0.4.0.5cvs
Revision
1175 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 6 16:38:35 2007 UTC
(16 years, 7 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 42133 byte(s)
Diff to
previous 1165
* added completely new XCode project files for Mac OSX which is now
capable to execute our autoconf environment, thus no need anymore
to maintain the compile time configuration file (osx/version.h) for
OSX manually (patch by Toshi Nagata)
Revision
1049 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 28 06:53:42 2007 UTC
(16 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 41244 byte(s)
Diff to
previous 1040
* the ALSA audio output driver parameters now reflect the correct
parameter value ranges for the respective selected sound card
(patch by Till Wimmer, a bit fixed and extended)
* bumped version to 0.4.0.4cvs
Revision
1040 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Wed Feb 7 15:41:31 2007 UTC
(16 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 41244 byte(s)
Diff to
previous 1012
* bugfix: sampler crashed when trying to persistently map a not existent or
corrupt .gig file ("MAP MIDI_INSTRUMENT ... PERSISTENT")
* behavior fix: reset FX send levels i.e. when receiving a MIDI "reset all
controllers" message
* bumped version to 0.4.0.3cvs
Revision
1012 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 7 15:52:36 2007 UTC
(16 years, 10 months ago)
by
capela
Original Path:
linuxsampler/trunk/configure.in
File length: 41244 byte(s)
Diff to
previous 1005
* Fixed a memory leak due to EngineFactory::Destroy() not doing it
as an actual destructor and just removing the engine instance from
factory stock and all instances allocated via EngineFactory::Create()
never got delete'd and thus their destructors never called. This bug
was evident while having many mapped instruments and querying the
instrument status via GET MIDI_INSTRUMENT INFO command, eating up
system memory very quickly and never let it go.
Revision
840 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Feb 26 13:00:08 2006 UTC
(17 years, 9 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 37575 byte(s)
Diff to
previous 838
* fixed some concurrency problems between the lscp thread and the
audio/midi threads for these commands: load engine, set channel
audio output device, set channel midi input device/port/channel and
remove channel. Thanks to Vincent Bongiorno for bug reports and
testing.
* removed an autotools warning
* fixed an iterator bug
* minor code clean-ups
Revision
830 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 15 18:23:11 2006 UTC
(17 years, 10 months ago)
by
persson
Original Path:
linuxsampler/trunk/configure.in
File length: 37263 byte(s)
Diff to
previous 829
* added linear interpolation of volume modulation inside a
subfragment; this prevents clicks during voice stealing. Can be
switched off with the --disable-interpolate-volume configure option.
Revision
829 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jan 14 14:07:47 2006 UTC
(17 years, 10 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 36521 byte(s)
Diff to
previous 826
* implemented portamento mode and solo mode (a.k.a 'mono mode'):
all modes can be altered via standard GM messages, that is CC5 for
altering portamento time, CC65 for enabling / disabling portamento
mode, CC126 for enabling solo mode and CC127 for disabling solo mode
* fixed EG3 (pitch envelope) synthesis which was neutral all the time
* configure.in: do not automatically pick optimized gcc flags if the user
already provided some on his own (as CXXFLAGS)
Revision
781 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 26 10:17:00 2005 UTC
(18 years, 2 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 34983 byte(s)
Diff to
previous 738
* fixed event handling bug which was introduced by the recent synthesis
optimizations (events were only processed for the first active voice)
* added global volume attenuation of -9 dB (0.35f) to prevent clipping
which can be overridden with --enable-global-attenuation
Revision
738 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Aug 16 17:14:25 2005 UTC
(18 years, 3 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 34449 byte(s)
Diff to
previous 726
* extensive synthesis optimization: reimplementation of EGs and LFO(s),
removed synthesis parameter prerendering and the synthesis parameter
matrix in general, splitting each audio fragment into subfragments now
where each subfragment uses constant synthesis parameters
(everything's still very buggy ATM)
Revision
714 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Jul 23 21:55:38 2005 UTC
(18 years, 4 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 32391 byte(s)
Diff to
previous 697
added benchmark to automatically detect the best triangle LFO
implementation (currently either an integer math solution or a
di-harmonic approximation), automatic detection can be overriden
with --enable-signed-triang-algo=x and --enable-unsigned-triang-algo=x
configure script argument though (mandatory for cross-compilation)
---
actual implementations of the new LFO solutions in LS will follow soon
Revision
697 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Jul 19 15:43:40 2005 UTC
(18 years, 4 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 26584 byte(s)
Diff to
previous 692
* install necessary development header files for allowing 3rd party
applications to link against liblinuxsampler
* liblinuxsampler's API documentation can be generated with 'make docs'
(Doxygen required)
Revision
563 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 22 20:43:32 2005 UTC
(18 years, 6 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 22767 byte(s)
Diff to
previous 554
* (re)implemented voice stealing algorithm "oldestvoiceonkey" and made it
the default voice stealing algorithm
* added new LSCP command "GET SERVER INFO" which currently returns
description and version about this sampler
* added some API documentation comments
* minor cleanup
Revision
554 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Thu May 19 19:25:14 2005 UTC
(18 years, 6 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 21957 byte(s)
Diff to
previous 536
* All compile time options are now centrally alterable as arguments to the
./configure script. All options are C Macros beginning with CONFIG_
prefix and will be placed into auto generated config.h file.
Revision
527 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon May 9 11:59:58 2005 UTC
(18 years, 6 months ago)
by
capela
Original Path:
linuxsampler/trunk/configure.in
File length: 5769 byte(s)
Diff to
previous 510
* [bug #9] Fixed for a LSCP command syntax convention
consistency, regarding the enumeration of available
sampler engines, Audio and MIDI drivers; this has
affected the semantics of the following commands:
GET AVAILABLE_ENGINES
GET AVAILABLE_AUDIO_DRIVERS
GET AVAILABLE_MIDI_DRIVERS
which are now returning an integer count of engines
and drivers, respectively, while the following
new commands are now being introduced:
LIST AVAILABLE_ENGINES
LIST AVAILABLE_AUDIO_DRIVERS
LIST AVAILABLE_MIDI_DRIVERS
taking on the previous functionality, returning
a comma separated list of names.
* LinuxSampler version bumped to 0.3.1.
Revision
504 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue May 3 00:37:35 2005 UTC
(18 years, 7 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 5510 byte(s)
Diff to
previous 497
* removed statically included libgig sources from the LinuxSampler code
base - you now have to compile and install libgig separately
* added -Wreturn-type gcc switch to avoid bugs with no returns on non void
functions in future
Revision
411 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sat Feb 26 02:01:14 2005 UTC
(18 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 5016 byte(s)
Diff to
previous 397
* design change: using now one sampler engine instance and one disk thread
instance for all sampler channels that are connected to the same audio
output device (and are using the same engine type of course)
* added EngineFactory / EngineChannelFactory to remove the annoying build
dependencies e.g. of the lscpserver to the actual sampler engine
implementations
* bumped version to 0.3.0 (current CVS state is still quite broken,
previous, stable CVS version was tagged as "v0_2_0" and is also available
as source tarball)
Revision
288 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 19 00:36:34 2004 UTC
(19 years, 1 month ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 4508 byte(s)
Diff to
previous 275
* configure.in: added check for UNIX98 compatibility, check if there's at
least one supported MIDI input and audio output system available, added
conditionals for ALSA and JACK
* src/drivers/audio/Makefile.am: ALSA and JACK drivers are only compiled
respectively if they're supported by the system
* MidiInputDeviceFactory.cpp, AudioOutputDeviceFactory.cpp: little
workaround for reported linker problem
* removed autotools generated files from CVS
Revision
133 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 18 14:29:02 2004 UTC
(19 years, 5 months ago)
by
capela
Original Path:
linuxsampler/trunk/configure.in
File length: 2897 byte(s)
Diff to
previous 124
* Load Instrument patch applied; this patch makes the
LOAD INSTRUMENT command to return immediately,
almost/always with an OK response, while spawning
the proper instrument file loading in the background.
* New INSTRUMENT_STATUS field on GET CHANNEL INFO result
set; the instrument status value holds the load progress
percentage if positive, otherwise a negative value is
evidence of a load exception error.
* VERSION is now set to 0.2.
Revision
80 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 23 19:16:33 2004 UTC
(19 years, 6 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2876 byte(s)
Diff to
previous 57
* biquad filter parameters are now calculated outside the interpolate
loop for better performance
* couple of loop unroll optimizations
* filter is now enabled by default
* cubic interpolation is now enabled by default
* reduced debug level to 1 to lower verbosity
* raised default limit for voices to 128
* raised default limit for streams to 150
* added some compiler optimization flags (-ffast-math -march -mcpu)
Revision
57 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun May 2 17:45:43 2004 UTC
(19 years, 7 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2771 byte(s)
Diff to
previous 53
* src/common/Thread.cpp: method StartThread() now blocks until thread
actually runs, mlockall() will only be applied for realtime threads
* libtoolized liblinuxsampler
* initiated automatic unit tests against the LinuxSampler codebase
(see src/testcases): already added a couple of tests for the Thread and
Mutex classes, you have to explicitly compile the unit tests by running
'make testcases' (you need to have cppunit installed though) and then you
can run the console version of the test runner by calling
'src/testcases/linuxsamplertest'
* src/Sampler.h: added API documentation
Revision
53 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Apr 26 17:15:51 2004 UTC
(19 years, 7 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2748 byte(s)
Diff to
previous 35
* completely restructured source tree
* implemented multi channel support
* implemented instrument manager, which controls sharing of instruments
between multiple sampler engines / sampler channels
* created abstract classes 'AudioOutputDevice' and 'MidiInputDevice' for
convenient implementation of further audio output driver and MIDI input
driver for LinuxSampler
* implemented following LSCP commands: 'SET CHANNEL MIDI INPUT TYPE',
'LOAD ENGINE', 'GET CHANNELS', 'ADD CHANNEL', 'REMOVE CHANNEL',
'SET CHANNEL AUDIO OUTPUT TYPE'
* temporarily removed all command line options
* LSCP server is now launched by default
Revision
35 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Fri Mar 5 13:46:15 2004 UTC
(19 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2525 byte(s)
Diff to
previous 33
* 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
Revision
33 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Mon Feb 16 19:30:42 2004 UTC
(19 years, 9 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2504 byte(s)
Diff to
previous 31
* implemented bidirectional voice state transition, means voice state can
switch arbitrary times between 'Sustained'<-->'Released' within it's life
time, thus the release process of a voice can be cancelled
* src/eg_vca.cpp: extended envelope generator by additional states
('Attack_Hold', 'Decay_1' and 'Decay_2')
* applied patch from Vladimir Senkov which adds new command line parameters
('--jackout', '--alsaout' and '--samplerate')
* configure.in: fixed compiler warning
Revision
31 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Jan 18 20:31:31 2004 UTC
(19 years, 10 months ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2429 byte(s)
Diff to
previous 18
* Added JACK support: Audio rendering process is now callback based and
independant of used audio output system. Interfaces to other audio output
systems can be added by creating a class derived from abstract base class
'AudioIO' and embedding the new class into linuxsampler.cpp.
* src/audiothread.cpp: applied patch from Vladimir Senkov which fixes
hanging notes in conjunction with the sustain pedal
Revision
18 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Dec 7 05:03:43 2003 UTC
(20 years ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 2232 byte(s)
Diff to
previous 12
* src/audioio.cpp: added support for Alsa 1.0.0
* src/audiothread.cpp: fixed several bugs in sustain pedal handling
* src/diskthread.cpp: fixed several bugs which occured under extreme
conditions (endless loop in audiothread, freezing the whole application,
outage of available disk streams)
* src/voice.cpp: fixed cubic interpolation (disabled by default; you can
enable it by setting USE_LINEAR_INTERPOLATION to 0 in src/voice.h)
* src/configure.in: added check for Alsa version
Revision
12 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Modified
Sun Nov 16 19:01:50 2003 UTC
(20 years ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 486 byte(s)
Diff to
previous 9
* src/gig.cpp: fixed bug in decompression algorithm which caused it not to
detect the end of a stream and let the disk streams reload forever also
resulting in strange sounds at the end of disk voices (concerned only
playback of compressed gig files)
* src/audiothread.cpp: deallocation of voices when they reached the end of
playback (thus e.g. when sustain pedal is pressed and a disk stream
reached it's end)
* various endian corrections needed for non intel systems
* introduced debug level, you can set the debug level and thus the
verbosity of LinuxSampler in src/global.h
Revision
9 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Added
Wed Nov 5 14:47:10 2003 UTC
(20 years, 1 month ago)
by
schoenebeck
Original Path:
linuxsampler/trunk/configure.in
File length: 472 byte(s)
* transition from plain Makefile to autotools, source files moved to src/
* configure.in: added test for x86 architecture
* src/voice.h: x86 specific asm optimization for double to int casts only
if compiling for x86 architecture
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.