Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't destroy the fluid_sfont_t if any of its samples are still playing | Chris Robinson | 2013-12-29 | 1 | -0/+20 | |
| | | | | | FluidSynth apparently doesn't check for this itself before calling the free callback. | |||||
* | Add the last remaining "real-time" properties | Chris Robinson | 2013-12-29 | 3 | -8/+23 | |
| | ||||||
* | Add chorus and reverb send properties | Chris Robinson | 2013-12-29 | 3 | -2/+9 | |
| | ||||||
* | Check for negative soundfont indices getting passed to the loader | Chris Robinson | 2013-12-29 | 1 | -1/+1 | |
| | ||||||
* | Add pan and attenuation properties | Chris Robinson | 2013-12-29 | 3 | -6/+15 | |
| | ||||||
* | Add tuning properties | Chris Robinson | 2013-12-29 | 3 | -4/+13 | |
| | ||||||
* | Add filter properties | Chris Robinson | 2013-12-29 | 3 | -5/+16 | |
| | ||||||
* | Add modulation envelope properties | Chris Robinson | 2013-12-29 | 3 | -8/+25 | |
| | ||||||
* | Add a few more pitch properties | Chris Robinson | 2013-12-29 | 3 | -3/+10 | |
| | ||||||
* | Add volume envelope properties | Chris Robinson | 2013-12-29 | 3 | -8/+25 | |
| | ||||||
* | Fix copy-paste errors in error messages | Chris Robinson | 2013-12-29 | 1 | -2/+2 | |
| | ||||||
* | Accumulate with default modulator amounts | Chris Robinson | 2013-12-29 | 1 | -0/+20 | |
| | ||||||
* | Add support for the fontsound loop mode | Chris Robinson | 2013-12-29 | 3 | -4/+8 | |
| | ||||||
* | Ensure the soundfont version is 2.x | Chris Robinson | 2013-12-28 | 1 | -2/+28 | |
| | ||||||
* | Add alLoadSoundfontSOFT to load a soundfont via callback | Chris Robinson | 2013-12-28 | 2 | -0/+1295 | |
| | | | | | | | | | | | | | | | | | | | | | Some hefty caveats: This function is not thread-safe. In particular, the current context affecting the thread must not be changed, and the provided soundfont must not be altered while the function is executing. Ideally, this will be fixed. Error handling is poor. Some RIFF structure errors may not be caught (e.g. sub- chunks with sizes greater than the parent chunk allows for), and generated AL errors are ignored, possibly leading to resource leaks in certain situations. These should be fixed in time. There is minimal error checking on the provided soundfont ID. It does not ensure a valid ID has been provided, nor does it ensure the provided soundfont can be modified. These short-comings should be fixed eventually. Proper cleanup is the responsibility of the caller. The caller must get the preset objects from the soundfont before deleting it, and the fontsound objects from each preset before deleting them, to make sure all resources are properly deleted. | |||||
* | Allow loading multiple soundfonts with FluidSynth | Chris Robinson | 2013-12-27 | 1 | -21/+50 | |
| | ||||||
* | Create a custom fluid_sfloader_t loader | Chris Robinson | 2013-12-27 | 1 | -4/+299 | |
| | | | | | | | This allows us to load and use soundfont objects the app specifies (the first one, at least), rather than having to load from a file. It doesn't sound that good since modulators and most generators aren't yet available, but this will steadily improve. | |||||
* | Add a method to set and get soundfonts | Chris Robinson | 2013-12-27 | 4 | -0/+52 | |
| | | | | | The main purpose of this is to select soundfonts for playback, eventually, instead of the existing method that takes a filename. | |||||
* | Remove the generator list | Chris Robinson | 2013-12-26 | 1 | -49/+11 | |
| | ||||||
* | Store a list of sounds in the preset | Chris Robinson | 2013-12-25 | 1 | -0/+9 | |
| | ||||||
* | Remove the zone, sample, and instrument object types | Chris Robinson | 2013-12-25 | 1 | -191/+0 | |
| | ||||||
* | Add methods to add generators and modulators to fontsounds | Chris Robinson | 2013-12-25 | 1 | -0/+71 | |
| | ||||||
* | Add a new fontsound object type | Chris Robinson | 2013-12-25 | 1 | -0/+47 | |
| | | | | This is basically a combined preset and intrument zone with sample header. | |||||
* | Add methods to get and set a preset object's preset and bank numbers | Chris Robinson | 2013-12-23 | 1 | -0/+3 | |
| | ||||||
* | Make sure key and velocity ranges are the first two generators | Chris Robinson | 2013-12-21 | 1 | -0/+28 | |
| | ||||||
* | Free thunk entry in the object destructor | Chris Robinson | 2013-12-20 | 1 | -0/+4 | |
| | ||||||
* | Better protect against improper alSoundfontSamplesSOFT calls | Chris Robinson | 2013-12-20 | 1 | -0/+1 | |
| | ||||||
* | Add functions to set a soundfont's sample data | Chris Robinson | 2013-12-19 | 1 | -0/+2 | |
| | ||||||
* | Fix compiling without FluidSynth | Chris Robinson | 2013-12-19 | 1 | -5/+4 | |
| | ||||||
* | Rename some ALsoundfont fields | Chris Robinson | 2013-12-19 | 1 | -5/+5 | |
| | ||||||
* | Add a new ALsoundfont object type | Chris Robinson | 2013-12-18 | 1 | -66/+278 | |
| | | | | | Includes a basic hierarchy for presets, instruments, samples, zones, generators, and modulators. | |||||
* | Fix header guard and remove duplicate code | Chris Robinson | 2013-12-18 | 1 | -3/+3 | |
| | ||||||
* | Move the base MidiSynth to a separate file | Chris Robinson | 2013-12-17 | 4 | -2/+357 | |
| | ||||||
* | Move the dummy MIDI handler to a separate file | Chris Robinson | 2013-12-17 | 1 | -0/+132 | |
| | ||||||
* | Move FluidSynth to its own file | Chris Robinson | 2013-12-17 | 1 | -0/+359 | |