aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Minor non-functional cleanupChris Robinson2014-01-121-5/+5
|
* Add a method to get the current MIDI stateChris Robinson2014-01-122-0/+27
|
* Load soundfont modulators into FluidSynthChris Robinson2014-01-061-2/+2
|
* Add methods to get and set modulator properties on fontsoundsChris Robinson2014-01-053-3/+233
|
* Move some soundfont methods to ALsoundfontChris Robinson2014-01-052-2/+100
|
* Allow "deleting" the default soundfontChris Robinson2014-01-041-5/+17
| | | | | The ID remains valid and the soundfont will be reloaded as needed, but this provides a way for the application to clear up the soundfont memory.
* Allow querying default soundfont propertiesChris Robinson2014-01-041-7/+19
| | | | | Any attempts to modify it or its held objects will result in an AL_INVALID_OPERATION error.
* Don't allow min key/vel ranges to exceed max rangeChris Robinson2014-01-031-2/+2
|
* Allow selecting the default soundfont using ID 0Chris Robinson2014-01-031-1/+1
|
* Add storage for a default soundfont objectChris Robinson2014-01-034-4/+8
|
* Move ALsoundfont methods to the right source fileChris Robinson2014-01-031-0/+38
|
* Avoid using alFontsoundiSOFT when loading a soundfontChris Robinson2014-01-032-201/+210
| | | | This should now make the soundfont loader thread-safe.
* Use a uint map for modulatorsChris Robinson2014-01-022-10/+15
|
* Mostly load into fontsound objects directlyChris Robinson2014-01-022-26/+127
| | | | This leaves only one unsafe alFontsoundiSOFT call.
* Move some error macros to alError.hChris Robinson2014-01-022-16/+15
|
* Move some preset alloc/dealloc code to separate functionsChris Robinson2014-01-022-28/+73
|
* Move alLoadSoundfontSOFT to alSoundfont.cChris Robinson2014-01-022-42/+42
|
* Don't allow soundfonts with existing presets in alLoadSoundfontSOFTChris Robinson2014-01-011-0/+5
|
* Pass the ALsoundfont object to loadSf2, rather than its IDChris Robinson2014-01-011-1/+28
|
* Remove explicit locking from alMidiSoundfontvSOFT.Chris Robinson2013-12-291-2/+0
| | | | The MIDI backend can lock as it needs.
* Update soundfont selection functionsChris Robinson2013-12-292-29/+7
| | | | | A filename is no longer specified, and alMidiSoundfontsSOFT is renamed to alMidiSoundfontvSOFT.
* Lock the device while selecting soundfontsChris Robinson2013-12-291-0/+2
|
* Add the last remaining "real-time" propertiesChris Robinson2013-12-293-0/+68
|
* Add chorus and reverb send propertiesChris Robinson2013-12-293-0/+27
|
* Add pan and attenuation propertiesChris Robinson2013-12-293-0/+26
|
* Add tuning propertiesChris Robinson2013-12-293-13/+47
|
* Add filter propertiesChris Robinson2013-12-293-0/+47
|
* Add modulation envelope propertiesChris Robinson2013-12-293-14/+76
|
* Add a few more pitch propertiesChris Robinson2013-12-293-0/+34
|
* Add volume envelope propertiesChris Robinson2013-12-293-0/+91
|
* Add support for the fontsound loop modeChris Robinson2013-12-293-0/+16
|
* Add alLoadSoundfontSOFT to load a soundfont via callbackChris Robinson2013-12-282-0/+12
| | | | | | | | | | | | | | | | | | | | | 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.
* Add a method to set and get soundfontsChris Robinson2013-12-273-8/+92
| | | | | The main purpose of this is to select soundfonts for playback, eventually, instead of the existing method that takes a filename.
* Allow specifying all 4 sample typesChris Robinson2013-12-271-1/+1
| | | | ROM-based types will be specified with a separate property
* Allow specifying some fontsound sample propertiesChris Robinson2013-12-262-1/+113
|
* Remove the generator listChris Robinson2013-12-261-14/+5
|
* Allow specifying key and velocity ranges on fontsoundsChris Robinson2013-12-262-0/+136
|
* Add methods to set and get sounds on a presetChris Robinson2013-12-252-0/+66
|
* Store a list of sounds in the presetChris Robinson2013-12-251-0/+2
|
* Remove the zone, sample, and instrument object typesChris Robinson2013-12-253-208/+0
|
* Add methods to add generators and modulators to fontsoundsChris Robinson2013-12-251-0/+2
|
* Add a new fontsound object typeChris Robinson2013-12-253-0/+184
| | | | This is basically a combined preset and intrument zone with sample header.
* Do not allow deleting preset or instrument ID 0Chris Robinson2013-12-242-6/+0
|
* Allow querying the soundfont sample length and format typeChris Robinson2013-12-242-0/+9
|
* Do not accept preset or instrument ID 0 as validChris Robinson2013-12-232-4/+2
|
* Unlock the soundfont earlier after switching preset listsChris Robinson2013-12-231-2/+1
|
* Add methods to get and set presets on a soundfontChris Robinson2013-12-232-2/+101
|
* Add methods to get and set a preset object's preset and bank numbersChris Robinson2013-12-233-2/+111
|
* Free thunk entry in the object destructorChris Robinson2013-12-203-9/+0
|
* Better protect against improper alSoundfontSamplesSOFT callsChris Robinson2013-12-202-9/+21
|