2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _TOUCHES_TEST__H_
|
|
|
|
#define _TOUCHES_TEST__H_
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(TouchesTests);
|
|
|
|
|
|
|
|
class PongScene : public TestCase
|
2010-08-27 11:53:35 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(PongScene);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2010-08-27 11:53:35 +08:00
|
|
|
};
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
class Ball;
|
2013-12-10 18:27:13 +08:00
|
|
|
class Paddle;
|
2015-04-09 08:37:30 +08:00
|
|
|
class PongLayer : public cocos2d::Layer
|
2010-08-27 11:53:35 +08:00
|
|
|
{
|
2012-05-30 16:55:46 +08:00
|
|
|
private:
|
2013-06-15 14:03:30 +08:00
|
|
|
Ball* _ball;
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Vector<Paddle*> _paddles;
|
|
|
|
cocos2d::Vec2 _ballStartingVelocity;
|
2010-08-27 11:53:35 +08:00
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(PongLayer);
|
2012-04-19 14:35:52 +08:00
|
|
|
PongLayer();
|
|
|
|
~PongLayer();
|
|
|
|
|
|
|
|
void resetAndScoreBallForPlayer(int player);
|
2012-06-12 01:43:07 +08:00
|
|
|
void doStep(float delta);
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|