Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-24 | add unit test to check internal instrument conversions | JP Cimalando | |
2018-07-23 | preserve the data of operator 3-4 in internal storage, regardless of being ↵ | JP Cimalando | |
2op/4op | |||
2018-07-18 | fix the conversion of FMIns->ADLI operators | JP Cimalando | |
2018-06-25 | Fixed build with disabled embedded banks | Vitaly Novichkov | |
2018-06-25 | Using bigger integers for math in some places | Vitaly Novichkov | |
2018-06-24 | [Experimental] Big re-factoring of internals and clean-up | Vitaly Novichkov | |
- Renamed functions - Renamed variables - Documenting of most library internal stuff - Disabling of embedded banks no more conflicts with accidental linking of adldata.cpp | |||
2018-06-24 | Make CMF files sound more correctly | Vitaly Novichkov | |
(Especially, Dyna Blaster and Xargon musics are sounding too messy. This fix allows to resolve that) | |||
2018-06-21 | Small clean-up in a custom bank loading function | Vitaly Novichkov | |
2018-06-21 | Fixed C++98 bulid | Vitaly Novichkov | |
lround is C99 and C++11, not C++98! | |||
2018-06-21 | Move MIDI sequencer into completely separated class | Vitaly Novichkov | |
TODO: - implement C bindings for most of class functions - test it in work on any different synthesizer | |||
2018-06-20 | Move file reader into the separated header file | Vitaly Novichkov | |
2018-06-19 | get chip base on level with OPNMIDI | JP Cimalando | |
2018-06-03 | Bugfixes | Wohlstand | |
- Fixed all MSVC 2015/2017 warnings in both 32 and 64 bit builds - Fixed weird behavior when using adl_setHVibrato, adl_setHTremolo, adl_setScaleModulators, and adl_setVolumeRangeModel when passing the -1 "Auto" state - Move arpeggio counter into the MIDIPlay class as originally it was a global static variable which is ugly and danger when running multiple instances of the same library | |||
2018-06-03 | fix build under dynamic bank map and embedded banks disabled | JP Cimalando | |
2018-06-02 | dynamic instrument API | JP Cimalando | |
2018-06-01 | bank storage inside dynamic map | JP Cimalando | |
2018-06-01 | Fix the build on OpenWatcom | Vitaly Novichkov | |
[the full-working compiling still not working yet due bug on OW side] | |||
2018-05-31 | Small polishing of volume model and CMF/RSXX tempo | Vitaly Novichkov | |
- Removed "Logarithmic volumes" flag as volume models concept successfuly serves this task. "Logarithmic volumes" flag is useless when we have volume models. - Fixed "too fast" tempo while playing CMF and EA-MUS (aka RSXX) files | |||
2018-05-20 | TRUE fix of the default MIDI tempo | Vitaly Novichkov | |
#91 | |||
2018-05-20 | Polishing default tempo for MIDI files are lacks the tempo event | Vitaly Novichkov | |
#91 | |||
2018-05-19 | Works and fixes | Vitaly Novichkov | |
- Fixed an incorrect calculation of 4-op channels and choosing 4-op channels for 2-op only banks - Resolved trouble with automatically chosen flags because of internal confusion | |||
2018-05-16 | fix the operators loop in WOPL converter | JP Cimalando | |
2018-05-16 | storing adldata and adlinsdata in unified structures | JP Cimalando | |
2018-05-06 | Fixed inability to load another custom bank! | Vitaly Novichkov | |
Damn, this is so silly: Data of new bank data was added to tail of old data as I forgot to clean up that crap before to fill with a new data, damn! (#83) | |||
2018-04-20 | Use the same WOPL_File parser from OPL3 Bank Editor in libADLMIDI | Vitaly Novichkov | |
TODO: port this into Gen-ADLDATA too! No more need to update same file parser twice. Just, copy-paste the same WOPL parser between of OPL3 Bank Editor and libADLMIDI. | |||
2018-04-20 | Put some another functions into "ADLMIDI_DISABLE_MIDI_SEQUENCER" zone | Vitaly Novichkov | |
Those functions are dead out of disabled MIDI Sequencer code, so, there are must NOT appear in the library when MIDI Sequencer is disabled. | |||
2018-04-10 | [Experimental] Added support for emulation core switching in real time! | Vitaly Novichkov | |
Due to clunky playback on updated Nuked OPL3 emulator v 1.8, I kept the Nuked OPL3 1.7.4 work in parallel and be a separated switchable emulator. | |||
2018-03-31 | Small warning fix | Vitaly Novichkov | |
2018-03-27 | Fixed blank instruments fallback in multi-bank support | Vitaly Novichkov | |
2018-03-24 | Added ability to disable MUS and XMI converters and MIDI Sequencer | Vitaly Novichkov | |
2018-01-21 | Copyright year update 2018 | Vitaly Novichkov | |
2017-12-18 | Fixed missing applySetup() calls on bank changes | Wohlstand | |
Without calling of that function changed bank will have incorrect setup. | |||
2017-12-16 | Added realtime API, Experimental, not tested | Vitaly Novichkov | |
- Added Real-time public API, needed a test! (try to implement dummy VLC plugin with it) - Added abillity to change deep flags without song restart or a chip reset | |||
2017-11-24 | Merge branch 'master' into get-rid-of-backup-buffer | Wohlstand | |
2017-11-24 | Small bank reading error message fix | Wohlstand | |
2017-11-23 | Get rid of backup samples buffer | Wohlstand | |
2017-11-21 | Small fix of IMF length parsing | Wohlstand | |
2017-11-20 | Use const char* and const void* as input data types | Wohlstand | |
2017-11-19 | Upgrated support for WOPL bank format to v3 | Wohlstand | |
2017-11-17 | Tiny beautifying, again | Wohlstand | |
2017-11-16 | Clean-up and beautifying | Wohlstand | |
2017-11-14 | Tiny clean up | Wohlstand | |
2017-11-12 | libADLMIDI now is buildable under OpenWatcom except of some workarounds | Wohlstand | |
- Need a different way to create a static library, otherwise it don't wanna be built. - Needed a different custom STL containers (std::vector and std::set) implementation that will work and will don't glitch with a crashes | |||
2017-11-10 | Incomplete attempt to provide support for OpenWattcom compiler | Wohlstand | |
Yeah, I see it lacks A LOT OF things: std::vector lacks .data() member, std::map lacks .count() member, there is no any std::stringstream implementations, etc. SOLUTION: Try to use STLPort to provide missing STL support for this compiler | |||
2017-11-08 | Fixed zero four-operators bug when using a bigger non-GM bank | Wohlstand | |
2017-11-07 | Fix a bug which overrides loopStart with seek destination position | Wohlstand | |
2017-11-07 | Custom WOPL now supports multiple banks | Wohlstand | |
Feel free to create something like GS or XG bank :wink: | |||
2017-11-07 | New API, classic ADLMIDI, and CMake | Wohlstand | |
- Attempt to support hardware OPL and add build of classic ADLMIDI into CMake - Added new API functions - Added C++ Extras are needed for classic ADLMIDI player - Error string is no more static. Static variant is kept for initialization errors only. | |||
2017-11-05 | Use WOPL's bank flags to set deep tremolo and deep vibrato | Wohlstand | |
2017-11-05 | Tri-state for deep-tremolo/vibrato/sm/adlib-percussion modes | Wohlstand | |
By default every flag will have "auto" type which means mode will be set in dependence on a bank. |