How To

What are the functions of the parameter and the command bits in the sound data format?

1

SP4CEBAR 2021-03-26 11:17 (Edited)

For my piano roll program I'll be using the NX sound data format. I understand most of it, but I have no clue what the four parameter bits and the four command bits of a track are for.

Reference:
Each track occupies 96 bytes and consists of 32 entries with each 3 bytes:
- Note pitch (0 = empty)
- Data (ignored if note is 0):
. . . Bit Purpose
. . . 0-3 Volume
. . . 4-7 Sound
- Control:
. . . Bit Purpose
. . . 0-3 Parameter <-- what are these for
. . . 4-7 Command


Timo 2021-03-26 12:40

The sound commands are described at the end of the Sound Composer chapter in the manual: https://lowresnx.inutilis.com/docs/manual.html#Sound-Composer

A sound command looks like this for example: E8 -> set speed (E) to 8. Most commands are for changing instruments, which is hardly used.


SP4CEBAR 2021-03-26 16:14

Thanks


SP4CEBAR 2021-04-01 16:03

I'm now working on a sound effect automation panel to control these commands


Timo 2021-04-01 16:56

Wow :O


Log in to reply.