Commit Graph

2697 Commits

Author SHA1 Message Date
Waldemar Pawlaszek e42ab1b847 Experimental Mikey VGM 1.72 export. 2023-01-15 16:27:20 +01:00
tildearrow 1ab80379e1 VGM export: fix wrong loop size 2023-01-15 04:32:47 -05:00
tildearrow 17cb32fe9e VGM export: improve volumes 2023-01-15 03:54:11 -05:00
tildearrow 6c5f9886fb OPL: fix t/hh per-chan osc not being visib in OPL3 2023-01-15 02:10:24 -05:00
tildearrow a3d20ac3fd WonderSwan: why does this not work 2023-01-15 01:46:34 -05:00
tildearrow 9ada18a57a VGM export: always write stream freq first 2023-01-15 01:20:31 -05:00
tildearrow cb11d3f268 strict-aliasing........ 2023-01-15 00:45:31 -05:00
tildearrow be79f80770 SoundUnit: separate flag register
issue #649
2023-01-15 00:40:57 -05:00
tildearrow ed11b6cf78 Namco WSG: fix frequency overflow 2023-01-14 13:34:08 -05:00
tildearrow 73b399d00d freaking GCC and your artificial errors 2023-01-14 01:12:16 -05:00
cam900 fcc5b6e5eb Replace divider to shift 2023-01-14 11:55:40 +09:00
cam900 a8e388091a Merge branch 'master' of https://github.com/tildearrow/furnace into opn_volbalance 2023-01-14 11:51:46 +09:00
cam900 a50465496c Addressing commits 2023-01-14 11:51:10 +09:00
cam900 c995a52835 Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2023-01-14 11:50:33 +09:00
tildearrow a8eedea925 QSound: prevent negative memory capacity 2023-01-13 14:11:32 -05:00
cam900 ab532cca84
Fix free QSound ADPCM space calculation (#826) 2023-01-13 14:10:33 -05:00
tildearrow 169929ff9b ZX beeper: fix frequency range 2023-01-13 03:39:59 -05:00
tildearrow ae007b3829 Lynx: fix frequency craziness 2023-01-13 01:22:15 -05:00
tildearrow 8d0090b0f3 X1-010: fix frequency overflow
issue #843
2023-01-13 01:15:55 -05:00
tildearrow 7b14175e45 C64: fix frequency overflow 2023-01-13 01:10:57 -05:00
tildearrow f939878fcb AY8930: always write duty 2023-01-13 00:51:16 -05:00
cam900 ab46b8e080 Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2023-01-13 14:24:43 +09:00
tildearrow fe4800f165 AY8930: fix Mag Max and Kyugo clock rates 2023-01-13 00:22:00 -05:00
tildearrow e560838025 OPL/OPLL: expand relative pitch range...
poor Z80
2023-01-13 00:15:37 -05:00
tildearrow 961c977378 OPM/OPZ: custom clocks
finally
2023-01-13 00:07:56 -05:00
tildearrow d99f0cd045 T6W28: forceIns() noise mode 2023-01-12 23:19:28 -05:00
tildearrow e3073a22e9 BubSys: fix crash 2023-01-12 23:17:32 -05:00
tildearrow 21ab10c30c N163: fix crash 2023-01-12 23:16:33 -05:00
tildearrow 0c36c0633b VRC6: fix crash 2023-01-12 23:14:57 -05:00
cam900 b64c089c56 Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2023-01-13 09:48:52 +09:00
tildearrow bf0c58aedc OPNA/OPNB: implement pitch macro
issue #838
2023-01-12 18:47:02 -05:00
tildearrow 9af1ce84df AY8930: increase pitch macro range to 65535 2023-01-12 18:42:34 -05:00
tildearrow 5df68c2ee8 AY/AY8930: fix period overflow 2023-01-12 18:39:25 -05:00
tildearrow 4724c1ccb1 Game Boy and NES: pitch macro now affects noise 2023-01-12 18:36:13 -05:00
tildearrow 84ae0b31f3 OPZ: pan macro 2023-01-12 18:33:11 -05:00
tildearrow 089f3f3b9b PCE: fix drop 2023-01-12 18:23:04 -05:00
tildearrow 04849d2172 PCE: where is the low period cap 2023-01-12 18:17:31 -05:00
tildearrow b074136094 Game Boy: make pitch macro work on noise 2023-01-12 18:10:17 -05:00
tildearrow f2fdeb9df8 Game Boy: fix period 0 causing overflow
issue #835
2023-01-12 17:59:40 -05:00
tildearrow aea7a67d3e Namco WSG: noise in per-chan osc for real? 2023-01-12 17:45:33 -05:00
tildearrow 51cef18bff AY: optimize 2023-01-12 16:05:03 -05:00
cam900 536c345763 Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2023-01-12 23:31:56 +09:00
tildearrow 9b80af3a4e dev136 - Merge branch 'newDispatch' (PLEASE READ!)
the following changes have been made:
- a different strategy for DivDispatch audio output.
  - if you're working on a new chip, be sure to replace isStereo()
    with getOutputCount(). if isStereo() was true, return 2; otherwise
    1.
    do not return 0 or you will melt the oven!
  - additionally, the acquire() function has changed. it's now:
    `acquire(short** buf, size_t len)`
    replace bufL with buf[0] and bufR with buf[1].
    `start` is gone. if you really needed to use it, take a look at
    pcspkr.
    if you write to buf[1] and getOutputCount is 1, the oven will
    melt as well!
- support for more-than-stereo audio, with up to 16 outputs.
- a brand-new patchbay routing feature. arbitrarily route chip outputs
  to system outputs.
2023-01-12 03:59:53 -05:00
tildearrow 93aa84bb27 GUI: patchbay right click menu 2023-01-12 03:56:18 -05:00
tildearrow 01f6e8f963 make patchbay effective on samplepreview/metronome 2023-01-12 03:31:43 -05:00
tildearrow 0fd0206cc3 fix build 2023-01-11 00:10:42 -05:00
tildearrow 51802720a6 GUI: more patchbay work 2023-01-10 19:09:26 -05:00
tildearrow a36322ff82 fix possible crash when switching stereo on X1-010 2023-01-10 16:15:37 -05:00
tildearrow 2fbec000d7 dev136 - add auto patchbay toggle 2023-01-10 15:58:15 -05:00
tildearrow 9b79bc0e7b GUI: it doesn't work! 2023-01-08 19:23:17 -05:00
tildearrow e0785d9f00 fix front/rear being inverted 2023-01-07 16:39:01 -05:00
Waldemar Pawlaszek 8e009509db POKEY: audc is set for wrong channel when channels 3 & 4 are paired 2023-01-07 18:51:55 +01:00
tildearrow 1154a2bda6 implement patchbay-based output 2023-01-06 18:44:20 -05:00
tildearrow 6273275b47 new floating-point volumes and patchbay 2023-01-06 17:43:08 -05:00
tildearrow 707bbb54ea add effects for rear panning 2023-01-05 03:08:57 -05:00
tildearrow 71e40dc015 support more than 2 output channels
up to 16 on JACK
to-do: add more mixer settings
2023-01-05 02:40:17 -05:00
tildearrow 48bcc6a124 prepare for handling more than 2 channels 2023-01-04 20:04:02 -05:00
cam900 96983e3d48 Add SSG and FM/ADPCM volume mixer config for OPN/A/B 2023-01-05 09:49:21 +09:00
tildearrow abf2461573 OPL: increase range of pan macro 2023-01-04 19:16:37 -05:00
tildearrow fd9b1dd0f5 OPL: quad output
now that we have this new dispatch output method
2023-01-04 18:30:29 -05:00
tildearrow 6c834524aa new dispatch, part 4 2023-01-04 17:01:14 -05:00
tildearrow 9436e2ab55 new dispatch, part 3 2023-01-04 03:11:47 -05:00
tildearrow 3a687eeb45 new dispatch, part 2 2023-01-03 14:39:31 -05:00
tildearrow a29f36a5df new dispatch, part 1 2023-01-03 01:09:46 -05:00
tildearrow 3e0dcbb0ae aaaaaaaa 2023-01-02 04:53:37 -05:00
tildearrow e06b2f6952 Merge branch 'master' into newDispatch 2023-01-02 00:07:02 -05:00
tildearrow 560ec19176 SMS/T6W28: limit upper period 2023-01-02 00:00:23 -05:00
tildearrow 08d2f12dbd prepare new dispatch
will allow for more than 2 outputs
2023-01-01 19:46:08 -05:00
cam900 8a71a81ffb Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2023-01-02 09:26:05 +09:00
tildearrow db690a1e45 release v0.6pre3 2022-12-31 17:00:40 -05:00
tildearrow 821df80594 Namco WSG: noise in per-chan osc? 2022-12-31 16:19:02 -05:00
tildearrow b07798b805 YM2203: fix non-linear 2022-12-31 14:14:35 -05:00
tildearrow 84bb613b42 fuuuuuuu 2022-12-29 16:14:22 -05:00
tildearrow f2fce2fab3 YM2612: phase reset for samples 2022-12-29 15:58:42 -05:00
tildearrow e31f8a2115 SegaPCM: fix new arp strat 2022-12-29 15:42:01 -05:00
tildearrow ae4cb78c2c ... 2022-12-29 15:25:38 -05:00
tildearrow f8bceecebf another update 2022-12-29 14:43:42 -05:00
tildearrow e8d9fd6a15 maybe fix possible crash in low buffer sizes 2022-12-29 14:34:19 -05:00
tildearrow 89995a02be QSound: fix ADPCM
I guess you can say it's complete
2022-12-29 03:31:26 -05:00
tildearrow 7fa5fecd38 possibly fix retrigger with sample map 2022-12-29 03:12:00 -05:00
tildearrow 5bc2ccbe8e fix a tiny bug when saving SNES instruments 2022-12-29 02:22:20 -05:00
cam900 ff937604c7
Merge branch 'master' into es5506_alt 2022-12-29 16:18:24 +09:00
tildearrow 286cca3a54 NES: What, what, what, what, what, what, what, what, what, what? 2022-12-28 23:57:06 -05:00
tildearrow 85c4086d5a why is this here 2022-12-28 23:11:16 -05:00
tildearrow 37c2ea3097 NES: fix arp macro 2022-12-28 23:04:12 -05:00
tildearrow 893b48b9bb fix SPC_DSP.cpp to work on GCC 5 2022-12-28 21:37:42 -05:00
tildearrow a09ad00e48 prepare for 0.6pre3
OPN: add flag to make ExtCh op 1 be the only one controlling FB
GUI: move Arcade presets to top
GUI: fix YM2612 CSM not having flags
2022-12-28 18:11:30 -05:00
tildearrow ce89080be7 Untested Crap 2022-12-28 17:41:31 -05:00
tildearrow 9a429e3563 PCE: fix arp macro on noise 2022-12-28 17:23:13 -05:00
tildearrow 0fe8554a5d MSM5232: fix arp macro 2022-12-28 15:27:38 -05:00
tildearrow 8e4fda542a OPNA: fix rim muting 2022-12-28 14:51:59 -05:00
tildearrow 2c182334d7 OPN: increase range of pitch2 2022-12-28 14:47:50 -05:00
tildearrow 47be21df4d f-num/block range fix 2022-12-26 16:09:38 -05:00
tildearrow 9e47468b53 YM2612: workaround 2022-12-26 13:49:59 -05:00
tildearrow 1fae16514c OPLL: freqChanged during note off? 2022-12-25 15:54:40 -05:00
tildearrow 513ab09e7c OPLL: what why 2047 2022-12-25 14:45:07 -05:00
tildearrow 2923eb6265 SegaPCM: fix per-chan osc when muted 2022-12-25 05:04:32 -05:00
cam900 f992346772 Addressing comments 2022-12-25 18:51:23 +09:00
cam900 96c0bea63b Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt 2022-12-25 18:48:29 +09:00
tildearrow 4584b8aa82 POKEY: fix setFlags() crash with altASAP 2022-12-25 03:36:30 -05:00
tildearrow 618ff1d393 release v0.6pre2 2022-12-24 23:39:44 -05:00
tildearrow 89e057a2ba OPLL: fix possible overflow 2022-12-24 18:29:01 -05:00
tildearrow 0914359063 dev131 - SNES: add more sustain modes and D2 2022-12-24 18:03:57 -05:00
tildearrow 6cce918c02 Nuked-OPN2 + ymfm combo option for all OPN chips
modified Nuked doing FM and ymfm doing SSG/ADPCM
2022-12-24 02:29:37 -05:00
tildearrow 85d43a84a7 make OPN channel offsets common 2022-12-24 00:15:15 -05:00
cam900 a793bed56d
Merge branch 'master' into es5506_alt 2022-12-24 12:01:03 +09:00
tildearrow 37dbc52a68 YM2612: CSM without DualPCM 2022-12-23 19:26:42 -05:00
tildearrow dff3ddeb3a port ExtCh op macro code to OPN family, part 7 2022-12-23 19:06:10 -05:00
tildearrow 75416fc63e port ExtCh op macro code to OPN family, part 6 2022-12-23 19:00:03 -05:00
tildearrow e161eb2e20 port ExtCh op macro code to OPN family, part 5 2022-12-23 14:31:00 -05:00
tildearrow da9e64881d port ExtCh op macro code to OPN family, part 4 2022-12-23 13:55:15 -05:00
Waldemar Pawlaszek 35ac14d35b Applying notes. 2022-12-23 07:43:51 +01:00
Waldemar Pawlaszek e5e3a83302 More refactoring 2022-12-23 07:31:22 +01:00
Waldemar Pawlaszek 2423ec9bc6 Refactoring 2022-12-23 07:06:17 +01:00
Waldemar Pawlaszek f1c40082d6 Fixing osciloscope volume 2022-12-23 06:27:37 +01:00
tildearrow f3973a5ff5 POKEY: make ASAP core the default 2022-12-22 19:47:13 -05:00
tildearrow 84c4e48fbe POKEY: optimize ASAP core a lot 2022-12-22 19:45:08 -05:00
tildearrow 42367a5601 POKEY: optimize ASAP core a bit 2022-12-22 19:37:10 -05:00
tildearrow af770ec701 code style 2022-12-22 19:15:35 -05:00
Waldemar Pawlaszek d66042b9c7 macOS compilation fix 2022-12-22 23:25:14 +01:00
Waldemar Pawlaszek 44a26791c6 Applied code review remarks. 2022-12-22 23:17:38 +01:00
Waldemar Pawlaszek 1b2eb9cacb bugfixes 2022-12-22 23:04:03 +01:00
Waldemar Pawlaszek add1bf603b Merge remote-tracking branch 'origin/master' into ASAP_POKEY 2022-12-22 22:41:15 +01:00
Waldemar Pawlaszek 4a7e76c448 Renaming new POKEY core to AltASAP. Added core selection. 2022-12-22 22:40:29 +01:00
Waldemar Pawlaszek 3a94a7acde Implementation of POKEY core based on ASAP (http://asap.sourceforge.net) 2022-12-22 21:53:29 +01:00
tildearrow e74d7f1922 well I need to discard it?
I am not going to use that variable, you picky MSVC
2022-12-22 15:40:10 -05:00
tildearrow eab679e9d3 GUI: improve system detection algorithm (maybe) 2022-12-22 13:10:08 -05:00
tildearrow 2c36706d22 port ExtCh op macro code to OPN family, part 3 2022-12-21 21:50:49 -05:00
tildearrow 0eb2449c57 port ExtCh op macro code to OPN family, part 2 2022-12-21 18:02:00 -05:00
tildearrow 2a65f24b3f port ExtCh op macro code to OPN family, part 1 2022-12-21 17:55:38 -05:00
tildearrow dc4ad09903 MSM6295: 127!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 2022-12-21 16:33:32 -05:00
tildearrow 2ccc525293 K007232: ???
issue #797
2022-12-21 16:26:06 -05:00
tildearrow 019b036853 Merge branch 'master' of github.com:tildearrow/furnace 2022-12-20 22:36:57 -05:00
tildearrow 909c553be3 whoops! 2022-12-20 17:55:05 -05:00
tildearrow 7a92811fd9 rename some DIV_SYSTEM_ items
OPN -> YM2203
PC98 -> YM2608
FRAC -> DUALPCM
2022-12-20 17:49:53 -05:00
tildearrow 34f6a303a6 prepare for more CSM 2022-12-20 17:40:45 -05:00
tildearrow 36a62b9d6e Pokémon Mini: register layout 2022-12-20 16:33:57 -05:00
tildearrow 210a002ae4 POKEY: per-chan osc 2022-12-20 15:21:03 -05:00
tildearrow 15dc663a15 POKEY: remove dithering
we only use 16-bit output anyway
2022-12-20 15:07:58 -05:00
tildearrow b7302e0d98 POKEY: VGM export 2022-12-20 14:54:55 -05:00
tildearrow be41a2fe5d POKEY: fix forceIns 2022-12-20 03:52:18 -05:00
tildearrow 0d10b99cf7 POKEY: add AUDCTL macro 2022-12-20 02:59:26 -05:00
tildearrow 08f42f1ea0 POKEY: it's the opposite 2022-12-20 02:43:37 -05:00
tildearrow f781d63ac2 POKEY: bass period mapping
and effect to change AUDCTL
2022-12-20 02:39:34 -05:00
tildearrow 541360a446 POKEY: louder 2022-12-20 00:34:52 -05:00
tildearrow 4b4a2273d3 YM2151/2414: fix new arp 2022-12-20 00:29:12 -05:00
tildearrow ba674a0329 start work on POKEY
to-do:
- add ability to change AUDCTL
- bass shape frequency and waveform mapping
- easy noise???
2022-12-19 19:45:04 -05:00
tildearrow 4ba8c0513e the final mzpokeysnd change (maybe)
it works! now to work on DivPlatformPOKEY...
2022-12-19 17:10:45 -05:00
tildearrow 112d773544 and more mzpokeysnd changes 2022-12-19 16:46:19 -05:00
tildearrow 139ac97144 more mzpokeysnd changes 2022-12-19 16:39:10 -05:00