libgig
4.4.1
|
Provides access to a Gigasampler/GigaStudio instrument. More...
#include <gig.h>
Public Member Functions | |
Region * | GetRegionAt (size_t pos) |
Returns Region at supplied pos position within the region list of this instrument. More... | |
Region * | GetFirstRegion () |
Returns the first Region of the instrument. More... | |
Region * | GetNextRegion () |
Returns the next Region of the instrument. More... | |
Region * | AddRegion () |
void | DeleteRegion (Region *pRegion) |
void | MoveTo (Instrument *dst) |
Move this instrument at the position before. More... | |
virtual void | UpdateChunks (progress_t *pProgress) |
Apply Instrument with all its Regions to the respective RIFF chunks. More... | |
virtual void | CopyAssign (const Instrument *orig) |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object. More... | |
Region * | GetRegion (unsigned int Key) |
Returns the appropriate Region for a triggered note. More... | |
MidiRule * | GetMidiRule (int i) |
Returns a MIDI rule of the instrument. More... | |
MidiRuleCtrlTrigger * | AddMidiRuleCtrlTrigger () |
Adds the "controller trigger" MIDI rule to the instrument. More... | |
MidiRuleLegato * | AddMidiRuleLegato () |
Adds the legato MIDI rule to the instrument. More... | |
MidiRuleAlternator * | AddMidiRuleAlternator () |
Adds the alternator MIDI rule to the instrument. More... | |
void | DeleteMidiRule (int i) |
Deletes a MIDI rule from the instrument. More... | |
Script * | GetScriptOfSlot (size_t index) |
Get instrument script (gig format extension). More... | |
void | AddScriptSlot (Script *pScript, bool bypass=false) |
Add new instrument script slot (gig format extension). More... | |
void | SwapScriptSlots (size_t index1, size_t index2) |
Flip two script slots with each other (gig format extension). More... | |
void | RemoveScriptSlot (size_t index) |
Remove script slot. More... | |
void | RemoveScript (Script *pScript) |
Remove reference to given Script (gig format extension). More... | |
size_t | ScriptSlotCount () const |
Instrument's amount of script slots. More... | |
bool | IsScriptSlotBypassed (size_t index) |
Whether script execution shall be skipped. More... | |
void | SetScriptSlotBypassed (size_t index, bool bBypass) |
Defines whether execution shall be skipped. More... | |
bool | IsScriptPatchVariableSet (size_t slot, String variable) |
Checks whether a certain script 'patch' variable value is set. More... | |
std::map< String, String > | GetScriptPatchVariables (size_t slot) |
Get all overridden script 'patch' variables. More... | |
String | GetScriptPatchVariable (size_t slot, String variable) |
Get overridden initial value for 'patch' variable. More... | |
void | SetScriptPatchVariable (size_t slot, String variable, String value) |
Override initial value for 'patch' variable. More... | |
void | UnsetScriptPatchVariable (ssize_t slot=-1, String variable="") |
Drop overridden initial value(s) for 'patch' variable(s). More... | |
Public Attributes | |
int32_t | Attenuation |
in dB | |
uint16_t | EffectSend |
int16_t | FineTune |
in cents | |
uint16_t | PitchbendRange |
Number of semitones pitchbend controller can pitch (default is 2). | |
bool | PianoReleaseMode |
range_t | DimensionKeyRange |
0-127 (where 0 means C1 and 127 means G9) | |
Protected Types | |
typedef std::vector< Region * > | RegionList |
typedef std::vector< Articulation * > | ArticulationList |
Protected Member Functions | |
Instrument (File *pFile, RIFF::List *insList, progress_t *pProgress=NULL) | |
~Instrument () | |
Destructor. More... | |
void | CopyAssign (const Instrument *orig, const std::map< Sample *, Sample *> *mSamples) |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object. More... | |
void | UpdateRegionKeyTable () |
void | LoadScripts () |
void | UpdateScriptFileOffsets () |
size_t | CountRegions () |
Returns the amount of regions of this instrument. More... | |
void | DeleteRegion (Region *pRegion) |
virtual void | DeleteChunks () |
Remove all RIFF chunks associated with this Instrument object. More... | |
virtual void | CopyAssign (const Instrument *orig) |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object. More... | |
virtual void | CopyAssign (const Resource *orig) |
Make a deep copy of the Resource object given by orig and assign it to this object. More... | |
virtual void | CopyAssign (const Articulator *orig) |
Not yet implemented in this version, since the .gig format does not need to copy DLS articulators and so far nobody used pure DLS instrument AFAIK. | |
void | CopyAssignCore (const Instrument *orig) |
virtual void | LoadRegions () |
Resource * | GetParent () |
const Resource * | GetParent () const |
void | GenerateDLSID () |
Generates a new DLSID for the resource. | |
Articulation * | GetArticulation (size_t pos) |
Returns Articulation at supplied pos position within the articulation list. More... | |
Articulation * | GetFirstArticulation () |
Returns the first Articulation in the list of articulations. More... | |
Articulation * | GetNextArticulation () |
Returns the next Articulation from the list of articulations. More... | |
void | LoadArticulations () |
Static Protected Member Functions | |
static void | GenerateDLSID (dlsid_t *pDLSID) |
Protected Attributes | |
Region * | RegionKeyTable [128] |
fast lookup for the corresponding Region of a MIDI key | |
bool | IsDrum |
Indicates if the Instrument is a drum type, as they differ in the synthesis model of DLS from melodic instruments. | |
uint16_t | MIDIBank |
Reflects combination of MIDIBankCoarse and MIDIBankFine (bank 1 - bank 16384). Do not change this value, it will not be saved! Change MIDIBankCoarse and MIDIBankFine instead (we might change that in future). | |
uint8_t | MIDIBankCoarse |
Reflects the MIDI Bank number for MIDI Control Change 0 (bank 1 - 128). | |
uint8_t | MIDIBankFine |
Reflects the MIDI Bank number for MIDI Control Change 32 (bank 1 - 128). | |
uint32_t | MIDIProgram |
Specifies the MIDI Program Change Number this Instrument should be assigned to. | |
uint32_t | Regions |
Reflects the number of Region defintions this Instrument has. | |
RIFF::List * | pCkInstrument |
RegionList * | pRegions |
RegionList::iterator | RegionsIterator |
Info * | pInfo |
Points (in any case) to an Info object, providing additional, optional infos and comments. | |
dlsid_t * | pDLSID |
Points to a dlsid_t structure if the file provided a DLS ID else is NULL. | |
Resource * | pParent |
RIFF::List * | pResourceList |
RIFF::List * | pParentList |
ArticulationList * | pArticulations |
ArticulationList::iterator | ArticulationsIterator |
Provides access to a Gigasampler/GigaStudio instrument.
This class provides access to Gigasampler/GigaStudio instruments contained in .gig files. A gig instrument is merely a set of keyboard ranges (called Region), plus some additional global informations about the instrument. The major part of the actual instrument definition used for the synthesis of the instrument is contained in the respective Region object (or actually in the respective DimensionRegion object being, see description of Region for details).
Since the gig format was designed as extension to the DLS file format, this class is derived from the DLS::Instrument class. So also refer to DLS::Instrument for additional informations, class attributes and methods.
|
protectedvirtual |
MidiRuleAlternator * gig::Instrument::AddMidiRuleAlternator | ( | ) |
MidiRuleCtrlTrigger * gig::Instrument::AddMidiRuleCtrlTrigger | ( | ) |
MidiRuleLegato * gig::Instrument::AddMidiRuleLegato | ( | ) |
void gig::Instrument::AddScriptSlot | ( | Script * | pScript, |
bool | bypass = false |
||
) |
Add new instrument script slot (gig format extension).
Add the given real-time instrument script reference to this instrument, which shall be executed by the sampler for for this instrument. The script will be added to the end of the script list of this instrument. The positions of the scripts in the Instrument's Script list are relevant, because they define in which order they shall be executed by the sampler. For this reason it is also legal to add the same script twice to an instrument, for example you might have a script called "MyFilter" which performs an event filter task, and you might have another script called "MyNoteTrigger" which triggers new notes, then you might for example have the following list of scripts on the instrument:
Which would make sense, because the 2nd script launched new events, which you might need to filter as well.
There are two ways to disable / "bypass" scripts. You can either disable a script locally for the respective script slot on an instrument (i.e. by passing false
to the 2nd argument of this method, or by calling SetScriptBypassed()). Or you can disable a script globally for all slots and all instruments by setting Script::Bypass.
pScript | - script that shall be executed for this instrument |
bypass | - if enabled, the sampler shall skip executing this script (in the respective list position) |
|
virtualinherited |
Make a deep copy of the Resource object given by orig and assign it to this object.
orig | - original Resource object to be copied from |
Definition at line 637 of file DLS.cpp.
References RIFF::List::GetSubChunk(), DLS::Resource::pInfo, RIFF::Chunk::Read(), RIFF::Chunk::ReadInt16(), RIFF::Chunk::ReadInt32(), RIFF::Chunk::ReadUint16(), RIFF::Chunk::ReadUint32(), and RIFF::Chunk::SetPos().
Referenced by DLS::Region::CopyAssign(), DLS::Sample::CopyAssignCore(), and DLS::Instrument::DeleteChunks().
|
virtualinherited |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object.
Note that all sample pointers referenced by orig are simply copied as memory address. Thus the respective samples are shared, not duplicated!
orig | - original Instrument object to be copied from |
Definition at line 1618 of file DLS.cpp.
References DLS::Region::CopyAssign(), DLS::Instrument::GetRegionAt(), and DLS::Instrument::Regions.
|
virtual |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object.
Note that all sample pointers referenced by orig are simply copied as memory address. Thus the respective samples are shared, not duplicated!
orig | - original Instrument object to be copied from |
Definition at line 5978 of file gig.cpp.
References DLS::Sample::CopyAssign().
Referenced by gig::File::AddContentOf(), and gig::File::AddDuplicateInstrument().
|
protected |
Make a (semi) deep copy of the Instrument object given by orig and assign it to this object.
orig | - original Instrument object to be copied from |
mSamples | - crosslink map between the foreign file's samples and this file's samples |
Definition at line 5990 of file gig.cpp.
References Attenuation, gig::Region::CopyAssign(), DimensionKeyRange, gig::Sample::FineTune, FineTune, PitchbendRange, and DLS::Instrument::Regions.
|
inherited |
Returns the amount of regions of this instrument.
|
virtualinherited |
Remove all RIFF chunks associated with this Instrument object.
See Storage::DeleteChunks() for details.
Reimplemented from DLS::Articulator.
Definition at line 1575 of file DLS.cpp.
References DLS::Articulator::CopyAssign(), DLS::Resource::CopyAssign(), DLS::Articulator::DeleteChunks(), DLS::Resource::DeleteChunks(), RIFF::List::DeleteSubChunk(), RIFF::Chunk::GetParent(), DLS::Instrument::IsDrum, DLS::Instrument::MIDIBank, DLS::Instrument::MIDIBankCoarse, DLS::Instrument::MIDIBankFine, and DLS::Instrument::MIDIProgram.
Referenced by DLS::File::DeleteInstrument(), and gig::File::DeleteInstrument().
void gig::Instrument::DeleteMidiRule | ( | int | i | ) |
Deletes a MIDI rule from the instrument.
i | - MIDI rule number |
Definition at line 5495 of file gig.cpp.
References RIFF::Chunk::GetFile(), RIFF::File::GetFileOffsetSize(), RIFF::Chunk::GetFilePos(), RIFF::Chunk::GetPos(), gig::ScriptGroup::GetScript(), and gig::File::GetScriptGroup().
|
inherited |
Returns Articulation at supplied pos position within the articulation list.
If supplied pos is out of bounds then NULL
is returned.
pos | - position of sought Articulation in articulation list |
NULL
if pos is out of bounds
|
inherited |
Returns the first Articulation in the list of articulations.
You have to call this method once before you can use GetNextArticulation().
Region * gig::Instrument::GetFirstRegion | ( | ) |
Returns the first Region of the instrument.
You have to call this method once before you use GetNextRegion().
MidiRule * gig::Instrument::GetMidiRule | ( | int | i | ) |
Returns a MIDI rule of the instrument.
The list of MIDI rules, at least in gig v3, always contains at most two rules. The second rule can only be the DEF filter (which currently isn't supported by libgig).
i | - MIDI rule number |
|
inherited |
Returns the next Articulation from the list of articulations.
You have to call GetFirstArticulation() once before you can use this method. By calling this method multiple times it iterates through the available articulations.
Definition at line 234 of file DLS.cpp.
References RIFF::List::GetListType(), RIFF::List::GetSubChunkAt(), and RIFF::List::GetSubList().
Region * gig::Instrument::GetNextRegion | ( | ) |
Returns the next Region of the instrument.
You have to call GetFirstRegion() once before you can use this method. By calling this method multiple times it iterates through the available Regions.
Definition at line 5344 of file gig.cpp.
References RIFF::List::AddSubList(), and RIFF::List::GetSubList().
Region * gig::Instrument::GetRegion | ( | unsigned int | Key | ) |
Region * gig::Instrument::GetRegionAt | ( | size_t | pos | ) |
Returns Region at supplied pos position within the region list of this instrument.
If supplied pos is out of bounds then NULL
is returned.
pos | - position of sought Region in region list |
NULL
if pos is out of bounds Script * gig::Instrument::GetScriptOfSlot | ( | size_t | index | ) |
Get instrument script (gig format extension).
Returns the real-time instrument script of instrument script slot index.
index | - instrument script slot index |
String gig::Instrument::GetScriptPatchVariable | ( | size_t | slot, |
String | variable | ||
) |
Get overridden initial value for 'patch' variable.
Returns current initial value for the requested script variable being overridden by this instrument.
slot | - script slot index of the variable to be retrieved |
variable | - name of the 'patch' variable in that script |
std::map< String, String > gig::Instrument::GetScriptPatchVariables | ( | size_t | slot | ) |
Get all overridden script 'patch' variables.
Returns map of key-value pairs reflecting all patch variables currently being overridden by this instrument for the given script slot
, where key is the variable name and value is the hereby currently overridden value for that variable.
slot | - script slot index of the variable to be retrieved |
Definition at line 5782 of file gig.cpp.
References gig::_UUIDFromCArray(), and gig::Script::Uuid.
bool gig::Instrument::IsScriptPatchVariableSet | ( | size_t | slot, |
String | variable | ||
) |
Checks whether a certain script 'patch' variable value is set.
Returns true
if the initial value for the requested script variable is currently overridden by this instrument.
slot | - script slot index of the variable to be retrieved |
variable | - name of the 'patch' variable in that script |
Definition at line 5748 of file gig.cpp.
References gig::_UUIDFromCArray(), and gig::Script::Uuid.
bool gig::Instrument::IsScriptSlotBypassed | ( | size_t | index | ) |
Whether script execution shall be skipped.
Defines locally for the Script reference slot in the Instrument's Script list, whether the script shall be skipped by the sampler regarding execution.
It is also possible to ignore exeuction of the script globally, for all slots and for all instruments by setting Script::Bypass.
index | - index of the script slot on this instrument |
void gig::Instrument::MoveTo | ( | Instrument * | dst | ) |
Move this instrument at the position before.
This method can be used to reorder the sequence of instruments in a .gig file. This might be helpful especially on large .gig files which contain a large number of instruments within the same .gig file. So grouping such instruments to similar ones, can help to keep track of them when working with such complex .gig files.
When calling this method, this instrument will be removed from in its current position in the instruments list and moved to the requested target position provided by
dst. | You may also pass NULL as argument to this method, in that case this intrument will be moved to the very end of the .gig file's instrument list. |
You have to call Save() to make the order change persistent to the .gig file.
Currently this method is limited to moving the instrument within the same .gig file. Trying to move it to another .gig file by calling this method will throw an exception.
dst | - destination instrument at which this instrument will be moved to, or pass NULL for moving to end of list |
gig::Exception | if this instrument and target instrument are not part of the same file, as well as on unexpected internal error |
Definition at line 5401 of file gig.cpp.
References RIFF::List::GetSubList(), and RIFF::List::MoveSubChunk().
void gig::Instrument::RemoveScript | ( | Script * | pScript | ) |
Remove reference to given Script (gig format extension).
This will remove all script slots on the instrument which are referencing the given script.
pScript | - script reference to remove from this instrument |
Definition at line 5639 of file gig.cpp.
Referenced by gig::Script::CopyAssign().
void gig::Instrument::RemoveScriptSlot | ( | size_t | index | ) |
size_t gig::Instrument::ScriptSlotCount | ( | ) | const |
Instrument's amount of script slots.
This method returns the amount of script slots this instrument currently uses.
A script slot is a reference of a real-time instrument script to be executed by the sampler. The scripts will be executed by the sampler in sequence of the slots. One (same) script may be referenced multiple times in different slots.
void gig::Instrument::SetScriptPatchVariable | ( | size_t | slot, |
String | variable, | ||
String | value | ||
) |
Override initial value for 'patch' variable.
Overrides initial value for the requested script variable for this instrument with the passed value.
slot | - script slot index of the variable to be set |
variable | - name of the 'patch' variable in that script |
value | - overridden initial value for that script variable |
gig::Exception | if given script slot index is invalid or given variable name is empty |
Definition at line 5841 of file gig.cpp.
References gig::_UUIDFromCArray(), and gig::Script::Uuid.
void gig::Instrument::SetScriptSlotBypassed | ( | size_t | index, |
bool | bBypass | ||
) |
Defines whether execution shall be skipped.
You can call this method to define locally whether or whether not the given script slot shall be executed by the sampler.
index | - script slot index on this instrument |
bBypass | - if true, the script slot will be skipped by the sampler |
void gig::Instrument::SwapScriptSlots | ( | size_t | index1, |
size_t | index2 | ||
) |
Flip two script slots with each other (gig format extension).
Swaps the position of the two given scripts in the Instrument's Script list. The positions of the scripts in the Instrument's Script list are relevant, because they define in which order they shall be executed by the sampler.
index1 | - index of the first script slot to swap |
index2 | - index of the second script slot to swap |
void gig::Instrument::UnsetScriptPatchVariable | ( | ssize_t | slot = -1 , |
String | variable = "" |
||
) |
Drop overridden initial value(s) for 'patch' variable(s).
Reverts initial value(s) for requested script variable(s) back to their default initial value(s) defined in the script itself.
Both arguments of this method are optional. The most obvious use case of this method would be passing a valid script slot
index and a (non-emtpy string as) variable
name to this method, which would cause that single variable to be unset for that specific script slot (on this Instrument
level).
Not passing a value (or -1
for slot
and/or empty string for variable
) means 'wildcard'. So accordingly absence of argument(s) will cause all variables and/or for all script slots being unset. Hence this method serves 2^2 = 4 possible use cases in total and accordingly covers 4 different behaviours in one method.
slot | - script slot index of the variable to be unset |
variable | - name of the 'patch' variable in that script |
Definition at line 5882 of file gig.cpp.
References gig::_UUIDFromCArray(), and gig::Script::Uuid.
|
virtual |
Apply Instrument with all its Regions to the respective RIFF chunks.
You have to call File::Save() to make changes persistent.
Usually there is absolutely no need to call this method explicitly. It will be called automatically when File::Save() was called.
pProgress | - callback function for progress notification |
gig::Exception | if samples cannot be dereferenced |
Reimplemented from DLS::Instrument.
Definition at line 5106 of file gig.cpp.
References RIFF::List::AddSubChunk(), RIFF::List::AddSubList(), RIFF::List::DeleteSubChunk(), gig::Sample::FineTune, RIFF::Chunk::GetFile(), RIFF::File::GetFileOffsetSize(), RIFF::Chunk::GetSize(), RIFF::List::GetSubChunk(), RIFF::List::GetSubList(), RIFF::Chunk::LoadChunkData(), DLS::File::pVersion, RIFF::Chunk::Resize(), RIFF::Chunk::SetPos(), DLS::Instrument::UpdateChunks(), and RIFF::Chunk::WriteUint32().