FF7/PSX/Sound/INSTRx.DAT

From Final Fantasy Inside
< FF7
Revision as of 04:56, 30 May 2020 by Loveemu (talk | contribs)
Jump to navigation Jump to search

There are two files of such type:

  • SOUND/INSTR.DAT - Main game sounds (93 instruments)
  • SOUND/INSTR2.DAT - Voices from ending theme "One Winged Angel" (4 instruments)

These files contain index data for all instruments from INSTRx.ALL.


Record format

struct InstrumentIndex
{
  /* offsets */
  uint32_t attack_offset // offset to attack part of instrument (SPU hardware address)
  uint32_t loop_offset;  // offset to loop part of instrument (SPU hardware address)
  /* ADSR Envelope settings */
  uint8_t attack_rate;   // ADSR: attack rate (0x00-0x7f)
  uint8_t decay_rate;    // ADSR: decay rate (0x00-0x0f)
  uint8_t sustain_level; // ADSR: sustain level (0x00-0x0f)
  uint8_t sustain_rate;  // ADSR: sustain rate (0x00-0x7f)
  uint8_t release_rate;  // ADSR: release rate (0x00-0x1f)
  uint8_t attack_mode;   // ADSR: attack mode
                         //    0x05 - (exponential)
                         //    0x01 (default) - (linear)
  uint8_t sustain_mode;  // ADSR: sustain mode
                         //    0x01 - (linear, increase)
                         //    0x05 - (exponential, increase)
                         //    0x07 - (exponential, decrease)
                         //    0x03 (default) - (linear, decrease)
  uint8_t release_mode;  // ADSR: release mode
                         //    0x07 - (exponential decrease)
                         //    0x03 (default) - (linear decrease)
  uint32_t pitch[12];    // predefined pitch set for instrument
};

Each index file takes 4 CDROM sectors, so rest unused data filled with zeroes. Attack and loop offsets isn't real file offsets, it's offsets to instruments in SPU internal memory (all instrument data from INSTRx.ALL files are copied by DMA to SPU memory in one chunk), so to translate INSTR.ALL you need to subtract 0x0ff0 (or you need to subtract 0x38540 for INSTR2.DAT). INSTR.DAT file resides in PSX RAM at address 0x80075f30 and when it's needed to load any instrument or to reset pitch for this instrument this table is used.