Until QuickTime Musical Instruments came along, classic Mac OS didn't have much support for MIDI. So many games would pack the MIDI data and samples into resources in the resource fork of the application. They then interpreted the MIDI data and mixed the samples together at different pitches to make music. There was a developer who released a library that made this all possible. Some games that used this library were:

  • SimCity 2000
  • Lemmings
  • Wolfenstein 3D

Some of the instrument samples were saved as SND resources while others were in a proprietary format (to the library) and were LZW compressed if I recall correctly. 20 years ago, as a hobby, I used to rip the MIDI data out of the resource fork along with the sample data. Then I would put both through a MIDI software sampler and record the resulting music.

However, I can't seem to recall the name of the library the games used or the developer who wrote it. Using this description of the library, can someone recall and tell me the name of it and the developer? For some reason, "csnd" rings a bell, but that hasn't turned up anything on Google.

I'm also pretty sure a shareware version of the library was on the CD in the back of a book entitled Tricks of the Mac Game Programming Gurus. I've since gotten rid of the book.

有帮助吗?

解决方案

I did some research and reverse-engineering on this recently. The library was called SoundMusicSys, and there's now an open-source version of it called miniBAE (Beatnik Audio Engine) which appears to be mostly based on the original code.

It turns out that csnd resources are just normal snd resources that were LZSS compressed and delta-encoded in a few different ways depending on whether they're mono/stereo or 8/16-bit. cmid resources (compressed MIDI) are just LZSS compressed and not delta-encoded. There also appear to be esnd (encrypted snd) and emid (encrypted MIDI) resources, but I couldn't find any examples of these to reverse-engineer. SoundMusicSys used a few other resource types to link the snd/csnd and MIDIs together; the most relevant of these are SONG and INST, which define the instruments and parameters for each tune.

I wrote a disassembler for classic Mac OS resource forks a while ago, and recently added support for extracting csnd/cmid, INST, and SONG resources in addition to all the normal stuff (snd, MIDI, etc.). Might be useful in playing around with these classic games' content.

其他提示

This isn't a full answer to your question, but...

Many of the classic Mac OS games used .sad files, but that's probably not the case with the games you've listed as examples.

Certainly in the case of Lemmings, it actually stored basic sounds as .snd resources. In many cases these .snd resources were part of the MIDI resource you're referring to, and these in turn were used to build the .song resources that produced the music. Users could also use tools like ResEdit to access the data directly. You can still download ResEdit 2.1.3 directly from Apple or from mac.org.

Other games actually included an Audio CD partition that would be available for the game to play music from, although this certainly isn't the answer to your question.

I'll do some digging as I still have classic Mac hardware and software. If I come across anything that may shed some light on the library you're looking for I'll be sure to update this.

许可以下: CC-BY-SA归因
不隶属于 apple.stackexchange
scroll top