Harder monsters and more levels: How to make a simple iPhone game with cocos2d Part 3

Source: Internet
Author: User

Harder monsters and more levels: How to make a simple iPhone game with cocos2d Part 3

Like this post? Follow me on Twitter!

Watch out for the green guy!

So far, the game we 've been making in how to make a simple iPhone game with cocos2dis pretty cool. We have a rotating turret, monsters to shoot, and Uber sound effects.

But our turret has it too easy. The monsters only take one shot, and there's just one level! He's not even warming up yet.

In this tutorial, we will extend our project so that we make different types of monsters of varying difficulty, and implement multiple levels into the game.

Tougher monsters

For fun, let's create two types of monsters: a weak and fast monster, and a strong and slow monster. to help the player distinguish between the two, download this modified monster image and add it to your project. while you're at it, download this explosion sound effect I made and add it to the project as well.

Now let's make our monster class. there are always ways to model your monster class, but we're re going to do the simplest thing, which is to make our monster Class A subclass of ccsprite. we're re also going to create two subclasses of Monster: one for our weak and fast monster, and one for our strong and slow monster.

Go to file/new file, choose cocoa touch class/objective-C class, make sure subclass of nsobject is selected, and click Next. name the file monster. m and make sure "also create monster. h "is checked.

Then replace monster. h with the following:

#import "cocos2d.h" @interface Monster : CCSprite {    int _curHp;    int _minMoveDuration;    int _maxMoveDuration;} @property (nonatomic, assign) int hp;@property (nonatomic, assign) int minMoveDuration;@property (nonatomic, assign) int maxMoveDuration; @end @interface WeakAndFastMonster : Monster {}+(id)monster;@end @interface StrongAndSlowMonster : Monster {}+(id)monster;@end

Pretty straightforward here: We just derive monster from ccsprite and add a few variables for tracking monster state, and then derive two subclasses of monster for two different types of monsters.

Now open up monster. M and add in the implementation:

#import "Monster.h" @implementation Monster @synthesize hp = _curHp;@synthesize minMoveDuration = _minMoveDuration;@synthesize maxMoveDuration = _maxMoveDuration; @end @implementation WeakAndFastMonster + (id)monster {     WeakAndFastMonster *monster = nil;    if ((monster = [[[super alloc] initWithFile:@"Target.png"] autorelease])) {        monster.hp = 1;        monster.minMoveDuration = 3;        monster.maxMoveDuration = 5;    }    return monster; } @end @implementation StrongAndSlowMonster + (id)monster {     StrongAndSlowMonster *monster = nil;    if ((monster = [[[super alloc] initWithFile:@"Target2.png"] autorelease])) {        monster.hp = 3;        monster.minMoveDuration = 6;        monster.maxMoveDuration = 12;    }    return monster; } @end

The only real code here is two static methods we added to return instances of each class, set up with the default HP and move durations.

Now let's integrate our new monster class into the rest of the code! First add the import to your new file to the top of helloworldscene. M:

#import "Monster.h"

Then let's modify the addtarget Method to Construct instances of our new class rather than creating the sprite directly. Replace the spritewithfile line with the following:

//CCSprite *target = [CCSprite spriteWithFile:@"Target.png" rect:CGRectMake(0, 0, 27, 40)]; Monster *target = nil;if ((arc4random() % 2) == 0) {    target = [WeakAndFastMonster monster];} else {    target = [StrongAndSlowMonster monster];}

This will give a 50% chance to spawn each type of monster. Also, since we 've ve moved the speed of the monsters into the classes, modify the min/MAX duration lines as follows:

int minDuration = target.minMoveDuration; //2.0;int maxDuration = target.maxMoveDuration; //4.0;

Finally, a couple mod to the updatemethod. First add a Boolean right before the declaration of targetstodelete:

BOOL monsterHit = FALSE;

Then, inside the cgrectintersectsrect test, instead of adding the object immediately in targetstodelete, add the following code:

//[targetsToDelete addObject:target];monsterHit = TRUE;Monster *monster = (Monster *)target;monster.hp--;if (monster.hp <= 0) {    [targetsToDelete addObject:target];}break;

So basically, instead of instantly killing the monster, we subtract an HP and only destroy it if it's 0 or lower. also, note that we break out of the loop if the projectile hits a monster, which means the projectile can only hit one monster per shot.

Finally, modify the projectilestodelete test as follows:

if (monsterHit) {    [projectilesToDelete addObject:projectile];    [[SimpleAudioEngine sharedEngine] playEffect:@"explosion.caf"];}

Compile and run the code, and if all goes well you shoshould see two different types of monsters running should ss the screen-which makes our turret's life a bit more challenging!

Multiple Levels

In order to implement multiple level support, we need to do some refactoring first. the refactoring is all pretty simple but there is a lot of it, and including it all in this post wocould make for a long, boring post.

Instead, I'll include some high level overview of what was done and refer you to the sample project for full details.

Abstract out a level class.Currently, the helloworldscene hard-coded information about the "level" such as which monsters to spawn, how often to spawn them, etc. so the first step is to pull out some of this information into a level class so we can re-use the same logic in the helloworldscene for multiple levels.

Re-use scenes.Currently, we're creating new instances of the scene class each time we switch between scenes. one of the drawbacks to this is that without careful management, You can incur delays as you load up your resources in the init method.

Since we have a simple game, what we're re going to do is just create one instance of each scene and just call a reset () method on it to clear out any old State (such as monsters or projectiles from the last level ).

Use the app delegate as a switchboard.Currently, we don't have any global state like what level we're on or what the settings for that level are, and each scene just hard-codes which scenes it shoshould switch.

We'll modify this so that the app delegate stores pointers to the global state such as the level information, since it is a central place that is easy to access by all of the scenes. we'll also put methods in the app delegate to switch between scenes to centralize that logic and reduce intra-scene dependencies.

So those are the main points behind the refactoring-Check out the sample project to see the full details. keep in mind this is only one of your ways of doing it-if you have another cool way to organize the scene and Game objects for your game Please share!

So anyway, download the code and give it a whirl! We have a nice start to a game going here-a rotating turret, tons of enemies to shoot with varying qualities, multiple levels, win/lose scenes, and of course-awesome sound effects! ;]

That's a wrap!

Again, if you haven't grabbed it already here's the sample project with all of the code we 've developed so far.

Now that you know how to make a simple game, why not go a step further and learn about how to make a tile-based game in cocos2d! After all, who doesn' t like ninjas eating watermelons?

I hope you enjoyed the series, and best of luck with your cocos2d game projects!

Category: iPhone

 

//////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// //

Http://www.raywenderlich.com/782/harder-monsters-and-more-levels

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.