博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何在Cocos2D 1.0 中掩饰一个精灵(二)
阅读量:6705 次
发布时间:2019-06-25

本文共 2494 字,大约阅读时间需要 8 分钟。

大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处.

如果觉得写的不好请告诉我,如果觉得不错请多多支持点赞.谢谢! hopy ;)


让我们开始吧

打开Xcode,从New Project中选择cocos2d模板,点击下一步.命名新项目为MaskedCal,点击下一步,选择目标文件夹,然后点击Create.

接下来下载该项目的资源文件:

并把解压后的文件夹拖到你的Xcode项目中.确保选中”Copy items into destination group’s folder(if needed)”,然后点击Finish.

让我们从一些爵士乐开始,打开AppDelegate.m并作出如下修改:

// Add to top of file#import "SimpleAudioEngine.h"// At end of applicationDidFinishLaunching, replace last line with the following 2 lines:[[SimpleAudioEngine sharedEngine] playBackgroundMusic:@"TeaRoots.mp3" loop:YES];[[CCDirector sharedDirector] runWithScene: [HelloWorldLayer sceneWithLastCalendar:0]];

代码首先播放的这些很酷的音乐是Kevin MacLeod制作的,然后调用了一个新的初始化场景,我们下面将会描述.

下一步,打开HelloWorldLayer.h,完成如下修改:

// Add new instance variableint calendarNum;// Replace the +(CCScene*) scene declaration at the bottom with the following:+ (CCScene *) sceneWithLastCalendar:(int)lastCalendar;- (id)initWithLastCalendar:(int)lastCalendar;

在该场景中,我们将显示一个随机的日历图片(从3张中选一张).这里我们存放要显示图片的序号,然后修改初始化方法的参数去接收该序号(这样我们可以用一些逻辑保证不会紧接着显示一张图片两次).

然后切换至HelloWorldLayer.m,做出如下修改:

// Replace +(CCScene *) scene with the following+(CCScene *) sceneWithLastCalendar:(int)lastCalendar // new{    CCScene *scene = [CCScene node];    HelloWorldLayer *layer = [[[HelloWorldLayer alloc]         initWithLastCalendar:lastCalendar] autorelease]; // new    [scene addChild: layer];        return scene;}// Replace init with the following-(id) initWithLastCalendar:(int)lastCalendar{    if( (self=[super init])) {        CGSize winSize = [CCDirector sharedDirector].winSize;        do {            calendarNum = arc4random() % 3 + 1;        } while (calendarNum == lastCalendar);        NSString * spriteName = [NSString             stringWithFormat:@"Calendar%d.png", calendarNum];        CCSprite * cal = [CCSprite spriteWithFile:spriteName];        // BEGINTEMP        cal.position = ccp(winSize.width/2, winSize.height/2);                [self addChild:cal];        // ENDTEMP        self.isTouchEnabled = YES;    }    return self;}// Add new methods- (void)registerWithTouchDispatcher {    [[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self         priority:0 swallowsTouches:YES];}- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event {    CCScene *scene = [HelloWorldLayer sceneWithLastCalendar:calendarNum];    [[CCDirector sharedDirector] replaceScene:        [CCTransitionJumpZoom transitionWithDuration:1.0 scene:scene]];    return TRUE;}

以上仅仅是Cocos2D中随机在屏幕中心显示日历图片的基本代码.它同样包括了一些触摸屏幕时回调的基本逻辑代码,它将会展示出切换场景的弹性效果.

你可能感兴趣的文章
hdu4292Food(最大流Dinic算法)
查看>>
手机网站判断及跳转
查看>>
[LeetCode] Text Justification
查看>>
webdriver API study
查看>>
QoS令牌桶工作原理
查看>>
android工程gen目录中R.java包名是怎么确定
查看>>
【Machine Learning in Action --4】朴素贝叶斯过滤网站的恶意留言
查看>>
qq互联(connect.qq.com)取用户信息的方法
查看>>
AccessRandomFile多线程下载文件
查看>>
Java基础之类Class使用
查看>>
Ubuntu+Eclipse+ADT+Genymotion+VirtualBox开发环境搭建
查看>>
Android 学习之 开源项目PullToRefresh的使用
查看>>
Matplot中文乱码完美解决方式
查看>>
Android Fragment 你应该知道的一切
查看>>
COM组件入门(一)
查看>>
热门专业
查看>>
stm32学习笔记----双串口同时打开时的printf()问题
查看>>
Java代码简化神器-Lombok
查看>>
How do I create a List in Scala?
查看>>
lintcode:移动零
查看>>