aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/midi/base.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the MIDI codeChris Robinson2015-10-201-244/+0
| | | | | | | The extension's not going anywhere, and it can't do anything fluidsynth can't. The code maintenance and bloat is not worth keeping around, and ideally the AL API would be able to facilitate MIDI-like behavior anyway (envelopes, start-at- time, etc).
* Use a helper function to check valid MIDI controller inputsChris Robinson2014-07-041-0/+2
|
* Move an inline definition to a more appropriate sourceChris Robinson2014-07-041-0/+3
|
* Rework MIDI clock timingChris Robinson2014-02-021-54/+15
| | | | | | It's best to avoid using doubles in the mixer since the FPU's set to single- precision mode. The new clock timing is similar to the device clock timing, and should hopefully be less prone to drift caused by fp rounding errors.
* Use nanosecond resolution for MIDIChris Robinson2014-02-011-2/+2
| | | | | This makes the MIDI clock use the same resolution as the device clock and source latency and the device clock.
* Use the 64-bit clamp method when getting the MIDI clock timeChris Robinson2014-01-151-1/+1
|
* Add a method to get the current MIDI stateChris Robinson2014-01-121-0/+1
|
* Move some soundfont methods to ALsoundfontChris Robinson2014-01-051-93/+1
|
* Allow "deleting" the default soundfontChris Robinson2014-01-041-0/+49
| | | | | 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.
* Update some trace messages to be more usefulChris Robinson2014-01-031-2/+2
|
* Allow selecting the default soundfont using ID 0Chris Robinson2014-01-031-2/+48
|
* Remove an unused methodChris Robinson2014-01-031-12/+0
|
* Move ALsoundfont methods to the right source fileChris Robinson2014-01-031-38/+0
|
* Mostly load into fontsound objects directlyChris Robinson2014-01-021-130/+0
| | | | This leaves only one unsafe alFontsoundiSOFT call.
* Move some preset alloc/dealloc code to separate functionsChris Robinson2014-01-021-28/+0
|
* Add the last remaining "real-time" propertiesChris Robinson2013-12-291-2/+11
|
* Add chorus and reverb send propertiesChris Robinson2013-12-291-0/+3
|
* Add pan and attenuation propertiesChris Robinson2013-12-291-0/+4
|
* Add tuning propertiesChris Robinson2013-12-291-1/+7
|
* Add filter propertiesChris Robinson2013-12-291-0/+5
|
* Add modulation envelope propertiesChris Robinson2013-12-291-0/+9
|
* Add a few more pitch propertiesChris Robinson2013-12-291-0/+4
|
* Add volume envelope propertiesChris Robinson2013-12-291-0/+9
|
* Add support for the fontsound loop modeChris Robinson2013-12-291-0/+1
|
* Add a method to set and get soundfontsChris Robinson2013-12-271-0/+43
| | | | | The main purpose of this is to select soundfonts for playback, eventually, instead of the existing method that takes a filename.
* Remove the generator listChris Robinson2013-12-261-49/+11
|
* Store a list of sounds in the presetChris Robinson2013-12-251-0/+9
|
* Remove the zone, sample, and instrument object typesChris Robinson2013-12-251-191/+0
|
* Add methods to add generators and modulators to fontsoundsChris Robinson2013-12-251-0/+71
|
* Add a new fontsound object typeChris Robinson2013-12-251-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 numbersChris Robinson2013-12-231-0/+3
|
* Make sure key and velocity ranges are the first two generatorsChris Robinson2013-12-211-0/+28
|
* Free thunk entry in the object destructorChris Robinson2013-12-201-0/+4
|
* Better protect against improper alSoundfontSamplesSOFT callsChris Robinson2013-12-201-0/+1
|
* Add functions to set a soundfont's sample dataChris Robinson2013-12-191-0/+2
|
* Rename some ALsoundfont fieldsChris Robinson2013-12-191-5/+5
|
* Add a new ALsoundfont object typeChris Robinson2013-12-181-66/+278
| | | | | Includes a basic hierarchy for presets, instruments, samples, zones, generators, and modulators.
* Move the base MidiSynth to a separate fileChris Robinson2013-12-171-0/+241