TweetFollow Us on Twitter

Sound 101
Volume Number:9
Issue Number:3
Column Tag:C Workshop

Related Info: Sound Manager

Sound 101

Evolution of the Mac voice

By Iggi Monahelis, Pleasanton, California

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

About the author

Iggi Monahelis is a programmer who bought his first Mac as soon as he could back in 1984. He is the principal designer and co-author of “Read My Lips”, the sound annotation utility for the Macintosh.

Introduction

This is an introductory article, hence the name Sound 101, dealing with basic recording and playback of sounds on the Macintosh. It explains the required steps to be taken in order to digitize sounds using a microphone, in two different sound formats, and play them back. It is a good stepping stone for someone who has little or no knowledge of how to do these things in a program on the Macintosh. As a matter of fact, one can probably copy the routines given in the article, and use them in their own program without a lot of modifications.

Ancient History

The Macintosh has had the capability of producing sounds since day one. The famous introduction of the Macintosh back in 1984 used sound, in the form of digitized speech, to allow the Mac to introduce itself. Inside Macintosh back then had a chapter on the Sound Driver with just a few routines, literally StartSound, StopSound and SoundDone, that allowed the programmer to control the Sound Driver. The Sound Driver produced sound using three different sound synthesizers:

1) the four-tone synthesizer, used to make simple harmonic tones, with up to four “voices” producing sound simultaneously. Hence the name four-tone.

2) the square-wave synthesizer, used to produce sounds such as beeps.

3) the free-form synthesizer, used to produce complex sounds, music and speech.

You had to “describe” the sound to the Driver as a waveform, basically fill a buffer with a bunch of numbers, and tell the Sound Driver to start producing noise based on these numbers. Very primitive.

Middle Ages

With the introduction of the Macintosh II class of machines, the Sound Driver had graduated to the Sound Manager. It was indeed a graduation because several innovations had taken place:

1) The hardware now included a new sound chip which freed the machine’s processor from doing all the work.

2) The introduction of sound resources. Sound resources can “contain” any sound you can imagine, from a simple beep sound to digital recordings of CD’s. And because they are resources, in the Macintosh sense of the word, you can work with them using standard Resource Manager calls. To play a sound resource all you have to do is load it and pass the handle to the resource to the SndPlay routine.

3) The Sound Manager now has seven routines to allow you to work with sound.

To produce sound, commands are sent to a synthesizer, as was the case with the Sound Driver. The Sound Manager uses a queue to send these commands to a synthesizer, these queues are called channels. To make complex sounds, many sounds may need to be produced simultaneously. For this reason several synthesizers can have multiple channels.

The new Sound Manager uses three synthesizers to produce sound:

1) the wave-table synth, lets you supply a wave table that describes the sound. This lets you produce more complex sounds, also it lets you play multiple sounds simultaneously by opening several channels. It corresponds to the old four-tone synth with four channels open.

2) the note synth, used to produce simple sounds, such as a note. The note synth can produce only one note at a time. It compares to the old square-wave synth from the Sound Driver.

3) the sampled sound synth, used to play digitally recorded sounds. In this case instead of passing the note or a wave table describing the sound you want played, you pass a buffer that contains samples of the sound to be played. This synth compares to the old free-form synth from the Sound Driver.

Despite the innovations that came with the Mac II and the graduation of the Sound Driver to a Manager, it was still difficult to digitize sounds using System software. It was easy once you had a sound resource to play it and several programs, mostly shareware, were created to play sound resources. Farallon came out with the MacRecorder® sound digitizer which allowed you to digitize sounds using the software that came with it, but still you could not do that in your own program without writing a lot of code yourself.

Today

With the introduction of the Macintosh IIsi and Macintosh LC, Apple for the first time included a built-in microphone with the Macintosh. System software versions 6.0.7 and later have a new and improved version of the Sound Manager. The Sound Manager chapter goes from 32 pages to 114 pages. This latest version introduces a whole slew of new features, some of which are:

1) There are now routines to record sounds using the built-in microphones, or any third party microphone with the appropriate driver for Macs that do not come with a microphone.

2) One can record either sound resources (‘snd ‘), or record directly to a file on disk in a format known as: Audio Interchange File Format (AIFF).

3) There are routines that allow for compressing and decompressing of sound data.

4) There are now routines that allow for the playing of sounds directly from disk. So one does not have to load all of the sound in memory in order to play it.

5) Customization galore. Besides the high-level routines for recording and playback there are low-level routines so that one could customize the way recording and playback is done.

Writing the program

It is always easier to start with a basic program, understand it, and then expand on it. The Sound 101 program is just such a program for learning the basics about recording and playing sounds. The program can record and play 'snd ' and AIFF sound files. It also allows for the selection of sound quality.

Here goes the code with explanations...

Sound101_main.c
/***********************************************************
© 1992 Praxitel, Inc. and Iggi Monahelis

This is the “main” for the Sound 101 project.  It has the minimum stuff 
to get a mac
program going.  Basically, it does all the required mac initializations, 
sets up the menu
bar, and then gets and processes events.

***********************************************************/
#include “Sound101.h”


extern int  gDestroyChannel;
extern SndChannelPtr gSndChan;
extern short     gFRefNum;
extern long gQuality;

