Ball.cpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // Ball.cpp
  3. // RedCore
  4. //
  5. #include "Ball.h"
  6. #include "params.h"
  7. #include "SimpleAudioEngine.h"
  8. USING_NS_CC;
  9. bool Ball::init() {
  10. ball_draw = DrawNode::create();
  11. ball_draw->drawDot(Vec2(0, 0), BALL_SIZE, Color4F(COLOR_grey));
  12. addChild(ball_draw);
  13. superball_draw = DrawNode::create();
  14. superball_draw->drawDot(Vec2(0, 0), BALL_SIZE, Color4F(COLOR_orange));
  15. addChild(superball_draw);
  16. auto material = PHYSICSBODY_MATERIAL_DEFAULT;
  17. material.density = 0.0f;
  18. material.restitution = 1.005f;
  19. material.friction = 0.0f; //set friction here
  20. auto physicsBody = PhysicsBody::createCircle(BALL_SIZE, material);
  21. physicsBody->setGravityEnable(false);
  22. physicsBody->setVelocity(Vec2(0,0));
  23. physicsBody->setLinearDamping(0.0);
  24. physicsBody->setMass(1000.0f);
  25. physicsBody->setContactTestBitmask(0xFFFFFFFF);
  26. physicsBody->setGroup(-5);
  27. addComponent(physicsBody);
  28. setTag(BALL_TAG);
  29. resetNormalball();
  30. return true;
  31. }
  32. void Ball::throwBall () {
  33. float ang = CC_DEGREES_TO_RADIANS(rand_minus1_1() * THROW_ANG);
  34. float x = sinf(ang) * INITIAL_SPEED;
  35. float y = cosf(ang) * INITIAL_SPEED;
  36. this->getPhysicsBody()->setVelocity(Vec2(x, y));
  37. }
  38. void Ball::setSuperball() {
  39. superball = true;
  40. ball_draw->setVisible(false);
  41. superball_draw->setVisible(true);
  42. }
  43. void Ball::resetNormalball() {
  44. superball = false;
  45. ball_draw->setVisible(true);
  46. superball_draw->setVisible(false);
  47. }