Swift - 跳跃吃苹果游戏开发(SpriteKit游戏开发)
下面通过一个样例演示如何实现飞行道具的生成,以及道具碰撞拾取。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
import SpriteKit class AppleFactory : SKNode { //定义苹果纹理 let appleTexture = SKTexture (imageNamed: "apple" ) //游戏场景的狂赌 var sceneWidth : CGFloat = 0.0 //定义苹果数组 var arrApple = [ SKSpriteNode ]() //定时器 var timer = NSTimer () func onInit(width: CGFloat ) { self .sceneWidth = width //启动的定时器 timer = NSTimer .scheduledTimerWithTimeInterval( 0.2, target: self , selector: "createApple" , userInfo: nil , repeats: true ) } //创建苹果类 func createApple(){ //通过随机数来随机生成苹果 //算法是,随机生成0-9的数,当随机数大于8的时候声称苹果 //也就是说,有1/10的几率生成苹果 //这样游戏场景中的苹果就不会整整齐齐以相同间隔出现了 let random = arc4random() % 10 if random > 8 { //生成苹果 let apple = SKSpriteNode (texture: appleTexture) //设置物理体 apple.physicsBody = SKPhysicsBody (rectangleOfSize: apple.size) //弹性设为0 apple.physicsBody?.restitution = 0 //物理体标识 apple.physicsBody?.categoryBitMask = BitMaskType .apple //不受物理效果影响 apple.physicsBody?. dynamic = false //设置中心点 apple.anchorPoint = CGPointMake (0, 0) //z轴深度 apple.zPosition = 40 //设定位置 let theY = CGFloat (arc4random()%200 + 200) apple.position = CGPointMake (sceneWidth+apple.frame.width , theY) //加入数组 arrApple.append(apple) //加入场景 self .addChild(apple) } } //苹果移动方法 func move(speed: CGFloat ){ for apple in arrApple { apple.position.x -= speed } //移出屏幕外时移除苹果 if arrApple.count > 0 && arrApple[0].position.x < -20{ arrApple[0].removeFromParent() arrApple.removeAtIndex(0) } } //重置方法 func reSet(){ //移除所有子对象 self .removeAllChildren() //清空苹果数组 arrApple.removeAll(keepCapacity: false ) } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import SpriteKit class Panda : SKSpriteNode { //定义纹理 let pandaTexture = SKTexture (imageNamed: "panda" ) init () { //执行父类的构造方法 super . init (texture:pandaTexture,color: SKColor .whiteColor(),size:pandaTexture.size()) //设置中心点 self .anchorPoint = CGPointMake (0, 0) self .physicsBody = SKPhysicsBody (rectangleOfSize:pandaTexture.size()) self .physicsBody?. dynamic = true self .physicsBody?.allowsRotation = false //弹性 self .physicsBody?.restitution = 0 self .physicsBody?.categoryBitMask = BitMaskType .panda self .physicsBody?.contactTestBitMask = BitMaskType .scene| BitMaskType .apple self .physicsBody?.collisionBitMask = BitMaskType .scene } required init (coder aDecoder: NSCoder ) { fatalError( "init(coder:) has not been implemented" ) } //跳 func jump (){ //施加一个向上的力,让小人跳起来 self .physicsBody?.velocity = CGVectorMake (0, 700) } } |
1
2
3
4
5
6
7
8
9
10
11
|
class BitMaskType { class var panda: UInt32 { return 1<<0 } class var apple: UInt32 { return 1<<1 } class var scene: UInt32 { return 1<<2 } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import SpriteKit class GameScene : SKScene , SKPhysicsContactDelegate { lazy var appleFactory = AppleFactory () lazy var panda = Panda () //移动速度 var moveSpeed: CGFloat = 15 //吃到的苹果数 var appleNum = 0 override func didMoveToView(view: SKView ) { //物理世界代理 self .physicsWorld.contactDelegate = self //重力设置 self .physicsWorld.gravity = CGVectorMake (0, -5) //设置物理体 self .physicsBody = SKPhysicsBody (edgeLoopFromRect: self .frame) //设置种类标示 self .physicsBody?.categoryBitMask = BitMaskType .scene //是否响应物理效果 self .physicsBody?. dynamic = false //场景的背景颜色 let skyColor = SKColor (red:113/255,green:197/255,blue:207/255,alpha:1) self .backgroundColor = skyColor //给小人定一个初始位置 panda.position = CGPointMake (200, 400) //将小人显示在场景中 self .addChild(panda) //苹果工厂 appleFactory.onInit( self .frame.width) self .addChild( appleFactory ) } override func touchesBegan(touches: Set < UITouch >, withEvent event: UIEvent ?) { panda.jump() } override func update(currentTime: CFTimeInterval ) { appleFactory.move(moveSpeed) } //碰撞检测方法 func didBeginContact(contact: SKPhysicsContact ) { //熊猫和苹果碰撞 if (contact.bodyA.categoryBitMask | contact.bodyB.categoryBitMask) == ( BitMaskType .apple | BitMaskType .panda){ //苹果计数加1 self .appleNum++ //如果碰撞体A是苹果,隐藏碰撞体A,反之隐藏碰撞体B //(因为苹果出了屏幕都会被移除,所以这里隐藏就可以了) if contact.bodyA.categoryBitMask == BitMaskType .apple { contact.bodyA.node?.hidden = true } else { contact.bodyB.node?.hidden = true } } } } |
源码下载:EatApple.zip
Swift - 跳跃吃苹果游戏开发(SpriteKit游戏开发)的更多相关文章
- Swift - 创建并设置背景(SpriteKit游戏开发)
1,先把背景图片bg.jpg,bg@2x.jpg直接拖进Images.xcassets中 2,设置如下代码(背景图直接铺满整个屏幕) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ...
- Swift - 一步步教你使用SpriteKit创建开发游戏项目
一,什么是SpriteKit SpriteKit是苹果公司官方出品,用于制作2D游戏的框架.这个框架具备了图形渲染和动画的功能.可以使图像或者精灵(sprite)动 起来.SpriteKit的渲染方式 ...
- iOS开发 Swift开发数独游戏(一)
一.前言 我姥姥是一名退休数学老师,一直很喜欢玩数独游戏.我以前答应过她要给她写一个数独游戏.本来计划是写一个Android应用的,但恰好我学了好长时间iOS开发一直没做什么"大项目&quo ...
- 一个人独立开发 3D 游戏引擎可能吗?
作者:孙志超链接:https://www.zhihu.com/question/24733255/answer/42000966来源:知乎著作权归作者所有,转载请联系作者获得授权. 当然可以,但难道有 ...
- IOS 2D游戏开发框架 SpriteKit
最近发现Xcode自带的2D游戏开发框架SpriteKit可以直接引入到APP中进行混合开发,这就是说可以开发出既带业务应用又带游戏的苹果APP,咋怎么觉得这是一个自己的小发现....呵呵....., ...
- UWP简单示例(三):快速开发2D游戏引擎
准备 IDE:VisualStudio 2015 Language:VB.NET/C# 图形API:Win2D MSDN教程:UWP游戏开发 游戏开发涉及哪些技术? 游戏开发是一门复杂的艺术,编码方面 ...
- 王者荣耀是怎样炼成的(一)《王者荣耀》用什么开发,游戏入门,unity3D介绍
在国内,如果你没有听说过<王者荣耀>,那你一定是古董级的人物了. <王者荣耀>(以下简称“农药”),专注于移动端(Android.IOS)的MOBA游戏.笔者看到这么火爆,就萌 ...
- 用Cocos2dx开发棋牌游戏的观点解析
众所周知,目前棋牌游戏特别的火.很多游戏公司都想在这一块赚钱,可是却不知用什么软件比较好的去开发棋牌游戏,对此,我列出了两款比较靠谱的软件去开发棋牌游戏,希望对大家有帮助! 第一款软件是cocos2d ...
- HTML5外包注意事项-开发HTML5游戏的九大坑与解决方法剖析
随着移动社区兴起,势必带动HTML5的革命.未来一两年内,HTML5移动游戏必将呈现大爆发趋势. 以下是整理的HTML5游戏研发.市场趋势以及渠道布局和技术解决方案的内容.希望大家能从本文中找到对HT ...
随机推荐
- 【Eclipse】WebServiceExplorer
1.点击以下按钮启动Eclipse Web Service Explorer 2.点击页面右上角的WSDL PAGE按钮 3.点击页面左上角WSDL MAIN-->输入WSDL地址-->选 ...
- [POJ 1521]--Entropy(哈夫曼树)
题目链接:http://poj.org/problem?id=1521 Entropy Time Limit: 1000MS Memory Limit: 10000K Description A ...
- CentOS6.5 下在Nginx中添加SSL证书以支持HTTPS协议访问
参考文献: 1. NginxV1.8.0安装与配置 2. CentOS下在Nginx中添加SSL证书以支持HTTPS协议访问 3. nginx配置ssl证书的方法 4.nginx强制使用https访问 ...
- javascript复制
1.实现点击按钮,复制文本框中的的内容 1 <scrip type="text/javascript"> 2 function copyUrl2() 3 { 4 var ...
- 浙江工商大学15年校赛I题 Inversion 【归并排序求逆序对】
Inversion Time Limit 1s Memory Limit 131072KB Judge Program Standard Ratio(Solve/Submit) 15.00%(3/20 ...
- struts2--配置文件中使用通配符
struts2的配置文件是 struts.xml.. 在这个配置文件里面可以使用通配符..其中的好处就是,大大减少了配置文件的内容..当然,相应付出的代价是可读性.. 使用通配符的原则是 约定高于配置 ...
- sparkUI使用与扩展
http://www.jianshu.com/p/8e4c38d0c44e
- uva 10330 - Power Transmission(网络流)
uva 10330 - Power Transmission 题目大意:最大流问题. 解题思路:増广路算法. #include <stdio.h> #include <string. ...
- 演练5-1:Contoso大学校园管理1
**演练目的:掌握复杂模型的应用程序开发. Contoso大学校园管理系统功能包括学生.课程.教师的管理. 一.创建MVC Web应用程序 显示效果如下图,操作步骤略. 二.创建数据模型 1.创建学生 ...
- Online SVG to PNG/JPEG/TIFF conversion
Online SVG to PNG/JPEG/TIFF conversion SVG to raster image conversion