ngdevkit:s_env

Last commit made on 2024-03-30
Get this branch:
git clone -b s_env https://git.launchpad.net/ngdevkit

Branch merges

Branch information

Name:
s_env
Repository:
lp:ngdevkit

Recent commits

c458df3... by Damien Ciabrini

nullsound: new NSS opcode to simulate auto-envelope

Furnace has a feature that reconfigures the SSG envelope based
on the current note's frequency and a configurable quotient
numerator/denominator. This maps into the YM2610's envelope
register.
We don't want to do math on the Z80 at runtime, so we have
to simulate this feature by precomputing the quotient prior
to playing the note at runtime.

Add a new opcode SSG_ENV_PERIOD that is inserted automatically
by nsstool.py in a new compilation pass.
This requires nsstool to know the autoenv configuration for the
instrument in use, so make nsstool parse the instrument section
of the Furnace module before generating NSS data.

6a540e0... by Damien Ciabrini

nullsound: rework SSG macros and how they are applied

Two major updates to how SSG macro work in nullsound:

1.
The logic of update_ssg_macro used run macro steps for each
SSG channel and then load the mirrored state of all channels.
This is not ideal as it cannot detect when a macro is finished,
and thus it keep uploading mirrored state into the YM2610 at
every step even when not necessary.
Now the algorithm group update and load together, so it won't
load data into the YM2610 when a macro is finished.

2.
The SSG register common to all channels must not be updated at
every tick. For instance, when doing so with the envelope channel,
this resets the envelope shape on every note, which is not the
behaviour implemented by Furnace.
Split macros into two subparts: one is only called once when the
macro is set up for a SSG channel. The other parts contains the
remaining data that must be run on every tick while a note is
playing.

ec88c52... by Damien Ciabrini

nsstool: ability to filter channels to be processed

f993ead... by Damien Ciabrini

furtool: fix detune format conversion for YM2610

Furnace stores the detune parameter of a FM instrument in
a different way as what is natively supported by the YM2610.
Convert the value in the generated instrument data to fix
the discrepancy.

3777c29... by Damien Ciabrini

nullsound: add NSS opcode for FM volume

4a1757f... by Damien Ciabrini

furtool: do not export generated macro load functions

macro load functions are named after the order of the instrument
in the module, but they are not unique across modules.

make the macro name static to their file, so that the linker
can link multiple musics in a single IHX without name conflicts.

794b72c... by Damien Ciabrini

adpcmtool: ensure padding works on tuple and list objects

adpcmtool exposes its API to other tools (e.g. furtool),
so make sure its input can be padded if it's a tuple
or a list.

4e2fcfe... by Damien Ciabrini

furtool: automatically convert PCM samples to ADPCM

238d1d4... by Damien Ciabrini

Fix nsstool typo during NSS stream compaction

The typo made nsstool generate a stream to broke channel volume
configs.

5ce4825... by Damien Ciabrini

nullsound: support for SSG volume in NSS stream