libgig
4.4.1
|
Group of Gigasampler samples. More...
#include <gig.h>
Public Member Functions | |
Sample * | GetSample (size_t index) |
Returns Sample object at index of this sample group. More... | |
Sample * | GetFirstSample () |
Returns the first Sample of this Group. More... | |
Sample * | GetNextSample () |
Returns the next Sample of the Group. More... | |
void | AddSample (Sample *pSample) |
Move Sample given by pSample from another Group to this Group. | |
Public Attributes | |
String | Name |
Stores the name of this Group. | |
Protected Member Functions | |
Group (File *file, RIFF::Chunk *ck3gnm) | |
Constructor. More... | |
virtual | ~Group () |
Destructor. More... | |
virtual void | UpdateChunks (progress_t *pProgress) |
Update chunks with current group settings. More... | |
virtual void | DeleteChunks () |
Remove all RIFF chunks associated with this Group object. More... | |
void | MoveAll () |
Move all members of this group to another group (preferably the 1st one except this). More... | |
Group of Gigasampler samples.
Groups help to organize a huge collection of Gigasampler samples. Groups are not concerned at all for the synthesis, but they help sound library developers when working on complex instruments with an instrument editor (as long as that instrument editor supports it ;-).
A sample is always assigned to exactly one Group. This also means there is always at least one Group in a .gig file, no matter if you created one yet or not.
|
protected |
|
protectedvirtual |
|
protectedvirtual |
Remove all RIFF chunks associated with this Group object.
See DLS::Storage::DeleteChunks() for details.
Implements DLS::Storage.
Definition at line 6089 of file gig.cpp.
Referenced by gig::File::DeleteGroup(), and gig::File::DeleteGroupOnly().
Sample * gig::Group::GetFirstSample | ( | ) |
Returns the first Sample of this Group.
You have to call this method once before you use GetNextSample().
Notice: this method might block for a long time, in case the samples of this .gig file were not scanned yet
Definition at line 6165 of file gig.cpp.
References DLS::File::GetSample().
Sample * gig::Group::GetNextSample | ( | ) |
Returns the next Sample of the Group.
You have to call GetFirstSample() once before you can use this method. By calling this method multiple times it iterates through the Samples assigned to this Group.
Definition at line 6189 of file gig.cpp.
References DLS::File::GetSample().
Sample * gig::Group::GetSample | ( | size_t | index | ) |
Returns Sample object at index of this sample group.
index | - position of sample in this sample group's sample list (0..n) |
Definition at line 6139 of file gig.cpp.
References DLS::File::GetSample().
Referenced by gig::File::DeleteGroup().
|
protected |
Move all members of this group to another group (preferably the 1st one except this).
This method is called explicitly by File::DeleteGroup() thus when a Group was deleted. This code was intentionally not placed in the destructor!
Definition at line 6213 of file gig.cpp.
References AddSample(), DLS::Info::ArchivalLocation, DLS::Resource::GenerateDLSID(), DLS::Resource::pInfo, DLS::Info::SetFixedStringLengths(), gig::File::VERSION_2, gig::File::VERSION_3, and gig::File::VERSION_4.
Referenced by gig::File::DeleteGroupOnly().
|
protectedvirtual |
Update chunks with current group settings.
Apply current Group field values to the respective 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 |
Implements DLS::Storage.
Definition at line 6107 of file gig.cpp.
References RIFF::List::AddSubList(), RIFF::List::GetSubChunk(), RIFF::List::GetSubChunkAt(), RIFF::List::GetSubList(), RIFF::List::MoveSubChunk(), and DLS::File::pVersion.