触摸的绘制线在COCOS2D中移动

时间:2010-12-27 12:22:51

标签: ios iphone cocos2d-iphone touchmove

我正在使用 COCOS2D 为iPhone开发游戏。

在那里,当用户将手指从一个点拖到另一个点时,我需要绘制一条线。据我所知,我需要在Touches Moved method中从中获取积分。

但我不知道该怎么做。有人可以帮我吗?

2 个答案:

答案 0 :(得分:6)

- (void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event  
{
        UITouch  *theTouch = [touches anyObject];
    CGPoint touchLocation = [theTouch locationInView:[theTouch view] ];
    cgfloat x = touchLocation.x;
    cgfloat y= touchLocation.y;
printf("move x=%f,y=%f",x,y);   
}

试试上面的代码。它会在iphone中touches moved时得到坐标点。

要画线,请使用以下内容:

-void draw
{
here is the code for line draw.
}

在更新方法中更新此功能。

答案 1 :(得分:6)

起亚ora。 Boredom迫使我就这个话题提供答案。

图层部分(即@interface GetMyTouches:CCLayer):

-(void) ccTouchesMoved:(NSSet *)inappropriateTouches withEvent:(UIEvent *)event
{
    UITouch *touchMyMinge = [inappropriateTouches anyObject];

    CGPoint currentTouchArea = [touchMyMinge locationInView:[touchMyminge view] ];
    CGPoint lastTouchArea = [touchMyMinge previousLocationInView:[touchMyMinge view]];

    // flip belly up. no one likes being entered from behind.
    currentTouchArea = [[CCDirector sharedDirector] convertToGL:currentTouchArea];
    lastTouchArea = [[CCDirector sharedDirector] convertToGL:lastTouchArea];

    // throw to console my inappropriate touches
    NSLog(@"current x=%2f,y=%2f",currentTouchArea.x, currentTouchArea.y);
    NSLog(@"last x=%2f,y=%2f",lastTouchArea.x, lastTouchArea.y);  

   // add my touches to the naughty touch array 
   naughtyTouchArray addObject:NSStringFromCGPoint(currentTouchArea)];
   naughtyTouchArray addObject:NSStringFromCGPoint(lastTouchArea)];
}

节点部分(即@interface DrawMyTouch:CCNode):

@implementation DrawMyTouch

-(id) init
{
    if( (self=[super init])) 
    { }
    return self;
}

-(void)draw
{
    glEnable(GL_LINE_SMOOTH);

    for(int i = 0; i < [naughtyTouchArray count]; i+=2)
    {
        start = CGPointFromString([naughtyTouchArray objectAtIndex:i]);
        end = CGPointFromString([naughtyTouchArray objectAtIndex:i+1]);

        ccDrawLine(start, end);
    }
}

@end

第二部分(即@interface GetMyTouches:CCLayer):

-(void) ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{   
    DrawMyTouch *line = [DrawMyTouch node];
    [self addChild: line];
}

记住触摸很简单。在触摸时知道你在做什么并不是火箭科学。

最后,如果你不理解我发布的任何内容......请继续烘焙。世界需要更多的巧克力蛋糕生产商。

澄清:

  1. 没有人学习表格 cut'n paste 〜这个代码从未打算在没有照顾的情况下工作
  2. 如果你没有看到幽默,那你就是错误的职业
  3. 值得注意的是,我喜欢一个好的巧克力蛋糕。世界确实需要更多出色的面包师。这不是侮辱,而是鼓励。

    “在广场外看,找到充满生命值得生活的知识的圈子”~Aenesidemus。