Corona SDK: Building a Space Shooter - Final Steps

Welcome to the final tutorial in our Space Shooter game series! In this tutorial, we'll handle the enter frame logic, collision detection, 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: Update

The update function handles all the actions that occur on enterframe, such as movie clip movements.


Step 2: Move Bullets

The following code identifies when a bullet(s) is on the screen and moves it (them) 10 pixels every frame.


Step 3: Move Enemies

Enemies are also moved using a similar method:


Step 4: Offstage Sprites

When the enemies or bullets are no longer visible on the stage, they are removed to save memory.


Step 5: Show Boss

The boss can be shown at any time in the game. In this example, the boss is shown when the score reaches 50 (destroy one enemy). You can modify this parameter to show the boss later in the game.


Step 6: Collision Handler

This function handles all collisions, it uses the name parameter declared before to identify which sprites are colliding and performs a different action according to it.


Step 7: Restart

The next function will reload the game and return to the Title View.


Step 8: 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 9: 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. The Corona compiler will then automatically add it as the load screen.


Step 10: 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 512×512 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 11: 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 12: 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