cocos2d 手势识别

前端之家收集整理的这篇文章主要介绍了cocos2d 手势识别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

现在说一下cocos2d的手势识别的代码,其主要策略就是两点,记录接触点的起始位置和末尾位置,通过根据这两个点的位置计算来确定是左移、右移、下滑、点击四种手势

  1. bool Teris::ccTouchBegan(CCTouch*touch,CCEvent*event) {
  2. if (containsTouchLocation(touch)) {
  3. CCPoint touchPoint = convertTouchToNodeSpace(touch);
  4. firstX = touchPoint.x;
  5. firstY = touchPoint.y;
  6. is_control = true;
  7. return true;
  8. } else {
  9. is_control = false;
  10. }
  11. }

这段代码主要是判断触摸点是否是在CCSprite的范围之内,如果在的话,则记录了触摸起始点,然后在ccTouchEnded函数中记录触摸结尾点,最后进行两者的算法计算
  1. void Teris::ccTouchEnded(CCTouch*touch,CCEvent*event) {
  2. if (is_control) {
  3. CCPoint touchPoint = convertTouchToNodeSpace(touch);
  4. endX = firstX - touchPoint.x;
  5. endY = firstY - touchPoint.y;
  6. if (endX * endX + endY * endY < 2) {
  7. turn_();
  8. return;
  9. }
  10. if (abs(endX) > abs(endY)) {
  11. if (endX + 5 > 0) {
  12. move_left();
  13. } else {
  14. move_right();
  15. }
  16. } else {
  17. if (endY + 5 > 0) {
  18. move_down();
  19. }
  20. }
  21. }
  22. }
这段代码的主要特点是首要计算起点和尾点的距离小于2则认为是点击事件,我们直接进行turn_()函数,其他的逻辑功能代码所示了...哈哈

猜你在找的Cocos2d-x相关文章