Intro to Snap! Procedural Music Creation Curriculum
Introduction
Get ready to create music like never before with the Snap! Procedural Music Creation Curriculum. This hands-on course teaches you to make music by coding with Snap!, a visual programming language as your instrument. You'll start with simple sounds and build up to creating complex, unique music. By the end of the course, you'll be able to code a program that can compose entire songs or even a whole album.
This approach to composing music is also called algorithmic composition or generative music. It's music created using rules and randomness, rather than writing every note by hand. It involves using predefined instructions, mathematical models, or random chance to produce sequences of notes, rhythms, and harmonies. The result can range from simple melodies to complex, ever-changing soundscapes. This approach makes each performance one-of-a-kind. Many famous musicians, like John Cage and Brian Eno, have used generative techniques to spark their creativity. In fact, Brian Eno wanted his album Music for Airports to be "made endless" (GenerativeMusic.com | Apps by Brian Eno and Peter Chilvers) – generative music makes that possible. Even movie soundtracks use these ideas: the official Inception app merged the listener’s surroundings with ambient music and Hans Zimmer’s score to create a dreamy, ever-changing soundscape (Inception App Augments Your Reality, Acoustically | WIRED).
Video games brought procedural music generation to a wide audience by making it a core part of interactive experiences. Unlike a film, where the soundtrack is fixed to the edited scenes, a game is nonlinear – the player’s actions can change the pace or environment, so the music often needs to respond dynamically. This created a need for adaptive music systems that could change or generate music based on gameplay. Untitled Goose Game (2019) uses a clever interactive score based on Claude Debussy’s piano Preludes: the game engine plays different prerecorded piano phrases depending on the goose’s sneaky or chaotic behavior (Playing Your Song: The Evolution of Dynamic Music in Games - EGM), resulting in a soundtrack that feels like a live accompanist improvising along with the slapstick action.
These examples show how coding, music, and creativity can blend in exciting ways. Now it's your turn to explore, learn and create!
Acknowledgements
Before jumping into our lessons, we want to thank Brian Harvey and Jens Möenig for creating Snap!, a block-based programming language. Snap! makes advanced computer science concepts easy to understand, even for non-programmers. With support from the National Science Foundation, Jens and Brian developed Snap! to be user-friendly. Today, over 1,000 high school and college computer science teachers use Snap! in their classes. Many others use it for fun and personal growth.
We've created our own variation of Snap!, called Startr Snap!. It has some unique features and our own custom libraries. This variation is designed to make coding even more accessible and fun for robotics and AI integration.
We also appreciate the TuneScope music library in Snap!, which lets users create different types of music. The University of Virginia's School of Education, Department of Computer Science, and Department of Music worked together to develop TuneScope. In fact, the University of Virginia offers a companion course as an elective in its Bachelor of Arts in Computer Science program. The goal is to help people express their creativity and explore the arts through coding.
Course Outline
Each lesson builds on the previous one. Work through them in order, and by the end you'll be coding music like a pro!
- Lesson 0: Introduction to Snap! Programming - Orient yourself with the Snap! programming platform.
- Lesson 1: Snap! Sound Basics – Play notes and make simple tunes using Snap!’s sound blocks.
- Lesson 2: Coding a Simple Snap! Melody – Use loops and sequences to create your first coded melody.
- Lesson 3: Coding Rhythm and Beats in Snap! – Learn to program timing and rhythm patterns in your music.
- Lesson 4: Introduction to TuneScope – Transition to TuneScope for richer instruments and sounds.
- Lesson 5: Adding Randomness to Music – Introduce random variations to make music unpredictable and fun.
- Lesson 6: Algorithmic Melody Patterns – Generate melodies with simple algorithms and patterns.
- Lesson 7: Advanced Melody Generation with TuneScope – Create more complex tunes with TuneScope’s features.
- Lesson 8: Rhythm and Harmony in TuneScope – Combine drums, chords, and concurrent sounds for depth.
- Lesson 9: Structuring Your Composition – Organize your music into sections (intro, chorus, etc.) and balance structure with randomness.
- Lesson 10: Final Project – Generative Music Album – Build a full generative soundtrack or album using everything you've learned.
Lesson 0: Introduction to Snap! Programming
Objective: Welcome to Snap! In this lesson, we'll show you how to use the Startr Snap! platform and get started with block-based programming. Don't worry if you're new to programming - we'll take it one step at a time.
Activities:
-
- Create a Startr Snap! Account : Go to Startr Snap! and sign up for an account. It's easy:
- Click the Join button in the top right corner.
- Fill in the required information to create your account.
- If you already have an account, click the Login button instead.
- Not ready to create an account? You can still start coding by clicking the Run Snap! button in the top left corner. Keep in mind that your work won't be saved online, but you can always save it to your computer.
-
Explore the Startr Snap! Workspace: Snap! is a block-based programming language, which means you build scripts by dragging and snapping blocks together. Let's dive in and see how it works!
- Drag a Block: Grab the
Move 10 Steps
block from the Code Block Palette on the left-hand side of the screen and drag it to the Script Area in the middle of the screen. - Add Another Block: Choose another block, like the
turn clockwise 15 degrees
block, and snap it to the first block. Now you have a script! - Run Your Script : Click the group of blocks to make the script happen. Look at the Stage (top right corner of your screen) and you'll see the arrow move and turn. Click the script again to make it repeat.
- Drag a Block: Grab the
-
Discover the Snap! Menus: In the top left corner of the Snap! screen, you'll find several menus that can help you navigate and customize your experience. Let's explore them:
- Start.Snap! Icon : Click the Start.Snap! icon to access the Snap! reference manual, the Berkeley Snap website, and the Github source code. These resources are perfect for learning more about Snap! and its community.
- File Menu : Click the File icon to find options like Save , Open , and Libraries . We'll be using these features later in our lessons. Take a look at the Libraries options and click on one to learn more about what it does. Don't import anything just yet - we'll do that later with TuneScope.
- Cloud Icon : Use the Cloud icon to log into your account or create one if you haven't yet. Having an account allows you to save your work online and access it from anywhere.
- Gear Icon (Settings) : Click the Gear icon to access a range of settings and options. You can change the language, make the blocks larger for easier reading, and more. While you're here, make sure to enable JavaScript Extensions . This is necessary for adding musical features and functionalities to your projects.
-
Explore the Snap! icon: On the top-right side of the screen, you'll find a set of useful icons to help you navigate and control your Snap! experience. Let's explore them:
- Footsteps Icon : Click the Footsteps icon to turn it green. With a code script, each block will be highlighted as it's played. Try it out with your code blocks from earlier.
- Speed Control : Notice the toggle to the right of the Footsteps icon. This allows you to adjust the speed of your script. Move it to the left to slow down or to the right to speed up.
- Stage Size Icons : Click the grey rectangle within a white rectangle icon to change the stage size. The icon with diagonal arrows beside it also controls the stage size. Experiment with these icons to see how they work.
- Script Control Buttons : The next three buttons - the green flag, yellow pause button, and red stop sign - control your code scripts. However, they won't work yet because we need to add a
when (green flag) clicked
block to our script. Let's do that:- Go to the Code Block Palette and select the gold-colored Control tab.
- Drag the
when (green flag) clicked
block and snap it to the top of your code script. - Click the green flag icon to see your code in action!
- Saving and Opening Code : Before we finish, let's practice saving and opening our code. This is an essential skill, especially when working with web versions of Snap! that don't autosave. We'll show you how to do this in the next steps.
You're Ready to Roll! Congratulations! You've completed the introductory tour of Snap!. You now know where to find the main features and tools. It's time to put your new skills to the test and start creating something amazing. Let's dive into the world of music coding and explore the exciting possibilities of Snap!'s music sound blocks!
Lesson 1: Snap! Sound Basics
Objective: Explore Snap!’s sound blocks and create simple melodies. You will learn how to play notes and control their pitch. This is the first step toward making music with code.
Activities:
-
Find the Sound Blocks: Open Startr Snap! and find the Sound tab in the code block palette.
- Drag out the
play note (60) for (0.5) beats
block. Click it to hear the note play! - Notice the numbers in the block? The first number (60) represents the note's pitch. In music, this is middle C (also called C4).
- Click the down arrow next to the number to see a piano keyboard and the note you're playing.
- Drag out the
-
Experiment with Notes: Try changing the note by adjusting the number or using the piano keyboard.
- Hear how the pitch changes when you modify the number? Smaller numbers produce lower notes, while larger numbers create higher notes.
-
Create a Simple Scale: Duplicate the block several times (right-click and "duplicate" or drag new blocks from the Sound category). Set the notes to:
- 60 (C4)
- 62 (D4)
- 64 (E4)
- 65 (F4)
- 67 (G4)
-
Play Your Scale: Click the stack to play the notes in sequence. Congratulations! You've just coded a simple 5-note scale, your first musical creation!
-
Experiment with Tempo: Now that you've created a simple melody, let's experiment with tempo.
- Find the Tempo Block: Look for the
set tempo to (60) bpm
. BMP stands for beats per minute, which is a way to measure the speed of a song. - Adjust the Tempo: Try changing the tempo to a higher value (e.g., 120 bpm) or a lower value (e.g., 30 bpm). Play your note sequence again and notice how the speed changes.
- Change Tempo Mid-Song: You can also insert another tempo block between notes to change the tempo mid-song. This can add interesting variations to your music.
- Find the Tempo Block: Look for the
-
Experiment with Instruments: Now that you've created a simple melody with tempo, let's experiment with instrument sounds.
- Find the Instrument Block : Look for the
set instrument to (1)
block. This block allows you to change the sound of your notes. - Try Different Instruments : Change the instrument number and play your notes to hear different sounds, such as:
- Sine wave
- Square wave
- Saw-tooth wave
- Triangle wave
- Find the Instrument Block : Look for the
Note: Snap!'s basic sound blocks have a limited selection of instruments, with a focus on simple, old-school sounds. Don't worry, we'll explore more advanced instruments when we move to TuneScope later. For now, have fun experimenting with the default sounds!
Take a moment to reflect on what you've accomplished. You've used code blocks to create a sequence of musical notes, just like a composer would. The difference is, you're giving instructions to the computer, bringing your musical ideas to life. By mastering the fundamentals of music coding, you're laying the foundation for creating real songs.
Keep Exploring and Having Fun! Feel free to play around more: experiment with different note sequences, adjust the tempo, and play with the duration of individual notes. You can do this by modifying the "for _ beats" section of the note block.
Remember, coding music is all about experimentation and creativity. So, have fun and enjoy the process of bringing your musical ideas to life! Have fun playing around with it!
Lesson 2: Coding a Simple Snap! Melody
Objective: Learn to use loops and sequences to create melodies. In this lesson, you'll learn how to use loops and sequences to create simple melodies. By coding a sequence of notes and using loops to repeat patterns, you'll see how code can save you time and effort.
Activities:
-
Compose a Short Tune: Think of a simple melody, like the first line of "Twinkle Twinkle Little Star" or a few notes from your favorite song.
- Using what you learned in Lesson 1, arrange a sequence of
play note
blocks to play that melody. Don't worry if it's not perfect or very long - even 4-8 notes are fine. Play it to test how it sounds, and adjust the note numbers if needed to get the tune right. - Here are three short melody sequences you can use. If do you use them, try to recognize what songs they are from.
- 60, 60, 67 , 67 ,69 ,69, 67, 67
- 64, 62, 60, 62, 64, 64, 64, 64
- 63, 59, 66, 59, 63, 59, 66, 59
- Using what you learned in Lesson 1, arrange a sequence of
-
Try Looping with Your Melody: Most songs have repeating parts. Instead of duplicating the same blocks over and over, use a loop. Snap! has a
repeat (10) { ... }
block and aforever { ... }
block . (There is also thefor each
block, but we'll learn about that in a later chapter).- Select a Few Notes: Choose 2-4 notes from your melody.
- Create a Loop: Place those note blocks inside a
repeat
block. - Set the Repeat Count: Set the repeat count to 4.
- Hear the Loop: Click the loop to hear the motif repeat 4 times. You've just saved effort by looping!
- Experiment with the Loop: Try increasing the repeat count or changing the number of notes being repeated. You can also modify the notes themselves. Listen to what sounds best to you and have fun experimenting!
-
Create an A-B-A Melody Structure: Let's create a simple song structure using the A-B-A format, also known as verse-chorus-verse. We'll use the looped melody you created earlier as the "A" section.
- Create a New Melody Motif: Come up with a new short melody motif for the "B" section. Choose 4 more notes and create a sequence of blocks to play them.
- Loop the "B" Melody (Optional): If you want, you can loop the "B" melody just like you did with the "A" melody.
- Play the A-B-A Melody: Now, let's play the A-B-A melody. For now, we will do it manually:
- Play your A looped melody once
- Then play the B melody (your new sequence) once
- And then play A again. This A-B-A gives a simple structure to your music. Later, we’ll learn how to automate the structure, but give yourself a high-five for manually creating a structured A-B-A melody with code!
You Did It!
Congratulations on completing Lesson 2! You've successfully created a simple A-B-A melody structure using code. This is a huge achievement, and you should be proud of yourself. Take a moment to celebrate your success - you've earned it!
What You've Learned
In this lesson, you've not only coded a melody, but you've also discovered the power of loops in making music coding easier and more efficient. This skill will be essential as you build longer and more complex pieces. With loops, you'll be able to create intricate melodies without having to write a million separate blocks.
Experiment and Have Fun
Now that you've completed the lesson, feel free to experiment and try new things. You can:
- Make the melody longer and more complex
- Add pauses between notes using
wait ( ) secs
or arest for ( ) beats
blocks - Play around with different note combinations and rhythms
The more you play around, the more comfortable you'll get. Keep your favourite melody code – you might reuse parts of it in a later project!
Lesson 3: Coding Rhythm and Beats in Snap!
Objective: Add rhythm and beats to your music. In this lesson, you will learn how to control timing and create rhythmic patterns. Music isn’t just about which notes you play – it’s also when you play them and for how long. You’ll practice changing rhythms, add some rests, and even add some basic drum beats to your melody.
Activities:
-
Understand Beat Duration: In Snap!, the
play note ( ) for ( ) beats
block uses “beats” as a unit of time. Usually, 1 beat is equal to a quarter note. Let's use your melody A and re-listen to it.- Now, try changing all your beats to 0.5 (eighth note) and listen to how it sounds different. Does it sound faster or slower?
- Try changing the beats to 2 (half note) and notice how this changes your melody.
- You can also change your beats to other numbers.
-
Make a Simple Drum Beat: Snap! has an "old school" 80s synth drum sound instrument. You can use it by running
(instrument 3)
block. With this, you can imitate a drum by using a very low-pitched note for a bass drum and a high short note for a snare.- Create a new script stack for your rhythm: First take out a tempo block and an instrument block.
- Set the tempo block to 90 bpm and the instrument to 3 (sawtooth). You can also try the square (instrument 2) too.
- Next, take out two play blocks.
- For a basic “boom-chak” drum pattern beat, you can set the first to
play note 28 for 0.5 beats
(this is our base drum sound). - And the second to
play note 50 for 0.5 beats
(as a snare sound).
- For a basic “boom-chak” drum pattern beat, you can set the first to
- Put these two play blocks together inside a
forever { }
loop to repeat it many times. When you run it, it should alternate low and high sounds in a steady rhythm. - You can adjust the tempo to a comfortable speed, like 90 or 120 bpm, and listen. You’ve made a basic rock beat!
- As a challenge, you can try and make a more complex beat that lasts twice as long. You might want to check out the
rest for ( ) beats
block to add pauses between your drum sounds.
-
Sync Melody with Rhythm: If you are brave feel free to try and play both your A-B-A tune and rhythm at the same time. Using the sound blocks this way might get out of sync. With the basic sound blocks, even if you have your beats synced, it's easy for there to be drifts in timing. That's why in the next chapter we introduce TuneScope.
-
Experiment with Rhythm Patterns: Try changing the rhythm pattern. Instead of a constant loop, maybe do two beats of bass drum, then one beat rest, then one snare – get creative. Also experiment with rests: Snap! has a
rest for ( ) beats
block. Use rests to create short pauses in your rhythm. For example, try looping the following:play note 28 for 1 beats
rest for 0.5
play note 28 for 0.5 beats
note 50 for 1 beats
note 50 for 1 beats
-
Listen! You are coding your own drum machine!
Rhythm is what makes music catchy and gives it structure. After Lesson 3, you now know how to control timing in your code. You can make the same melody feel different just by changing the rhythm. This will be useful when you design your own compositions – you might use the same generative melody but vary the rhythm to keep things interesting. Great job adding another layer to your musical coding skills!
Lesson 4: Introduction to TuneScope
TuneScope is a library for Snap! that greatly expands our music capabilities. It provides more instrument sounds (like piano, guitars, and drums) and advanced blocks for music creation (PDF TUNESCOPE - Snap!)). In this lesson, you’ll transition from using the basic Snap! sound blocks to using TuneScope's block library, preparing you to create richer-sounding generative music.
Activities:
-
Setup TuneScope: First, you need to access TuneScope. TuneScope is available as a library in Startr Snap).
- Click on the file menu icon and then Libraries.
- Now you can find and select the TuneScope library.
- Once it's selected click Import.
- Once loaded, you will see new blocks and the Music blocks category in addition to the standard Sound blocks.
- In the Music tab, find the Initialize TuneScope block and click it to start up TuneScope. (Even though you have imported the TuneScope library, it still needs to be loaded, which takes a few seconds).
- ![[Screenshot 2025-02-16 at 2.34.32 PM.png]]
-
Explore New Instruments: TuneScope extends Snap! with sampled instruments (PDF TUNESCOPE - Snap!). This means you can now have more realistic sounds.
- Now that TuneScope has been initialized, look for the block
set instrument to "piano"
- Notice that the drop down arrow beside "piano" reveals different instrument families: Brass, Strings, Woodwinds, Drums, Other. Also notice that each family also has a drop down arrow that reveals various instruments.
- For now, let's start with the piano instrument.
- Find the
Play note for Duration and wait
block. - Select a C note for a quarter note duration, and listen to how it sounds compared to Snap!’s default note sound.
- Do the same for a guitar or another instrument. Enjoy testing a few instruments – you're exploring your sound palette for your upcoming compositions.
- Now that TuneScope has been initialized, look for the block
-
Play a Simple Scale in TuneScope: Let's first recreate a simple 5 note scale from Lesson 1, using TuneScope blocks. You may need to adjust to the slightly different syntax in TuneScope. For instance, instead of using numbers for each note of the scale (60, 62, 64, 65), TuneScope uses note letters and numbers (C4, D4, E4, F4, G4). In Snap Sounds, if you clicked on the keyboard, you might recognizes these note letters and numbers. If not, don't worry. The letters refer to the musical notes and the number refers to what octave of the instrument you are playing (so a C3 will sound an octave lower than the C4, and the C5 will sound an octave higher).
- Grab another 4
Play note for Duration and wait
block (or duplicate) - For each block, enter one of the following notes: D4, E4, F4, G4
- For each block set the duration to quarter note.
- Play your simple scale by pressing on the script.
- If you want to change the speed of your scale, you can either change what duration your notes are played at. For faster notes, you can select eight notes or sixteenth notes. Alternatively, you can change the tempo by adding a tempo block from Snap's Sound tab. To do this, drag a
set tempo to. bpm
block and snap it at the top of your script. Have fun experimenting with instruments, notes, rhythms, and tempo! - #todo add proper image! ![[Pasted image 20250220114524.png]]
- Grab another 4
-
Compare TuneScope with Snap! Basic Sound: Let's list off some of the noticeable differences using TuneScope:
- The instruments sound more realistic. That's because they are sampled from real instruments instead of synthesized.
- The notes use letters that relate to musical notation, rather than midi numbers.
- The rhythms use musical terms, but numbers of beats also work.
-
Play a Tune in TuneScope: Let's now try recreating your simple melody from Lesson 2, using TuneScope blocks. If you prefer to create a new melody, that's ok too.
- Let's grab a
set instrument to
block and a fewPlay note for Duration and wait
blocks. - The simple melody we used in Chapter 2 was Twinkle Twinkle Little Star. The Snap Sound blocks we used was: 60, 60, 67 , 67 ,69 , 69, 67, 67 (with each 1 beat long).
- Because TuneScope uses musical notation, the melody would be: C4, C4, G4, G4, A4, A4, G4, G4 and the duration would be a quarter note for each note.
- Now, let's have fun and grab a replete block from the Control tab and remix our melody with some loops.
- If you want, change up the instrumentation, notes, rhythms, or other musical things (there's a Rest block and Chord block you might want to try out). If you're adventurous, try composing an A-B-A melody and add some percussive rhythmic beats too!
- Let's grab a
After Lesson 4, you have successfully moved into a more powerful music coding tool. This sets the stage for creating richer compositions. It might feel like starting over a bit because of new blocks, but all the concepts you learned still apply. You’ll now combine your knowledge of melody, rhythm, and algorithms with TuneScope’s features. The real fun – making complex generative music – is about to begin!
- Previous:
- Next: 2025-03-26 GitHub Trends