// // Ball.cpp // RedCore // #include "Ball.h" #include "params.h" #include "SimpleAudioEngine.h" USING_NS_CC; bool Ball::init() { auto ball_draw = DrawNode::create(); ball_draw->drawDot(Vec2(0, 0), BALL_SIZE, Color4F(COLOR_grey)); this->addChild(ball_draw); auto material = PHYSICSBODY_MATERIAL_DEFAULT; material.density = 0.0f; material.restitution = 1.005f; material.friction = 0.0f; //set friction here auto physicsBody = PhysicsBody::createCircle(BALL_SIZE, material); physicsBody->setGravityEnable(false); physicsBody->setVelocity(Vec2(0,0)); physicsBody->setLinearDamping(0.0); physicsBody->setMass(1000.0f); physicsBody->setContactTestBitmask(0xFFFFFFFF); physicsBody->setGroup(-5); this->addComponent(physicsBody); this->setTag(BALL_TAG); return true; } void Ball::throwBall () { float ang = CC_DEGREES_TO_RADIANS(rand_minus1_1() * THROW_ANG); float x = sinf(ang) * INITIAL_SPEED; float y = cosf(ang) * INITIAL_SPEED; this->getPhysicsBody()->setVelocity(Vec2(x, y)); }