aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Add functions to set a soundfont's sample dataChris Robinson2013-12-193-1/+89
|
* Allow creating instrument objectsChris Robinson2013-12-193-0/+158
|
* Call the right delete method when generating presets failsChris Robinson2013-12-191-2/+2
|
* Rename some ALsoundfont fieldsChris Robinson2013-12-191-2/+2
|
* Move the soundfont and preset extension functions to separate sourcesChris Robinson2013-12-193-253/+282
|
* Add methods to create and destroy presetsChris Robinson2013-12-193-0/+142
|
* Properly initialize and cleanup the soundfont mapChris Robinson2013-12-182-0/+22
|
* Make alIsSoundfontSOFT check soundfont IDsChris Robinson2013-12-182-7/+6
|
* Add a new ALsoundfont object typeChris Robinson2013-12-183-0/+205
| | | | | Includes a basic hierarchy for presets, instruments, samples, zones, generators, and modulators.
* Fix header guard and remove duplicate codeChris Robinson2013-12-181-98/+0
|
* Move the base MidiSynth to a separate fileChris Robinson2013-12-172-232/+3
|
* Move the dummy MIDI handler to a separate fileChris Robinson2013-12-172-118/+1
|
* Move FluidSynth to its own fileChris Robinson2013-12-172-334/+15
|
* Make MidiSynth's methods non-staticChris Robinson2013-12-172-51/+33
|
* Render some MIDI samples even when stoppedChris Robinson2013-12-151-3/+4
| | | | | Because stopping MIDI playback puts any playing notes into release phase, they should be rendered. Ideally it could stop rendering once output goes silent.
* Use macros for MIDI controller valuesChris Robinson2013-12-151-3/+9
|
* Don't explicitly set reverb or chorusChris Robinson2013-12-131-2/+0
|
* Add a alMidiResetSOFT method to reset the synthChris Robinson2013-12-132-7/+27
| | | | | Playback is stopped, the queue is flushed, the clock is reset to 0, and the MIDI system is reset to power-up status.
* Update behavior for alMidiStopSOFTChris Robinson2013-12-132-3/+44
| | | | | | | | | alMidiStopSOFT now has the following behavior: * All pending MIDI events up to the current time are processed first, before the queue is flushed. * All channels then receive an All Notes Off event so that notes go through their release phase. Controllers are *NOT* reset. * Clock time is reset to 0, like before.
* Fix retrieving source propertiesChris Robinson2013-12-091-6/+6
|
* Fix leak if inserting a sysex event failsChris Robinson2013-12-081-5/+7
|
* Simplify dummy synth processing loopChris Robinson2013-12-011-27/+15
|
* Minor comment updateChris Robinson2013-12-011-1/+1
|
* Use a method to get the default soundfont filenameChris Robinson2013-12-011-17/+19
|
* Add methods to set and get the MIDI gainChris Robinson2013-11-304-0/+62
|