Audio/game sound effects -how were they made?

9 posts / 0 new
Last post
Offline
Last seen: 1 week 2 days ago
Joined: Sep 26 2019 - 16:46
Posts: 151
Audio/game sound effects -how were they made?

Ever since I got my first computer (yup, you know the one wink ) I've been fascinated and intrigued by all those cool game sound effects, despite not having a dedicated sound chip, but according to an article I recently came across ("Making the Apple II sing") it's essentially just a 1-bit square wave sound generator!

 

So what's the secret behind sound effects in games such as  Lode runner, Gumball, Choplifter and Ms. Pacman (to name just a few)?
Given that the sound generating hardware is so simple I gather it has more to do with the sequencing (i.e. note-pitch, note-length, tempo and placement of those notes in relation to each other). Recording those sound effects, then time-stretching to slow them down helps, but many of them are played so quickly and with such short notes it seems, that it's hard to audibly make out how the sound effects are constructed.

Perhaps someone can shed some light on the matter?

 

 

 

 

 

Online
Last seen: 26 min 12 sec ago
Joined: Jun 18 2010 - 13:54
Posts: 811
Short answer is that it's not

Short answer is that it's not just square waves. That would only create one frequency note (plus its odd harmonics).

 

The key to more sophisticated audio effects is to use pulse-width modulation. This can create much more intricate waveforms especially after the normal filtering effects of the Apple speaker circuit. Depending on how complex the software is, you can expect to achieve multi-voice harmonies and acceptable speech synthesis with just a 1-bit toggling speaker citcuit!

 

Check this out.

mmphosis's picture
Offline
Last seen: 1 week 2 days ago
Joined: Aug 18 2005 - 16:26
Posts: 452
timing is everything

You've got $C030 accesses and time in microseconds.  Machine language, cycle counting all to fiddle with the timing between the clicks of the speaker.

and delta modulation

Check this out.

 

Online
Last seen: 1 hour 36 min ago
Joined: Feb 27 2021 - 18:59
Posts: 693
no limit

"1-bit" audio generation is not the limitation it seems. The highest fidelity systems like DSD use 1-bit sampling at multi-MHz rates.

More modestly, there are demos on home computers that play back 4-channel sampled tracks through the "1-bit" speaker channel.

And there are oddball art projects that create some quite interesting music by toggling a single pin on a microcontroller.

S.Elliott's picture
Offline
Last seen: 2 hours 28 min ago
Joined: Jun 23 2022 - 16:26
Posts: 276
Two of those deciphered...
Fuji wrote:

So what's the secret behind sound effects in games such as  Lode runnerGumballChoplifter and Ms. Pacman (to name just a few)?

When I beat games back in the 80's, I then reverse-engineered as a second challenge.  So I learned how two of your listed examples worked by deciphering their machine code...

  • Gumball simply played its music in truncated, staccato notes with silent gaps between them -- the program did its animation (and other computing) during the silent gaps between notes.  That's why Gumball always pauses when it plays the factory whistle -- the whistle is a continuous sound effect, without any silent gaps, so there's no animation until the sound finishes.  This is a very common method of generating sounds in Apple games.
  • Ms. Pacman  uses a unique duet music library that was (AFAIK) only used in Atarisoft games.  Its machine code kept track of two counters for the two musical notes to be played at the same time, and used the carry bit to keep track of which direction the 'current' polarity of the Apple speaker.  Each time one of the notes called for generating an "edge" to the output waveform, it would compare the edge's direction the carry bit to decide whether to pulse the speaker and thereby generate a new edge.  If it encountered two adjacent edges in the same polarity, it simply merged them together into a single edge in order to avoid scrambling the signal.  The Atarisoft music generator was therefore just as loud as normal sound effects, unlike most multi-voice sound generators (eg: Electric Duet, Music Construction Set, etc.).
Offline
Last seen: 4 weeks 4 hours ago
Joined: Jun 25 2020 - 17:00
Posts: 254
jeffmazur wrote:Short answer
jeffmazur wrote:

Short answer is that it's not just square waves. That would only create one frequency note (plus its odd harmonics).

 

 

Thanks for the link to Paul Lutus' Electric Duet.  It brought back some great memories and reaquainteed me with Paul's great contributions.

 

