axmol/samples/Cpp/TestCpp/Classes/ParallaxTest/ParallaxTest.h

58 lines
1008 B
C
Raw Normal View History

2010-09-01 14:57:55 +08:00
#ifndef _PARALLAX_TEST_H_
#define _PARALLAX_TEST_H_
#include "../testBasic.h"
#include "../BaseTest.h"
class ParallaxDemo : public BaseTest
2010-09-01 14:57:55 +08:00
{
protected:
TextureAtlas* _atlas;
2010-09-01 14:57:55 +08:00
public:
ParallaxDemo(void);
~ParallaxDemo(void);
virtual std::string title();
virtual void onEnter();
2010-09-01 14:57:55 +08:00
void restartCallback(Object* sender);
void nextCallback(Object* sender);
void backCallback(Object* sender);
2010-09-01 14:57:55 +08:00
};
class Parallax1 : public ParallaxDemo
{
protected:
Node* _root;
Node* _target;
MotionStreak* _streak;
public:
Parallax1();
virtual std::string title();
2010-09-01 14:57:55 +08:00
};
class Parallax2 : public ParallaxDemo
{
protected:
Node* _root;
Node* _target;
MotionStreak* _streak;
public:
Parallax2();
virtual void onTouchesMoved(const std::vector<Touch*>& touches, Event *event);
virtual std::string title();
2010-09-01 14:57:55 +08:00
};
class ParallaxTestScene : public TestScene
{
public:
virtual void runThisTest();
};
#endif