aboutsummaryrefslogtreecommitdiff
path: root/src/adlmidi_midiplay.cpp
AgeCommit message (Collapse)Author
2025-05-27describeChannels: Don't show absent OPL2 channelsWohlstand
When destination chip is OPL2, then don't show channels are de-facto absent on hardware.
2025-05-26adlmidi_midiplay.cpp: Give priority to quietest notes to be stolenWohlstand
2025-05-25Fixed glitchy note sounding after channel stealingWohlstand
2025-05-25Stabilise the channels logicWohlstand
2025-05-24Fixed another crash because of channels-users confusionWohlstand
2025-05-23Fixed a crash because of invalid user of chip channelWohlstand
2025-05-23Improve stability of 2-voice instruments on single OPL2Wohlstand
2025-05-23Experiment: Allow multiple note dupes on same channelWohlstand
Should fix the problem of some of Heretic songs
2025-05-20adlmidi_midiplay.cpp: Fixed the channels logicWohlstand
Reworked the "disable arpeggio" logic that still make troubles even option is disabled
2025-03-29Refactored DOS supportWohlstand
2025-01-01Update copyright year for 2025Wohlstand
2024-05-11Initial implementation of Serial supportWohlstand
+ refactor of the MIDI play, making separated loop functions instead the mess of everything in one single loop function.
2024-01-07Updated copyright year to 2024Wohlstand
2023-10-05adlmidi_midiplay.cpp: Simplify some rhythm mode related checksWohlstand
2023-10-05Improved CMF supportWohlstand
- Added missing transpose, depth control, and song marker controllers
2023-06-16adlmidi_midiplay.cpp: Fixed the channel allocation logicWohlstand
2023-05-28adlmidi_midiplay.cpp: Cleaned-up the codeWohlstand
2023-05-28Fixed accuracy of HMI-OLD volume modelWohlstand
Make HMI-OLD volume model also use "Any-Released" channel allocation as the normal "HMI".
2023-01-03Updated copyright for 2023Wohlstand
2022-11-29Fixed crash on attempt to change the volume of a blank noteWohlstand
2022-06-29Added the chip channels allocation mode optionWohlstand
2022-06-16Disable automatic arpeggio by defaultWohlstand
2022-01-05Updated copyright year for 2022Wohlstand
2021-12-13Added per-bank MT32 defaults optionWohlstand
This option makes MT32 defaults being set: - 127 initial volume - octave-wide pitch bend
2021-01-24Added an ability to disable auto-arpeggioWohlstand
Backported from libOPNMIDI
2021-01-14Updated copyright for 2021Wohlstand
2021-01-07Tune the processing of bank recognizing algorithmWohlstand
#121
2020-09-28Fixed some minor MSVC warningsWohlstand
2020-09-28Minor fix: Don't include midi_sequencer.hpp when it's offWohlstand
2020-09-21Added WinMM driver for windows (#236)Vitaly Novichkov
* ADLMIDI2: Fixed an MSVC build However, it may work glitchy! * Experimental WinMM MIDI driver TODO: Make a control panel to configure the driver * WinMM-DRV: A workaround for older MinGW * WinMM-DRV: WIP control panel appled / tool * WinMM-DRV: Better test a driver's work * WinMM-DRV: More progress on a control panel * WinMM-DRV: And more progress on this control panel It's almost completed, I need to make the working setup through a registry. * WinMM-DRV: Driver is almost ready However, control panel can't ping a driver to reload settings yet * WinMM-DRV: Fix the missing volume model setup * WinMM-DRV: Setup reload on the fly now work! * WinMM-DRV: Stabilize the thing * WinMM-DRV: Stabilizing * WinMM-DRV: Avoid all "setup" in names to avoid a stupid PCA thing: https://stackoverflow.com/questions/17660404/how-to-programmatically-disable-program-compatibility-assistant-in-windows-7-and * A small warning fix at the WOPL module * WinMM-DRV: Fixed some warnings * WinMM-DRV: Avoid PCA dialog on the installer * WiNMM-DRV: Make the linking of pthread being optional Required to use MinGW-w64 toolchain with the "win32" threading mode * WinMM-DRV: Receive the MODM_RESET to reset the MIDI state * WinMM-DRV: Attempt to fix a sound distorsion on song song * WinMM-Drv: Fixed a build on some older MinGW toolchains * WinMM-Drv: Fixed default settings not being loaded
2020-09-16Added old and buggy HMI volume modelWohlstand
It's needed to make a correct sounding of music of some game soundtracks such as "Asterix & Obelix" TODO: Verify the behavior of drums, seems still being different!
2020-09-13Refactor internal instrument data structuresWohlstand
2020-09-13Move all frequency computation code from a MIDIPlay into the SynthWohlstand
2020-09-12Added AIL frequency modelWohlstand
2020-09-11A small beautify of a frequency models codeWohlstand
2020-09-11Fixed an assert in the HMI SOS pitch bend calculatorWohlstand
2020-09-11Make the proper frequency formula for HMI modelWohlstand
2020-09-10Fixed an accuracy of Win9X frequency modelWohlstand
2020-09-09Simplify the bend passing to a frequency formula callsWohlstand
2020-09-09Added 9x frequency formulaWohlstand
2020-09-09Add `s_` prefox for static frequency tablesWohlstand
2020-09-09Remove a useless comment from hereWohlstand
2020-09-09Added frequency tablesWohlstand
For DMX and Apogee Sound System only yet, TODO: also add them for other models if that possible
2020-09-08WhoopsWohlstand
2020-09-08Make HMI channel management being more accurateWohlstand
#223
2020-09-06Added an aproximated HMI volume modelWohlstand
2020-09-03Fixed an incorrect logic of CC121Wohlstand
Issue #227
2020-09-02Merge branch 'master' of github.com:Wohlstand/libADLMIDIWohlstand
2020-09-02When playing XMIDI files, set defaults of AILWohlstand
- Default volume in AIL is 127 - Default pitch bend sensitivity is a full octave up, and full octave down: MSB=12, LSB=0
2020-09-02Fixed the missing of custom bank settingsWohlstand