axmol/tests/cpp-tests/Classes/SchedulerTest/SchedulerTest.h

346 lines
8.1 KiB
C
Raw Normal View History

2010-09-09 16:15:21 +08:00
#ifndef _SCHEDULER_TEST_H_
#define _SCHEDULER_TEST_H_
#include "cocos2d.h"
#include "extensions/cocos-ext.h"
2010-09-09 16:15:21 +08:00
#include "../testBasic.h"
#include "../BaseTest.h"
2010-09-09 16:15:21 +08:00
USING_NS_CC_EXT;
2010-09-09 16:15:21 +08:00
class SchedulerTestLayer : public BaseTest
2010-09-09 16:15:21 +08:00
{
public:
virtual void onEnter() override;
2010-09-09 16:15:21 +08:00
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
void backCallback(Ref* sender) override;
void nextCallback(Ref* sender) override;
void restartCallback(Ref* sender) override;
2010-09-09 16:15:21 +08:00
};
class SchedulerAutoremove : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerAutoremove);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void autoremove(float dt);
void tick(float dt);
2010-09-09 16:15:21 +08:00
private:
2012-06-08 13:55:28 +08:00
float accum;
2010-09-09 16:15:21 +08:00
};
class SchedulerPauseResume : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerPauseResume);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void tick1(float dt);
void tick2(float dt);
2014-08-15 12:06:16 +08:00
using SchedulerTestLayer::pause;
2012-06-08 13:55:28 +08:00
void pause(float dt);
2010-09-09 16:15:21 +08:00
};
2012-06-12 18:12:45 +08:00
class SchedulerPauseResumeAll : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerPauseResumeAll);
2012-06-12 18:12:45 +08:00
SchedulerPauseResumeAll();
virtual ~SchedulerPauseResumeAll();
virtual void onEnter() override;
virtual void onExit() override;
virtual void update(float delta) override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2012-06-12 18:12:45 +08:00
void tick1(float dt);
void tick2(float dt);
2014-08-15 12:06:16 +08:00
using SchedulerTestLayer::pause;
2012-06-12 18:12:45 +08:00
void pause(float dt);
2014-08-15 12:06:16 +08:00
using SchedulerTestLayer::resume;
2012-06-12 18:12:45 +08:00
void resume(float dt);
private:
std::set<void*> _pausedTargets;
2012-06-12 18:12:45 +08:00
};
class SchedulerPauseResumeAllUser : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerPauseResumeAllUser);
2012-06-12 18:12:45 +08:00
SchedulerPauseResumeAllUser();
virtual ~SchedulerPauseResumeAllUser();
virtual void onEnter() override;
virtual void onExit() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2012-06-12 18:12:45 +08:00
void tick1(float dt);
void tick2(float dt);
2014-08-15 12:06:16 +08:00
using SchedulerTestLayer::pause;
2012-06-12 18:12:45 +08:00
void pause(float dt);
2014-08-15 12:06:16 +08:00
using SchedulerTestLayer::resume;
2012-06-12 18:12:45 +08:00
void resume(float dt);
private:
std::set<void*> _pausedTargets;
2012-06-12 18:12:45 +08:00
};
2010-09-09 16:15:21 +08:00
class SchedulerUnscheduleAll : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUnscheduleAll);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void tick1(float dt);
void tick2(float dt);
void tick3(float dt);
void tick4(float dt);
void unscheduleAll(float dt);
2010-09-09 16:15:21 +08:00
};
class SchedulerUnscheduleAllHard : public SchedulerTestLayer
{
2012-06-12 18:12:45 +08:00
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUnscheduleAllHard);
virtual void onEnter() override;
virtual void onExit() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2012-06-12 18:12:45 +08:00
void tick1(float dt);
void tick2(float dt);
void tick3(float dt);
void tick4(float dt);
void unscheduleAll(float dt);
private:
bool _actionManagerActive;
2012-06-12 18:12:45 +08:00
};
class SchedulerUnscheduleAllUserLevel : public SchedulerTestLayer
{
2010-09-09 16:15:21 +08:00
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUnscheduleAllUserLevel);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void tick1(float dt);
void tick2(float dt);
void tick3(float dt);
void tick4(float dt);
void unscheduleAll(float dt);
2010-09-09 16:15:21 +08:00
};
class SchedulerSchedulesAndRemove : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerSchedulesAndRemove);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void tick1(float dt);
void tick2(float dt);
void tick3(float dt);
void tick4(float dt);
void scheduleAndUnschedule(float dt);
2010-09-09 16:15:21 +08:00
};
class SchedulerUpdate : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUpdate);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
2012-06-08 13:55:28 +08:00
void removeUpdates(float dt);
2010-09-09 16:15:21 +08:00
};
class SchedulerUpdateAndCustom : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUpdateAndCustom);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
void update(float dt) override;
2012-06-08 13:55:28 +08:00
void tick(float dt);
void stopSelectors(float dt);
2010-09-09 16:15:21 +08:00
};
class SchedulerUpdateFromCustom : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerUpdateFromCustom);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2010-09-09 16:15:21 +08:00
void update(float dt) override;
2012-06-08 13:55:28 +08:00
void schedUpdate(float dt);
void stopUpdate(float dt);
2010-09-09 16:15:21 +08:00
};
class TestNode : public Node
2010-09-09 16:15:21 +08:00
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(TestNode);
2010-09-09 16:15:21 +08:00
~TestNode();
2013-12-18 16:03:07 +08:00
void initWithString(const std::string& str, int priority);
virtual void update(float dt) override;
2010-09-09 16:15:21 +08:00
private:
2013-12-18 16:03:07 +08:00
std::string _string;
2010-09-09 16:15:21 +08:00
};
class RescheduleSelector : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(RescheduleSelector);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
2012-06-08 13:55:28 +08:00
void schedUpdate(float dt);
private:
float _interval;
int _ticks;
};
class SchedulerDelayAndRepeat : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerDelayAndRepeat);
virtual void onEnter() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
void update(float dt) override;
};
class SchedulerTimeScale : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerTimeScale);
void onEnter() override;
void onExit() override;
virtual std::string title() const override;
virtual std::string subtitle() const override;
ControlSlider* sliderCtl();
void sliderAction(Ref* sender, Control::EventType controlEvent);
ControlSlider* _sliderCtl;
};
class TwoSchedulers : public SchedulerTestLayer
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(TwoSchedulers);
virtual ~TwoSchedulers();
virtual std::string title() const override;
virtual std::string subtitle() const override;
void onEnter() override;
ControlSlider* sliderCtl();
void sliderAction(Ref* sender, Control::EventType controlEvent);
Scheduler *sched1;
Scheduler *sched2;
ActionManager *actionManager1;
ActionManager *actionManager2;
ControlSlider *sliderCtl1;
ControlSlider *sliderCtl2;
};
class SchedulerIssue2268 : public SchedulerTestLayer
{
2013-11-14 07:55:36 +08:00
public:
CREATE_FUNC(SchedulerIssue2268);
~SchedulerIssue2268();
virtual std::string title() const override;
virtual std::string subtitle() const override;
void onEnter() override;
void update(float dt) override;
2013-11-14 07:55:36 +08:00
private:
Node *testNode;
};
class ScheduleCallbackTest : public SchedulerTestLayer
{
public:
CREATE_FUNC(ScheduleCallbackTest);
~ScheduleCallbackTest();
virtual std::string title() const override;
virtual std::string subtitle() const override;
void onEnter() override;
void callback(float dt);
private:
};
class ScheduleUpdatePriority : public SchedulerTestLayer
{
public:
CREATE_FUNC(ScheduleUpdatePriority);
virtual std::string title() const override;
virtual std::string subtitle() const override;
void onEnter() override;
void onExit() override;
virtual void update(float dt) override;
bool onTouchBegan(Touch* touch, Event* event) override;
};
2010-09-09 16:15:21 +08:00
class SchedulerTestScene : public TestScene
{
public:
2013-11-14 07:55:36 +08:00
CREATE_FUNC(SchedulerTestScene);
2010-09-09 16:15:21 +08:00
virtual void runThisTest();
};
2015-01-28 11:31:52 +08:00
class SchedulerIssue10232 : public SchedulerTestLayer
{
public:
CREATE_FUNC(SchedulerIssue10232);
virtual std::string title() const override;
virtual std::string subtitle() const override;
void onEnter() override;
void update(float dt) override;
2015-01-28 11:31:52 +08:00
};
2010-09-09 16:15:21 +08:00
#endif