Offline
Last seen: 1 week 2 days ago
Joined: Sep 26 2019 - 16:46
Posts: 151
Thanks to everybody's links
Thanks to everybody's links and replies. I see there's more to the Apple ][ audio than meets the eh.. ear smiley
So basically the pulse width modulation allows for more waveforms which certainly changes the game. I'm sure there's more to it than that, but that takes care of the audio source (i.e. "instrument sound").
 
But how about the sequencing (i.e. "the melody") that makes up the sound effects? I'd love to understand how some of the typical game sound effects were put together so I can recreate them myself, and create new ones along the same kind.

One thing I've done is to time-stretch (i.e. change the speed while keeping the pitch) of some game sound effects (using the time-stretch feature in Apple's Logic Pro X running on a Mac). Here are a few examples (audio taken from an Apple ][+ speaker while playing various games:
Lode Runner 1  Lode Runner 1 (stretched)
Lode Runner 2 Lode Runner 2 (stretched)

Lode Runner 5

  Lode Runner 5 (stretched)
Gumball 1   Gumball 1 (stretched)
Gumball 2   Gumball 2 (stretched)
Gumball 3   Gumball 3 (stretched)
Gumball 6   Gumball 6 (stretched)
Ms. Pac-Man 1  (Ms. Pac-Man 1 (stretched)
Ms. Pac-Man 2  (Ms. Pac-Man 2 (stretched)
Ms. Pac-Man 3  (Ms. Pac-Man 3 (stretched)
Ms. Pac-Man 4  (Ms. Pac-Man 4 (stretched)
Ms. Pac-Man 5  (Ms. Pac-Man 5 (stretched)
Ms. Pac-Man 6b  (Ms. Pac-Man 6b (stretched)


.
 
 
S.Elliott wrote:

When I beat games back in the 80's, I then reverse-engineered as a second challenge.  So I learned how two of your listed examples worked by deciphering their machine code...

  • Gumball simply played its music in truncated, staccato notes with silent gaps between them
  • Ms. Pacman  uses a unique duet music library that was (AFAIK) only used in Atarisoft games.

 

Wow! That's pretty cool.
Did you manage to extract the sequences ("melodies") from those games?
Regardless of having that data converted into a MIDI file or having to manually enter the information (note, duration, next note (or pause), duration etc.) it would be very useful for learning how they were constructed.

 

S.Elliott's picture
Offline
Last seen: 2 hours 28 min ago
Joined: Jun 23 2022 - 16:26
Posts: 276
A sample or two
Fuji wrote:
Did you manage to extract the sequences ("melodies") from those games?
 

No, I didn't think of extracting the melodies.  I enjoyed making it replay its own songs, but I only disassembled the subroutines that actually played the musical notes out of the speaker.  And I "borrowed" their ideas to make my own music and sound effect routines.

 

This YouTube clip from Moon Patrol illustrates several aspects of Apple sound fx.  The background melody is played in tiny staccato pulses.  As the buggy passes checkpoint Y, the program has to do more animation work, so the pulses of music become audibly sparser (and slower).  Then when the buggy reaches checkpoint Z, all animation stops in order to play a lively duet using the sound routine explained below.

Around 1984 I disassembled the two-voice music subroutine Atarisoft had used in Moon Patrol -- it was the same subroutine that Ms Pacman used in your "Ms. Pac-Man 1" sample.  Here's an illustration of how its algorithm works, as far as I remember...

Suppose Atarisoft's "duet" music routine was trying to play two musical pitches illustrated by the green square wave and the purple square wave.  The duet routine doesn't just blindly pulse the speaker for both square waves because it would create a chaotic jumble of extra edges, sounding nothing like either melody.  Instead, the routine pays attention to whether each edge is "rising" or "falling".  For instance, the first time the green wave rises, the routine pulses the speaker to make it rise too.  But then when the purple edge rises, the routine does not pulse the speaker because it has already generated a rising edge and doesn't need another rising edge.

 

Fuji wrote:Regardless of having that data converted into a MIDI file or having to manually enter the information (note, duration, next note (or pause), duration etc.) it would be very useful for learning how they were constructed.
 
If you're interested, on my blog there's a demo disk and source code for a 2-voice or 4-voice sound library I created in the 1980s using a naive method of pulsing the speaker that behaved differently on NMOS 6502 vs CMOS 65C02.  (It was audible on an Enhanced //e but not on a Plus.)  The managing editor at Nibble magazine suggested it could become a feature article if I could just solve that CPU-compatibility problem, but I got distracted by college obligations and never submitted a finished article.
Offline
Last seen: 1 week 2 days ago
Joined: Sep 26 2019 - 16:46
Posts: 151
S.Elliott wrote:Around 1984 I
S.Elliott wrote:

Around 1984 I disassembled the two-voice music subroutine Atarisoft had used in Moon Patrol -- it was the same subroutine that Ms Pacman used in your "Ms. Pac-Man 1" sample.  Here's an illustration of how its algorithm works, as far as I remember...

Suppose Atarisoft's "duet" music routine was trying to play two musical pitches illustrated by the green square wave and the purple square wave. 

 

 
I'm not sure if I understood correctly, but are you saying that in Ms. Pacman (and your screenshot above) the intro-melody's sound consists of two slightly detuned square waves playing one after the other (very rapidly I suppose)?
This would then cause an illusion of what a dual oscillator synthesizer would be capable of: 2 separate oscillators which are slightly detuned from each other, and being played at the same time and thereby resulting in a "fat" and "big" sound.
Is it safe to assume that the Apple II (with its original hardware) was only capable of playing one channel of sound at once (i.e. similar to a single monophonic synthesizer), hence the need to use tricks like this in order to make it sound bigger and with different melodies or sounds playing at once?
 
Did I understand it right?
 
Log in or register to post comments