Corona SDK: Create a Balloon Game - Final Steps

Welcome to the final tutorial in our Bloons inspired game series! In this tutorial, we'll handle the acorn shooting, level restart and the steps to build the final app.


Where We Left Off. . .

Please be sure to check part 1 and part2 of the series to fully understand this tutorial.

Step 1: Hide Direction Graphic

This is the shoot function, it handles the aim and acorn creation. We'll start by showing the direction indicator.


Step 2: Create And Shoot Acorn

Next we create a new acorn physics object and apply the calculated impulse to shoot it.


Step 3: Listener and Counter

A collision listener is added to the acorn to detect when it pops a balloon. The acorn counter is decreased in this part of the code.


Step 4: Update

The update function will perform a series of EnterFrame operations such as removing offstage acorns and checking for game over.


Step 5: Restart Level

This code runs when the Restart button is clicked. It will reset the necessary variables and listeners to restart the level.


Step 6: Alert

The alert function stops the game, removes the listeners, and displays a game status message.


Step 7: Call Main Function

In order to initially start the game, the Main function needs to be called. With the above code in place, we'll do that here:


Step 8: Loading Screen

The Default.png file is an image that will be displayed right when you start the application while iOS loads the basic data to show the Main Screen. Add this image to your project source folder, it will be automatically added by the Corona compliler.


Step 9: Icon

Using the graphics you created before, you can now create a nice and good looking icon. The icon size for the non-retina iPhone icon is 57x57px, but the retina version is 114x114px and the iTunes store requires a 512x512px version. I suggest creating the 512x512 version first and then scaling down for the other sizes.

It doesn't need to have the rounded corners or the transparent glare, iTunes and the iPhone will do that for you.


Step 10: Testing in Simulator

It's time to do the final test. Open the Corona Simulator, browse to your project folder, and then click open. If everything works as expected, you are ready for the final step!


Step 11: Build

In the Corona Simulator go to File > Build and select your target device. Fill the required data and click build. Wait a few seconds and your app will be ready for device testing and/or submission for distribution!


Conclusion

Experiment with the final result and try to make your custom version of the game!

I hope you liked this tutorial series and find it helpful. Thank you for reading!

Tags:

Comments

Related Articles