aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Add a method to check if a file is a soundfontChris Robinson2013-11-303-15/+91
|
* Add a workaround for allowing GM2 bank selection with a GM2 On SysExChris Robinson2013-11-291-1/+34
|
* Add a method to specifying MIDI SysEx messagesChris Robinson2013-11-292-0/+59
|
* Add infrastructure for handling SysEx MIDI eventsChris Robinson2013-11-291-21/+37
|
* Don't force MMA bank selection modeChris Robinson2013-11-291-1/+0
|
* Combine duplicate soundfont loading codeChris Robinson2013-11-281-15/+11
|
* Remove an unneeded MidiSynth fieldChris Robinson2013-11-282-11/+7
|
* Add a method to stop MIDI playbackChris Robinson2013-11-283-0/+55
| | | | | Unlike pausing, this resets the MIDI clock time to 0, clears the existing event queue, stops all MIDI sounds, and resets MIDI controllers.
* Move MidiSynth locking out of the setState methodChris Robinson2013-11-281-11/+11
|
* Fix building without FluidSynthChris Robinson2013-11-281-18/+20
|
* Add a config option for specifying the default MIDI soundfontChris Robinson2013-11-281-2/+2
|
* Be a bit safer with MIDI state changesChris Robinson2013-11-282-30/+30
|
* Add a method to load a soundfontChris Robinson2013-11-283-7/+72
|
* Add an option for FLuidSynth to handle MIDIChris Robinson2013-11-281-5/+237
|
* Start a MIDI interface extensionChris Robinson2013-11-283-0/+169
|
* Cleanups for MidiSynthChris Robinson2013-11-272-10/+5
| | | | | Remove an unneeded field, make MidiSynth_getTime public, and properly return a 64-bit time from it.