【3D技术宅公社】XR数字艺术论坛  XR技术讨论 XR互动电影 定格动画

 找回密码
 立即注册

QQ登录

只需一步,快速开始

调查问卷
论坛即将给大家带来全新的技术服务,面向三围图形学、游戏、动画的全新服务论坛升级为UTF8版本后,中文用户名和用户密码中有中文的都无法登陆,请发邮件到324007255(at)QQ.com联系手动修改密码

3D技术论坛将以计算机图形学为核心,面向教育 推出国内的三维教育引擎该项目在持续研发当中,感谢大家的关注。

查看: 1907|回复: 0

cocos2d-x如何发射子弹

[复制链接]
发表于 2013-8-8 14:11:25 | 显示全部楼层 |阅读模式
先上代码
1// cpp with cocos2d-x
2this->setIsTouchEnabled(true);
1// objc with cocos2d-iphone
2self.isTouchEnabled = YES;
这样我们就能接受到touch event的了。
在HelloWorldScene.h里声明回调函数“void ccTouchesEnded(cocos2d::CCSet* touches, cocos2d::CCEvent* event);”,并在HelloWorldScene.cpp实现这个函数。
1// cpp with cocos2d-x
2void HelloWorld::ccTouchesEnded(CCSet* touches, CCEvent* event)
3{
4 // Choose one of the touches to work with
5 CCTouch* touch = (CCTouch*)( touches->anyObject() );
6 CCPoint location = touch->locationInView(touch->view());
7 location = CCDirector::sharedDirector()->convertToGL(location);
8
9 // Set up initial location of projectile
10 CCSize winSize = CCDirector::sharedDirector()->getWinSize();
11 CCSprite *projectile = CCSprite::spriteWithFile("rojectile.png",
12 CCRectMake(0, 0, 20, 20));
13 projectile->setPosition( ccp(20, winSize.height/2) );
14
15 // Determinie offset of location to projectile
16 int offX = location.x - projectile->getPosition().x;
17 int offY = location.y - projectile->getPosition().y;
18
19 // Bail out if we are shooting down or backwards
20 if (offX <= 0) return;
21
22 // Ok to add now - we've double checked position
23 this->addChild(projectile);
24
25 // Determine where we wish to shoot the projectile to
26 int realX = winSize.width
27 + (projectile->getContentSize().width/2);
28 float ratio = (float)offY / (float)offX;
29 int realY = (realX * ratio) + projectile->getPosition().y;
30 CCPoint realDest = ccp(realX, realY);
31
32 // Determine the length of how far we're shooting
33 int offRealX = realX - projectile->getPosition().x;
34 int offRealY = realY - projectile->getPosition().y;
35 float length = sqrtf((offRealX * offRealX)
36 + (offRealY*offRealY));
37 float velocity = 480/1; // 480pixels/1sec
38 float realMoveDuration = length/velocity;
39
40 // Move projectile to actual endpoint
41 projectile->runAction( CCSequence::actions(
42 CCMoveTo::actionWithDuration(realMoveDuration, realDest),
43 CCCallFuncN::actionWithTarget(this,
44
45 callfuncN_selector(HelloWorld::spriteMoveFinished)),
46 NULL) );
47}
1// objc with cocos2d-iphone
2- (void)ccTouchesEndedNSSet *)touches withEventUIEvent* event)
3{
4 // Choose one of the touches to work with
5 UITouch *touch = [touches anyObject];
6 CGPoint location = [touch locationInView:[touch view]];
7 location = [[CCDirector sharedDirector] convertToGL:location];
8
9 // Set up initial location of projectile
10 CGSize winSize = [[CCDirector sharedDirector] winSize];
11 CCSprite *projectile = [CCSprite spriteWithFile"rojectile.png"
12 rect:CGRectMake(0, 0, 20, 20)];
13 projectile.position = ccp(20, winSize.height/2);
14
15 // Determine offset of location to projectile
16 int offX = location.x - projectile.position.x;
17 int offY = location.y - projectile.position.y;
18
19 // Bail out if we are shooting down or backwards
20 if (offX <= 0) return;
21
22 // Ok to add now - we've double checked position
23 [self addChild:projectile];
24
25 // Determine where we wish to shoot the projectile to
26 int realX = winSize.width + (projectile.contentSize.width/2);
27 float ratio = (float) offY / (float) offX;
28 int realY = (realX * ratio) + projectile.position.y;
29 CGPoint realDest = ccp(realX, realY);
30
31 // Determine the length of how far we're shooting
32 int offRealX = realX - projectile.position.x;
33 int offRealY = realY - projectile.position.y;
34 float length = sqrtf((offRealX*offRealX)+(offRealY*offRealY));
35 float velocity = 480/1; // 480pixels/1sec
36 float realMoveDuration = length/velocity;
37
38 // Move projectile to actual endpoint
39 [projectile runAction:[CCSequence actions:
40 [CCMoveTo actionWithDuration:realMoveDuration position:realDest],
41 [CCCallFuncN actionWithTarget:self
42
43 selectorselector(spriteMoveFinished],
44 nil]];
45}
好了,编译并运行,触摸屏幕(使用的是模拟器?点击屏幕!),享受一下效果。
PS: 为了和Object-C代码保持一致,这里可能会有一些“float”到“int”隐式转换导致的警告,请忽略它们。
Win32
iPhone
Android
沃Phone
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|3D数字艺术论坛 ( 沪ICP备14023054号 )

GMT+8, 2024-4-29 16:05

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表