Advertisement
  1. Code
  2. Mobile Development
  3. Corona

Create a Physics-Based Puzzle Game - Interface Creation

Scroll to top
5 min read

In this tutorial series, I'll be showing you how to create a physics-based puzzle game in Corona SDK. You'll learn about physics manipulation and touch controls. The objective of the game is to get the ball into the container by tapping the correct boxes. Read on!


Also available in this series:

  1. Create a Physics-Based Puzzle Game - Interface Creation
  2. Create a Physics-Based Puzzle Game - Adding Interaction

1. Application Overview

Using pre-made graphics, we'll code an entertaining game using Lua and the Corona SDK APIs.

The player will be able to use the touch screen on the device to remove the boxes on the stage. You can modify the parameters in the code to customize the game.


2. Target Device

First we're going to select the platform we want to run our app within. This will allow us to choose the size for the images we'll use.

The iOS platform has the following 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

Since Android is an open platform, there are many different devices and resolutions. Here are a few of the more common screen characteristics.

  • 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 it for distribution to an iPhone/iPod touch. 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've 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 fullscreen across devices. This is 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 preferred Lua editor 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'll 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. Import Physics

We'll use the physics library to handle collisions. Use the code below to import it.

1
2
-- Physics
3
4
local physics = require('physics')
5
physics.start()

10. 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')

11. 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

12. Credits View

This view will show the credits and the game's copyright, and this variable will be used to store it.

1
2
-- [CreditsView]
3
4
local creditsView

13. Boxes

The boxes create the level. There are three sizes in this application.


14. Instructions Message

An instructions message will appear at the start of the game. It'll be tweened out after two seconds.

1
2
-- Instructions
3
4
local ins

15. Ball

This is the ball graphic. The objective of the game is to put this item in the goal box.

1
2
-- Ball
3
4
local ball

16. Goal Box

This code stores the goal box graphic.

1
2
-- Goal Box
3
4
local gBox

17. Alert

This is the alert that'll be displayed when you win the game. It'll complete the level and end the game.

1
2
-- Alert
3
  
4
local alertView

18. 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
local win = audio.loadSound('win.caf')

19. Variables

These are the variables we'll use. Read the comments in the code to learn more about them.

1
2
-- Variables
3
4
local lvlImg -- stores the current level image title

20. 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 addBox = {}
10
local removeBox = {}
11
local onCollision = {}
12
local alert = {}

21. Constructor

Next we'll create the function that will initialize all the game logic.

1
2
function Main()
3
	-- code...
4
end

22. 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
	titleBg = display.newImage('titleBg.png', 84, 12)
4
	playBtn = display.newImage('playBtn.png', 220, 150)
5
	creditsBtn = display.newImage('creditsBtn.png', 204, 202)
6
	titleView = display.newGroup(titleBg, playBtn, creditsBtn)
7
	
8
	startButtonListeners('add')
9
end

Next Time...


In this part of the series, we learned about the interface and the basic setup of the game. In the next and final part of the series, we'll handle level creation, collision detection, and the final steps prior to release. We'll go through app testing, creating a start screen, adding an icon, and lastly, building the app. Stay tuned for the final part!

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.