Create a Sound Based Memory Game - Interface Creation
In this tutorial series, I'll be showing you how to create a sound based memory game with the Corona SDK. You'll learn about loading and playing sounds as well as storing information in Lua Tables. The objective of the game is to reproduce the level sound by tapping on the color squares. Read on!
Also available in this series:
- Create a Sound Based Memory Game - Interface Creation
- Create a Sound Based Memory Game - Game Logic
1. Application Overview

Using pre-made graphics we will code an entertaining game using Lua and the Corona SDK API's.
The player will be able to use the on-screen buttons to reproduce the current sound sequence, you can modify the parameters in the code to customize the game.
2. Target Device



The first thing we have to do is select the platform we want to run our app within, this way we'll be able to choose the size for the images we will use.
The iOS platform has these characteristics:
- iPad 1/2/Mini: 1024x768px, 132 ppi
- iPad Retina: 2048x1536, 264 ppi
- iPhone/iPod Touch: 320x480px, 163 ppi
- iPhone/iPod Retina: 960x640px, 326 ppi
- iPhone 5/iPod Touch: 1136x640, 326 ppi
Because Android is an open platform, there are many different devices and resolutions. A few of the more common screen characteristics are:
- Asus Nexus 7 Tablet: 800x1280px, 216 ppi
- Motorola Droid X: 854x480px, 228 ppi
- Samsung Galaxy SIII: 720x1280px, 306 ppi
In this tutorial we'll be focusing on the iOS platform with the graphic design, specifically developing for distribution to an iPhone/iPod touch, but the code presented here should apply to Android development with the Corona SDK as well.
3. Interface

A simple and friendly interface will be used, this involves multiple shapes, buttons, bitmaps and more.
The interface graphic resources necessary for this tutorial can be found in the attached download.
4. Export Graphics



Depending on the device you have selected, you may need to export the graphics in the recommended PPI, you can do that in your favorite image editor.
I used the Adjust Size... function in the Preview app on Mac OS X.
Remember to give the images a descriptive name and save them in your project folder.
5. App Configuration
An external file will be used to make the application go fullscreen across devices, the config.lua file. This file shows the original screen size and the method used to scale that content in case the app is run in a different screen resolution.
1 |
|
2 |
application = |
3 |
{ |
4 |
content = |
5 |
{ |
6 |
width = 320, |
7 |
height = 480, |
8 |
scale = "letterbox" |
9 |
}, |
10 |
} |
6. Main.lua
Let's write the application!
Open your prefered Lua editor (any Text Editor will work, but you won't have syntax highlighting) and
prepare to write your awesome app. Remember to save the file as main.lua in your project folder.
7. Code Structure
We'll structure our code as if it were a Class. If you know ActionScript or Java, you should find the structure familiar.
1 |
|
2 |
Necesary Classes |
3 |
|
4 |
Variables and Constants |
5 |
|
6 |
Declare Functions |
7 |
|
8 |
contructor (Main function) |
9 |
|
10 |
class methods (other functions) |
11 |
|
12 |
call Main function |
8. Hide Status Bar
1 |
|
2 |
display.setStatusBar(display.HiddenStatusBar) |
This code hides the status bar. The status bar is the bar on top of the device screen that shows the time, signal, and other indicators.
9. Background

A simple graphic is used as the background for the application interface, the next line of code stores it.
1 |
|
2 |
-- Graphics |
3 |
|
4 |
-- [Background] |
5 |
|
6 |
local bg = display.newImage('bg.png') |
10. Title View

This is the Title View, it will be the first interactive screen to appear in our game, these variables store its components.
1 |
|
2 |
-- [Title View] |
3 |
|
4 |
local title |
5 |
local playBtn |
6 |
local creditsBtn |
7 |
local titleView |
11. Credits View

This view will show the credits and copyright of the game, this variable will be used to store it.
1 |
|
2 |
-- [CreditsView] |
3 |
|
4 |
local creditsView |
12. Square Buttons

The buttons used to reproduce the sound.
1 |
|
2 |
-- Color Squares |
3 |
|
4 |
local r = {} |
5 |
local g = {} |
6 |
local ye = {} |
7 |
local b = {} |
13. Instructions Message

An instructions message will appear at the start of the game, when the message is dismissed the sound sequence will play.
1 |
|
2 |
-- Instructions |
3 |
|
4 |
local ins |
14. Check Button

This button will compare the user input to the current level to determine if the sequence is correct or not.
1 |
|
2 |
-- Check button |
3 |
|
4 |
local check |
15. Alert

This is the alert that will be displayed when you win the game. It will complete the level and end the game.
1 |
|
2 |
-- Alert |
3 |
|
4 |
local alertView |
16. Sounds

We'll use Sound Effects to enhance the feeling of the game. The sounds used in this app were generated by AS3SFXR.
1 |
|
2 |
-- Sounds |
3 |
|
4 |
r.s = audio.loadSound('1.mp3') |
5 |
g.s = audio.loadSound('2.mp3') |
6 |
ye.s = audio.loadSound('3.mp3') |
7 |
b.s = audio.loadSound('4.mp3') |
17. Variables
These are the variables we'll use, read the comments in the code to know more about them.
1 |
|
2 |
-- Levels, modify these tables to change or add more levels, each letter represents a button/sound i.e. r = red, ye = yellow and so on |
3 |
|
4 |
local l1 = {r, ye, g, b} |
5 |
local l2 = {ye, r, b, g, b, r, g, ye} |
6 |
|
7 |
-- Variables |
8 |
|
9 |
local lastY |
10 |
local currentLevel = l1 |
11 |
local gameTimer |
12 |
local times = 1 |
13 |
local userInput = {} --stores the tapped buttons |
14 |
local correct = 0 |
18. Declare Functions
Declare all functions as local at the start.
1 |
|
2 |
-- Functions |
3 |
|
4 |
local Main = {} |
5 |
local startButtonListeners = {} |
6 |
local showCredits = {} |
7 |
local hideCredits = {} |
8 |
local showGameView = {} |
9 |
local gameListeners = {} |
10 |
local playLevel = {} |
11 |
local onTap = {} |
12 |
local checkInput = {} |
13 |
local alert = {} |
19. Constructor
Next we'll create the function that will initialize all the game logic:
1 |
|
2 |
function Main() |
3 |
-- code... |
4 |
end |
20. Add Title View
Now we place the TitleView in the stage and call a function that will add the tap listeners to the buttons.
1 |
|
2 |
function Main() |
3 |
title = display.newImage('title.png', 73, 53) |
4 |
playBtn = display.newImage('playBtn.png', 140, 245) |
5 |
creditsBtn = display.newImage('creditsBtn.png', 124, 305) |
6 |
titleView = display.newGroup(title, playBtn, creditsBtn) |
7 |
|
8 |
startButtonListeners('add') |
9 |
end |
Next Time...
In this part of the series you've learned the interface and the basic setup of the game. In the next and final part of the series, we'll handle the level creation, table comparison, and the final steps to take prior to release like app testing, creating a start screen, adding an icon and, finally, building the app. Read the final part now!