Difference between revisions of "Andlabs/Time Trax"

From Sega Retro

Line 50: Line 50:
 
*$22 byte - cached chip panning value?
 
*$22 byte - cached chip panning value?
 
*xxxx
 
*xxxx
*$31 byte - something to do with scheduling key off
+
*$31 byte - if nonzero, value of offset $09 to trigger a key off at
 
*$32 byte - something to do with scheduling key off
 
*$32 byte - something to do with scheduling key off
 
*$33 byte - current note duration (loaded with new note and saved)
 
*$33 byte - current note duration (loaded with new note and saved)

Revision as of 04:35, 17 July 2013

There are only two sound banks.

  • $F0000 - PCM samples
  • $F8000 - music and SFX

everything fits neatly into its bank

Commands

Commands are two bytes each, the first byte being the argument and the second byte being the command itself. There are $20 bytes granted for commands (so up to $10 commands at once), and another byte in RAM used to determine where the command write pointer is. (Another byte stores where it used to be; this is used to tell if we have new commands.)

Commands, where $xx indicates argument:

  • $00 - play sound $xx ($00..$05 music, $06..$nn SFX)
  • $01 - ??
  • $02 - ??
  • $03 - ??
  • $04 - ??
  • $05 - ??
  • $06 - ??

Sound Bank

The beginning of this bank consists of the following:

  • $0 byte - ???
  • $1 big-endian word - bank pointer to list of songs
  • $3 big-endian word - bank pointer to list of FM voices
  • ...

The list of songs consists of just a flat list of big-endian bank pointers.

Song Format

The first thing in each song is a list of n channel headers; their form is:

  • $00 byte - xxxxxxxxxxx; loaded to byte $01 of the in-RAM channel data structure, if $FF, end the list (and thus stop loading the sound, as there is nothing left to do)
  • $01 byte - channel number:
    • $00..$05 - FM1..FM6
    • $06 - PSG1
    • $07 - PSG2

If the value at $00 is xxxxxx than the value already loaded into the channel's $01h, then the following two bytes are merely skipped:

  • $02 little endian word - channel data pointer; laoded to byte $07 of the in-RAM channel data structure

Z80 RAM Channel Data Structure

  • $00 byte - xxxxx; if top bit is set, channel is not played
  • $01 byte - xxxxx; loaded from byte $00 of the sound
  • xxxx
  • $04 little endian word - current chip frequency number (after processing)
  • $06 little endian word - channel data pointer; loaded from byte $03 of the sound
  • $08 byte - current note byte
  • $09 byte - current amount of ticks remaining in note
  • xxxx
  • $20 byte - saved note duration?
  • $21 byte - song data panning value?
  • $22 byte - cached chip panning value?
  • xxxx
  • $31 byte - if nonzero, value of offset $09 to trigger a key off at
  • $32 byte - something to do with scheduling key off
  • $33 byte - current note duration (loaded with new note and saved)
  • xxxx
  • $58..$71 - FM voice data (TODO what is this on PSG?)
    • $58 byte - algo/FB
    • $59 byte - AMS/FMS
    • $5A, $5B, $5C, $5D byte - DT/MULT for op 1, 2, 3, 4 respectively
    • $5E, $5F, $60, $61 byte - TL for op 1, 2, 3, 4 respectively
    • $62, $63, $64, $65 byte - AR/RS for op 1, 2, 3, 4 respectively
    • $66, $67, $68, $69 byte - DR/AM for op 1, 2, 3, 4 respectively
    • $6A, $6B, $6C, $6D byte - SR for op 1, 2, 3, 4 respectively
    • $6E, $6F, $70, $71 byte - RR/SL for op 1, 2, 3, 4 respectively
  • xxxx
  • $74 byte - flag to reload panning?
  • $75 byte - flag to reload FM voice (TODO PSG?)
  • $76 byte - signed value to add to channel frequency value when it is accessed to get final channel frequency value
TODO call this "fine frequency adjustment"?
  • xxxx
  • $79 byte - xxxxx; if top bit is set, channel is not played

Note to Frequency Pipeline

  1. xxxxx
  2. Get the frequency number for the new note value
  3. Add the 16-bit sign extended value from byte offset $76 to the base frequency number to get the final frequency number and store it in offset $04

Channel Binary Format

A byte is read from the current pointer

  • If it is >= $80, then it is a command.
  • If it is zero, then this is a rest.
    • If $20 is zero, then the next byte is read to indicate new note duration (?).
  • Otherwise, it is a note.
    • If $20 is zero, then the next byte is read to indicate new note duration (?).

Effects

Byte FM Channels PSG Channels
$80 stop channel
$81 little-endian-word jump to address
$82
$83
$84
$85
$86
$87
$88 byte load FM voice n
...
$A6 byte Set LFO; LFO is global to the entire YM2612. 0 turns off, 1..8 sets LFO frequency to 0..7 (respectively).
$A7 byte play PCM sample n
$A8 byte set signed value to add to chip frequency number (offset $76)
$A9 clear signed value to add to chip frequency number (offset $76), meaning nothing gets added
$AA
$AB
(else) undefined behavior

PCM Sample Bank

The top of this bank contains pointer-length pairs for PCM samples. Pointers are relative to the Z80 memory map (so they are bank pointers). Pointers and lengths are big endian (this is NOT how things usually are done!)

Or in other words

  • $0 word - first sample pointer BIG ENDIAN
  • $2 word - first sample length BIG ENDIAN
  • $4 word - second sample pointer BIG ENDIAN
  • $6 word - second sample length BIG ENDIAN
  • $8 word - third sample pointer BIG ENDIAN
  • $A word - third sample length BIG ENDIAN

and so on until the first PCM data byte

PCM Sample Playback

PCM samples are played back through a buffer: the game reads $80 bytes of sample data, then plays back one byte of ample data every so often. Buffer filling is done all at once and in groups of 8 bytes, with another PCM data write after each group of 8 bytes.

Though the sample buffer is $80 bytes long, the game has two consecutive buffers, switching after one has been played through. Why he doesn't just use one $100-byte-long buffer is beyond me; maybe he wanted it to load to the second buffer while playing back from the first?

pcm-bug

There appears to be a bug in the buffer loading code:

ROM:0B18                 ld      hl, (PCMSampleLength)
ROM:0B1B                 ld      bc, 80h ; 'Ç'
ROM:0B1E                 sbc     hl, bc
ROM:0B20                 jp      m, loc_C67 ; stops sample playback
ROM:0B23                 ld      (PCMSampleLength), hl

if I am reading this correctly, the game will stop playing samples if it cannot fill a buffer completely, leaving the tail end of samples unplayed:

00f0000: 8024 166e 9692 048d 9b1f 0a70 a58f 0869  .$.n.......p...i
00f0010: adf8 156f c367 0975 ccdc 0579 d255 2080  ...o.g.u...y.U .
00f0020: f2d5 093b ____ ____ ____ ____ ____ ____  ...;____________

notice how none of those lengths (except one) are aligned