27
Get Into Sprite Kit presented by @waynehartman

Get Into Sprite Kit

Embed Size (px)

DESCRIPTION

Ever wanted to get into making games for iOS or Mac? This session covers the basics you'll need to start doing it!

Citation preview

Page 1: Get Into Sprite Kit

Get Into Sprite Kitpresented by @waynehartman

Page 2: Get Into Sprite Kit

What are we going to learn?

• Basics of Sprite Kit: Main classes for interaction

• Design the game concept and map it to Sprite Kit classes

• Implement for iOS

• Implement for Mac

• Add Game Controller support

Page 3: Get Into Sprite Kit

Base Classes• Content is displayed on an SKView

• Content is organized into instances of SKScene. An SKView only displays a single SKScene.

• A scene has 0…* SKNode objects organized in trees.

• Nodes can have SKAction instances added to give on-screen behavior.

• Nodes can have SKPhysicsBody instances added for simulating physics interactions

Page 4: Get Into Sprite Kit

Relationship Diagram

SKNodeSKScene0…*

SKAction0…*

SKPhysicsBody

0…1

Page 5: Get Into Sprite Kit

Class Diagram

SKNode

SKScene SKSpriteNode

Page 6: Get Into Sprite Kit

SKSpriteNode• SKNode subclass that combines a node with an SKTexture.

• A texture is nothing more than artwork: an image.

// Inside SKScene subclass !SKSpriteNode *ship = [SKSpriteNode spriteNodeWithImageNamed:@“ship.png”]; ship.position = CGPointMake(self.size.width * 0.5f, self.size.height * 0.5f); ![self addChild:ship];

Page 7: Get Into Sprite Kit

SKAction

• Represents actions executed by SKNode instances

• Do things like scale, move position, resize, play sound FX, execute blocks, or just ‘wait’.

• Can be strung together in a sequence, or executed simultaneously in a group.

• Actions can be repeated 0 to ∞

Page 8: Get Into Sprite Kit

SKAction

// In SKScene subclass NSTimeInterval duration = 0.15; !SKAction *scale = [SKAction scaleTo:1.5f duration:duration]; SKAction *fade = [SKAction fadeAlphaTo:0.0f duration:duration]; SKAction *fx = [SKAction playSoundFileNamed:@"smallExplosion.caf" waitForCompletion:NO]; SKAction *transform = [SKAction group:@[scale, fade, fx]]; !SKAction *wait = [SKAction waitForDuration:duration]; !SKAction *sequence = [SKAction sequence:@[wait, transform]]; ![bombNode runAction:sequence];

Page 9: Get Into Sprite Kit

SKPhysicsBody

• Object for creating a physics simulation for a node.

• Calculations include gravity, friction, and collisions with other ‘bodies’.

Page 10: Get Into Sprite Kit

SKPhysicsBody

// Inside SKScene subclass self.physicsBody = [SKPhysicsBody bodyWithEdgeLoopFromRect:self.frame]; !SKPhysicsBody *physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:self.player.frame.size]; physicsBody.dynamic = YES; physicsBody.affectedByGravity = NO; physicsBody.mass = 0.01; physicsBody.allowsRotation = NO; !self.player.physicsBody = physicsBody;

Page 11: Get Into Sprite Kit

The Update Loop

Page 12: Get Into Sprite Kit

The Update Loop

• Performed once per frame

• The bulk of your game logic can be executed in the update: method.

• Player movement

• Non-physics collision detection

• Other condition checks

Page 13: Get Into Sprite Kit

Our Game: Mad Bomber!• Clone of “Kaboom!”, Atari 2600 game

• The mad bomber drops bombs while moving back and forth on the screen.

• The player must move on the screen and ‘catch’ the bombs.

• The game ends when the player fails to catch a bomb.

Page 14: Get Into Sprite Kit

Turn It Into Code• We will have one SKView that will display a level

(SKScene).

• An SKLabelNode will be attached to the screen to display the player’s score.

• The Mad Bomber, Player, and bombs will be SKSpriteNode instances.

• An SKAction will be added to the Mad Bomber to randomly move him back and forth on the screen. An SKAction will be added to each bomb to move it towards the bottom of the screen.

• An SKPhysicsBody will be applied to our scene to act as a ‘collision container’ for our player.

• An SKPhysicsBody will be applied to our player to allow it to move back and forth.

Page 15: Get Into Sprite Kit

Let’s Walk Through The Code

Page 16: Get Into Sprite Kit

Game Controller Support

• GameController.framework supported in iOS 7 and OS X Mavericks.

• Standard interface for software and hardware.

Page 17: Get Into Sprite Kit

Game Controller TypesGamepad Extended Gamepad

Page 18: Get Into Sprite Kit

Game Controller Discovery// Somewhere in the initialization of your scene [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(controllerDidConnect:) name:GCControllerDidConnectNotification object:nil]; ![[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(controllerDidDisconnect:) name:GCControllerDidDisconnectNotification object:nil];

- (void)controllerDidConnect:(NSNotification *)notification { _gameController = notification.object; // Additional controller setup as needed } !- (void)controllerDidDisconnect:(NSNotification *)notification { _gameController = nil; // Additional controller tear-down as needed }

Page 19: Get Into Sprite Kit

Game Controller Support

• Two ways to handle input:

• Handle in the update: method of your SKScene

• Register blocks for button press/joystick movement

Page 20: Get Into Sprite Kit

Game Controller in update:// In update: method BOOL leftPressed = _gameController.gamepad.leftShoulder.value > 0.0f; BOOL rightPressed = _gameController.gamepad.rightShoulder.value > 0.0f; !if (leftPressed || rightPressed) { float force = 0.0f; ! if (leftPressed){ force = -_gameController.gamepad.leftShoulder.value; } else if (rightPressed) { force = _gameController.gamepad.rightShoulder.value; } ! [self applyPlayerForce:CGVectorMake(20.0f * force, 0.0f)]; }

Page 21: Get Into Sprite Kit

Game Controller Value Changed Handler

// in a method for setting up the game controller self.gameController.gamepad.valueChangedHandler = ^(GCGamepad *gamepad, GCControllerElement *element) { if (gamepad.buttonX == element) { if (gamepad.buttonX.isPressed) { [weakSelf releaseTheKraken]; } } }; !!// Or set a handler for the specific button: self.gameController.controllerPausedHandler = ^(GCController *controller) { weakSelf.paused = !weakSelf.paused; };

Page 22: Get Into Sprite Kit

Let’s Walk Through The Code

Page 23: Get Into Sprite Kit

Game Controller Gotchas• In most cases, make sure to turn off the iOS Idle Timer ! [[UIApplication sharedApplication] setIdleTimerDisabled:YES];

• Cannot debug while plugged in via Lightning port :(

• Your game MUST NOT require the use of a Game Controller

• Current generation of hardware kinda sucks

• Logitech Powershell and Moga Ace Power

Page 24: Get Into Sprite Kit

Questions?

Page 26: Get Into Sprite Kit

Experiential Education

• See One

• Do One

• Teach One

Page 27: Get Into Sprite Kit

@waynehartman