/***********************************************************

main

This is the main routine for the Sound 101 application, it does all the 
Mac initializations.
Then calls the EventLoop procedure to get and process events.

***********************************************************/
void main(void)
{
 InitGraf((Ptr) &thePort );
 InitFonts();
 InitWindows();
 InitMenus();
 TEInit();
 InitDialogs(0L);
 InitCursor();
 
 MaxApplZone();
 SetUpMenus();

 EventLoop();    /* Do event processing until user quits */

}

/***********************************************************

SetUpMenus

Set up the menu bar for the Sound 101 application
 
***********************************************************/
void SetUpMenus(void)
{
 MenuHandle myMenu;
 
 myMenu = GetMenu(mApple);
 
 AddResMenu( myMenu, ‘DRVR’ );
 InsertMenu( myMenu, 0 );
 InsertMenu(GetMenu(mFile), 0) ;
 DrawMenuBar();
}

/***********************************************************

EventLoop

Event handling for the Sound 101 application.
Get events forever, and handle them by calling DoEvent.
 
***********************************************************/
void EventLoop(void)
{
 BooleangotEvent;
 EventRecordevent;

 do {
 gotEvent = WaitNextEvent(everyEvent, &event, 50, 0);
 if ( gotEvent ) {
 DoEvent(&event);
 }
 /* if we are done with the sound, dispose the sound 
    channel and close the sound file. */     
 if ( gDestroyChannel ) { 
 OSErr  myErr;
 
 InitCursor();
 if (gSndChan)
 myErr = SndDisposeChannel( gSndChan, TRUE);
 if (gFRefNum)
 myErr = FSClose(gFRefNum);
 /* make sure we do it only once! */
 gDestroyChannel = FALSE;
 gSndChan = 0;
 gFRefNum = 0;
 } 
 } while ( true ); /* loop forever */
} /*EventLoop*/

/***********************************************************

DoEvent

Determine the event type and dispatch accordingly
 
***********************************************************/
void DoEvent(EventRecord *event)
{
 short  part, err;
 WindowPtrwindow;
 char   key;

 switch ( event->what ) {
 case nullEvent:
 break;
 case mouseDown:
 part = FindWindow(event->where, &window);
 switch ( part ) {
 case inMenuBar:
 /* process a mouse menu command */
 DoMenuCommand(MenuSelect(event->where));
 break;
 case inSysWindow:
 /* let the system handle the mouseDown */
 SystemClick(event, window);
 break;
 case inContent:
 break;
 case inDrag:                
 break;
 case inGoAway:
 break;
 case inGrow:
 break;
 case inZoomIn:
 case inZoomOut:
 break;
 }
 break;
 case keyDown:
 case autoKey:
 /* check for menukey equivalents */
 key = event->message & charCodeMask;
 if ( event->modifiers & cmdKey ) {
 /* Command key down */
 /* if command-period was pressed, set our global
    to clean up the sound channel and close the
    open sound file. */
 if ( key == ‘.’ )
 /* command period was pressed */
 gDestroyChannel = TRUE;
 }
 break;
 case activateEvt:
 break;
 case updateEvt:
 break;
 }
} /*DoEvent*/

/***********************************************************

DoMenuCommand

Handles menu selections for the Sound 101 application
   
***********************************************************/
void DoMenuCommand(long menuResult)
{
 short  menuID, menuItem;
 short  itemHit, daRefNum;
 Str255 daName;

 menuID = HiWord(menuResult);
 menuItem = LoWord(menuResult);
 switch ( menuID ) {
 case mApple:
 switch ( menuItem ) {
 case iAbout: {  /* bring up the About box */
 OSErr  err;
 GrafPtroldPort;
 Rect   tempRect;
 DialogPtraboutDlg;
 
 GetPort(&oldPort);
 
 aboutDlg = GetNewDialog(128, nil, (WindowPtr) -1);
 if ( aboutDlg ) {
 /* Open a dialog box */
 ShowWindow(aboutDlg);    
 SelectWindow(aboutDlg);  /* Lets see it */
 SetPort(aboutDlg);
 while (TRUE) {
 ModalDialog(NULL, &itemHit);
 if ( itemHit == 1 )
 break;
 }
 DisposDialog(aboutDlg);
 SetPort(oldPort);
 }
 }
 break;

 default:
 /* all non-About items in this menu are DAs */
 GetItem(GetMHandle(mApple), menuItem, daName);
 daRefNum = OpenDeskAcc(daName);
 break;
 }
 break;
 
 case mFile:
 switch ( menuItem ) {
 case iPlaySound:
 PlayASound();
 break;
 case iRecordsndSound:
 Record_snd_resource(gQuality);
 break;
 case iRecordAIFFSound:
 Record_AIFF_sound(gQuality);
 break;
 case iQuality:
 GetQuality();
 break;
 case iQuit:
 Terminate();
 break;
 }
 break;
 } 
 
 /* unhighlight what MenuSelect (or MenuKey) hilited */
 HiliteMenu(0);  
}

/***********************************************************

Terminate

Quit the app
   
***********************************************************/
void Terminate(void)
{
 /* exit if no cancellation */
 ExitToShell();  
} /*Terminate*/
 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.