2010-08-30 15:04:46 +08:00
|
|
|
#ifndef _ACTION_MANAGER_TEST_H_
|
|
|
|
#define _ACTION_MANAGER_TEST_H_
|
|
|
|
|
|
|
|
#include "../testBasic.h"
|
2013-06-07 08:12:28 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-07 08:12:28 +08:00
|
|
|
class ActionManagerTest: public BaseTest
|
2010-08-30 15:04:46 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
2013-06-20 14:17:10 +08:00
|
|
|
TextureAtlas* _atlas;
|
2010-08-30 15:04:46 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string _title;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
ActionManagerTest(void);
|
|
|
|
~ActionManagerTest(void);
|
|
|
|
|
|
|
|
virtual std::string title();
|
2010-08-30 15:04:46 +08:00
|
|
|
|
2013-07-26 06:53:24 +08:00
|
|
|
void restartCallback(Object* sender);
|
|
|
|
void nextCallback(Object* sender);
|
|
|
|
void backCallback(Object* sender);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CrashTest : public ActionManagerTest
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
|
|
|
virtual std::string title();
|
|
|
|
virtual void onEnter();
|
|
|
|
void removeThis();
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LogicTest : public ActionManagerTest
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
|
|
|
virtual std::string title();
|
|
|
|
virtual void onEnter();
|
2013-06-20 14:17:10 +08:00
|
|
|
void bugMe(Node* node);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class PauseTest : public ActionManagerTest
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
|
|
|
virtual std::string title();
|
|
|
|
virtual void onEnter();
|
2012-06-08 13:55:28 +08:00
|
|
|
void unpause(float dt);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class RemoveTest : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual std::string title();
|
|
|
|
virtual void onEnter();
|
|
|
|
void stopAction();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ResumeTest : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual std::string title();
|
|
|
|
virtual void onEnter();
|
2012-06-08 13:55:28 +08:00
|
|
|
void resumeGrossini(float time);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class ActionManagerTestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void runThisTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|