Corona SDK: Create a Balance Ping-Pong Game

In this tutorial, I'll be showing you how to create a balance game in Corona SDK. You'll learn more about touch controls and collision detection without physics. The objective of the game is to keep the ball from touching the floor. Read on.


1. Application Overview

App Overview

Using ready-made graphics, we'll create an entertaining game using Lua and the Corona SDK APIs. The player will be able to move a ping-pong paddle on the screen in order to hit a ball. You can modify the parameters in the code to customize the game.


2. Target Device

Target Device

The first thing we need to do is select the platform we want to run our application on so we're able to choose the size of the images we'll use.

The iOS platform has the following requirements:

  • iPad 1/2/Mini: 1024px x 768px, 132 ppi
  • iPad Retina: 2048px x 1536px, 264 ppi
  • iPhone/iPod Touch: 320px x 480px, 163 ppi
  • iPhone/iPod Retina: 960px x 640px, 326 ppi
  • iPhone 5/iPod Touch: 1136px x 640px, 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: 800px x 1280px, 216 ppi
  • Motorola Droid X: 854px x 480px, 228 ppi
  • Samsung Galaxy SIII: 720px x 1280px, 306 ppi

In this tutorial, we'll be focusing on the iOS platform in terms of graphics. In particular, we'll be developing for the iPhone and iPod touch. However, the code of this tutorial can also be used if you target the Android platform.


3. Interface

Interface

We'll use a simple user interface involving multiple shapes, buttons, bitmaps, and more. The graphics that we'll use for this tutorial can be found in the project included with this tutorial.


4. Export Graphics

Export Graphics

Depending on the device you've selected, you may need to convert the graphics to the recommended resolution (ppi), which you can do in your favorite image editor. I used the Adjust Size... option in the Tools menu in the Preview application on OS X. Remember to give the images a descriptive name and save them in your project folder.


5. Application Configuration

We'll use a configuration file, config.lua, to make the application go full screen across devices. The configuration file shows the original screen size and the method used to scale the content in case the application is run on another resolution.


6. main.lua

Let's write the actual application. Open your preferred Lua editor. Any plain text editor will work, but it is recommended to use a text editor that has syntax highlighting. Create a new file and save it as main.lua in your project folder.


7. Project Structure

We'll structure our code as if it were a class. If you're familiar with ActionScript or Java, you should find the project structure familiar.


8. Hide Status Bar

This code snippet hides the status bar. The status bar is the bar at the top of the device's screen that shows the time, signal, and other indicators.


9. Background

Background

A simple background for the application's user interface. The code snippet below draws the background to the screen.


10. Title View

Title View

This is the title view. It's the first interactive screen to appear in our game. These variables store its components.


11. Credits View

Credits View

The credits view shows the credits and copyright of the application. This variable is used to store it.


12. Instructions Message

Instructions

A message with instructions will appear at the start of the game and it will disappear after the first tap.


13. Paddle

Paddle

This is the graphic for the ping-pong paddle. It will be placed at the view's center.


14. Ball

Ball

And this is the graphic for the ping-pong ball used in the game.


15. Alert

Alert

The alert is displayed when the player misses the ball and the game is over. It displays a message and ends the game.


16. Sounds

Sounds

We'll use sound effects to spice up the game. The sounds used in this game can be found on freesound, a collaborative database of Creative Commons Licensed sounds.


17. Variables

The following code snippet shows the variables that we'll use. Read the comments to understand what each variable is used for.


18. Declare Functions

Declare all functions as local at the start.


19. Constructor

Next, we create the function that will initialize the game logic.


20. Add Title View

We start by placing the title view in the stage and call a function that will add tap listeners to the buttons.


21. Start Button Listeners

The following function adds the necessary listeners to the TitleView's buttons.


22. Show Credits

The credits screen is shown when the user taps the about button. A tap listener is added to the credits view to dismiss it when the user taps it.


23. Hide Credits

When the user taps credits view, it is animated out of the stage and removed.


24. Show Game View

When the play button is tapped, the title view is animated off the screen and the game view is revealed. There are a number of moving parts so we'll take a closer look at each of them.


25. Instructions Message

The following code snippet adds the instruction message.


26. Paddle Parts

Next, we add the paddle parts. It is split up into two parts for better collision detection.


27. Ball

We add the ball and set its scale.


28. Score

We create a score text field at the top right of the stage.


29. Game Listeners

The following function adds the necessary listeners for starting the game logic.


30. Start Function

The startGame function removes the instruction message and adds a listener to the main function of the game. In the function, a random y position is selected from the previously created table and subsequently adds physics to the newly created object. We add a collision listener to every enemy and also add them to the enemies table.


31. Hit Test Objects

For collision detection without using physics, we use a great function, which you can find on the Corona Labs Code Exchange website.


32. Scale Ball

The update function, shown below, runs every frame. In this function, we first scale the ball based on the values set by the variables.


33. Ball Raise

This part increases the ball size to simulate an increase in its height.


34. Ball Missed

The same method is used to check if the ball has touched the floor, an essential aspect of the game.


35. Move Ball

In the following code snippet, we move the ball. Based on the value of the variables, it is moved up or down.


36. Ball Hit

A scale is set to be the same paddle height, which means that the ball has touched the paddle. We then increase the score and play a sound to provide feedback to the user.


37. Change Ball Direction

The paddle is divided in four sections, top left, top right, bottom left, and bottom right. Each section moves the ball in a different direction.


38. Move Paddle

The movePaddle function handles the movement of the paddle using touch controls.


39. Alert

The alert function creates an alert view. The function animates the alert view onto the screen and ends the game.


40. Call Main Function

In order to start the game, the Main function needs to be invoked. With the rest of the code in place, we do that here.


41. Loading Screen

Loading Screen

On the iOS platform, the file named Default.png is displayed while the application is launching. Add this image to your project's source folder, it will be automatically added by the Corona compiler.


42. Icon

Icon

Using the graphics you created earlier, you can now create a nice icon. The dimensions of the icon size for a non-retina iPhone are 57px x 57px, while the retina version needs to be 114px x 114px. The artwork for iTunes is required to be 1024px x 1024px. I suggest creating the iTunes artwork first and then creating the smaller sized images by scaling the iTunes artwork down to the correct dimensions. There is no need to make the application icon glossy or add rounded corners as this is taken care of by the operating system for you.


43. Testing in Simulator

Testing

It's time to test our application in the simulator. Open the Corona Simulator, browse to your project folder, and click Open. If everything works as expected, you're ready for the final step.


44. Build Project

Build

In the Corona Simulator, go to File > Build and select the target device. Fill out the required fields and click Build. Wait a few seconds and your application is ready to test on a device and/or to be submitted for distribution.


Conclusion

In this tutorial, we've learned about touch listeners, and collision detection. Experiment with the final result and try to modify the game to create your own version of the game. I hope you liked this tutorial and found it helpful. Thank you for reading.

Tags:

Comments

Related Articles