SlideShare a Scribd company logo
1 of 27
Download to read offline
Get Into Sprite Kit
presented by @waynehartman
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
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
Relationship Diagram
SKNodeSKScene
0…*
SKAction
0…*
SKPhysicsBody
0…1
Class Diagram
SKNode
SKScene SKSpriteNode
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];
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 ∞
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];
SKPhysicsBody
• Object for creating a physics simulation for a node.
• Calculations include gravity, friction, and collisions with other
‘bodies’.
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;
The Update Loop
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
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.
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.
Let’s Walk Through The Code
Game Controller Support
• GameController.framework supported in iOS 7 and OS X Mavericks.
• Standard interface for software and hardware.
Game Controller Types
Gamepad Extended Gamepad
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
}
Game Controller Support
• Two ways to handle input:
• Handle in the update: method of your SKScene
• Register blocks for button press/joystick movement
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)];
}
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;
};
Let’s Walk Through The Code
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
Questions?
Resources
• SpriteKit Programming Guide
• Space Shooter Tutorial at RayWenderlich.com
• iOS Games by Tutorials
• Game code at http://github.com/waynehartman/MadBomber
Experiential Education
• See One
• Do One
• Teach One
@waynehartman

More Related Content

What's hot (9)

Kodu game design
Kodu game designKodu game design
Kodu game design
 
Kodu controls
Kodu controlsKodu controls
Kodu controls
 
Starcraft 2 crack
Starcraft 2 crackStarcraft 2 crack
Starcraft 2 crack
 
How to build a desktop
How to build a desktopHow to build a desktop
How to build a desktop
 
Beck-Phillips_FinalYearProject500894
Beck-Phillips_FinalYearProject500894Beck-Phillips_FinalYearProject500894
Beck-Phillips_FinalYearProject500894
 
Instrucciones
InstruccionesInstrucciones
Instrucciones
 
Using Virtual P C 2007
Using  Virtual  P C 2007Using  Virtual  P C 2007
Using Virtual P C 2007
 
Mobiele Werkplaats Windows 7 deployment met Novell ZCM en ENGL
Mobiele Werkplaats Windows 7 deployment met Novell ZCM en ENGLMobiele Werkplaats Windows 7 deployment met Novell ZCM en ENGL
Mobiele Werkplaats Windows 7 deployment met Novell ZCM en ENGL
 
Environment presentation
Environment presentationEnvironment presentation
Environment presentation
 

Similar to Get Into Sprite Kit

Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2d
Codecamp Romania
 
Demo creating-physics-game.
Demo creating-physics-game.Demo creating-physics-game.
Demo creating-physics-game.
sagaroceanic11
 

Similar to Get Into Sprite Kit (20)

Cocos2d 소개 - Korea Linux Forum 2014
Cocos2d 소개 - Korea Linux Forum 2014Cocos2d 소개 - Korea Linux Forum 2014
Cocos2d 소개 - Korea Linux Forum 2014
 
Game development with Cocos2d
Game development with Cocos2dGame development with Cocos2d
Game development with Cocos2d
 
Unity workshop
Unity workshopUnity workshop
Unity workshop
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2d
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2d
 
Bringing Supernatural Thriller, "Oxenfree" to Nintendo Switch
Bringing Supernatural Thriller, "Oxenfree" to Nintendo SwitchBringing Supernatural Thriller, "Oxenfree" to Nintendo Switch
Bringing Supernatural Thriller, "Oxenfree" to Nintendo Switch
 
Tools for developing Android Games
 Tools for developing Android Games Tools for developing Android Games
Tools for developing Android Games
 
Lecture2_practice.pdf
Lecture2_practice.pdfLecture2_practice.pdf
Lecture2_practice.pdf
 
Demo creating-physics-game.
Demo creating-physics-game.Demo creating-physics-game.
Demo creating-physics-game.
 
Basics cocos2d
Basics cocos2dBasics cocos2d
Basics cocos2d
 
My 10 days with Phaser.js - WarsawJS Meetup #13
My 10 days with Phaser.js - WarsawJS Meetup #13My 10 days with Phaser.js - WarsawJS Meetup #13
My 10 days with Phaser.js - WarsawJS Meetup #13
 
BYOD: Build Your First VR Experience with Unreal Engine
BYOD: Build Your First VR Experience with Unreal EngineBYOD: Build Your First VR Experience with Unreal Engine
BYOD: Build Your First VR Experience with Unreal Engine
 
Box2D and libGDX
Box2D and libGDXBox2D and libGDX
Box2D and libGDX
 
BSidesDelhi 2018: Headshot - Game Hacking on macOS
BSidesDelhi 2018: Headshot - Game Hacking on macOSBSidesDelhi 2018: Headshot - Game Hacking on macOS
BSidesDelhi 2018: Headshot - Game Hacking on macOS
 
Soc research
Soc researchSoc research
Soc research
 
Programmers guide
Programmers guideProgrammers guide
Programmers guide
 
watchOS 2でゲーム作ってみた話
watchOS 2でゲーム作ってみた話watchOS 2でゲーム作ってみた話
watchOS 2でゲーム作ってみた話
 
Unity3 d devfest-2014
Unity3 d devfest-2014Unity3 d devfest-2014
Unity3 d devfest-2014
 
Sephy engine development document
Sephy engine development documentSephy engine development document
Sephy engine development document
 
【Unite 2017 Tokyo】ScriptableObjectを使ってプログラマーもアーティストも幸せになろう
【Unite 2017 Tokyo】ScriptableObjectを使ってプログラマーもアーティストも幸せになろう【Unite 2017 Tokyo】ScriptableObjectを使ってプログラマーもアーティストも幸せになろう
【Unite 2017 Tokyo】ScriptableObjectを使ってプログラマーもアーティストも幸せになろう
 

Recently uploaded

Recently uploaded (20)

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Get Into Sprite Kit

  • 1. Get Into Sprite Kit presented by @waynehartman
  • 2. 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
  • 3. 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
  • 6. 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];
  • 7. 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 ∞
  • 8. 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];
  • 9. SKPhysicsBody • Object for creating a physics simulation for a node. • Calculations include gravity, friction, and collisions with other ‘bodies’.
  • 10. 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;
  • 12. 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
  • 13. 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.
  • 14. 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.
  • 16. Game Controller Support • GameController.framework supported in iOS 7 and OS X Mavericks. • Standard interface for software and hardware.
  • 17. Game Controller Types Gamepad Extended Gamepad
  • 18. 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 }
  • 19. Game Controller Support • Two ways to handle input: • Handle in the update: method of your SKScene • Register blocks for button press/joystick movement
  • 20. 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)]; }
  • 21. 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; };
  • 23. 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
  • 25. Resources • SpriteKit Programming Guide • Space Shooter Tutorial at RayWenderlich.com • iOS Games by Tutorials • Game code at http://github.com/waynehartman/MadBomber
  • 26. Experiential Education • See One • Do One • Teach One