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
|
|
|
|
2012-06-14 05:19:13 +08:00
|
|
|
USING_NS_CC;
|
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;
|
2013-06-20 14:17:10 +08:00
|
|
|
class PongLayer : public 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;
|
2013-12-10 18:27:13 +08:00
|
|
|
Vector<Paddle*> _paddles;
|
2014-05-15 01:07:09 +08:00
|
|
|
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
|