2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-08-30 15:04:46 +08:00
|
|
|
#ifndef _ACTION_MANAGER_TEST_H_
|
|
|
|
#define _ACTION_MANAGER_TEST_H_
|
|
|
|
|
2013-06-07 08:12:28 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(ActionManagerTests);
|
|
|
|
|
|
|
|
class ActionManagerTest : public TestCase
|
2010-08-30 15:04:46 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::TextureAtlas* _atlas;
|
2010-08-30 15:04:46 +08:00
|
|
|
|
2021-12-28 16:06:23 +08:00
|
|
|
std::string _title;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
ActionManagerTest();
|
|
|
|
~ActionManagerTest();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CrashTest : public ActionManagerTest
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(CrashTest);
|
|
|
|
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2012-04-19 14:35:52 +08:00
|
|
|
void removeThis();
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LogicTest : public ActionManagerTest
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(LogicTest);
|
|
|
|
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
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:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(PauseTest);
|
|
|
|
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2012-06-08 13:55:28 +08:00
|
|
|
void unpause(float dt);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
2014-03-05 14:32:00 +08:00
|
|
|
class StopActionTest : public ActionManagerTest
|
2010-08-30 15:04:46 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(StopActionTest);
|
|
|
|
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2010-08-30 15:04:46 +08:00
|
|
|
void stopAction();
|
|
|
|
};
|
|
|
|
|
2014-08-19 17:31:19 +08:00
|
|
|
class StopAllActionsTest : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(StopAllActionsTest);
|
|
|
|
|
2014-08-19 17:31:19 +08:00
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
virtual void onEnter() override;
|
|
|
|
void stopAction(float time);
|
|
|
|
};
|
|
|
|
|
2010-08-30 15:04:46 +08:00
|
|
|
class ResumeTest : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(ResumeTest);
|
|
|
|
|
2014-02-28 23:02:22 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2012-06-08 13:55:28 +08:00
|
|
|
void resumeGrossini(float time);
|
2010-08-30 15:04:46 +08:00
|
|
|
};
|
|
|
|
|
2015-05-28 15:52:49 +08:00
|
|
|
class StopActionsByFlagsTest : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(StopActionsByFlagsTest);
|
|
|
|
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
virtual void onEnter() override;
|
|
|
|
void stopAction(float time);
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2015-05-28 15:52:49 +08:00
|
|
|
protected:
|
2021-12-28 16:06:23 +08:00
|
|
|
const unsigned int kMoveFlag = 0x01;
|
|
|
|
const unsigned int kScaleFlag = 0x02;
|
|
|
|
const unsigned int kRotateFlag = 0x04;
|
|
|
|
const unsigned int kRepeatForeverFlag = 0x08; // You don't need this for the test, but it's for demonstration how
|
|
|
|
// to activate several flags on an action.
|
2015-05-28 15:52:49 +08:00
|
|
|
};
|
|
|
|
|
2016-06-29 08:08:56 +08:00
|
|
|
class Issue14050Test : public ActionManagerTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(Issue14050Test);
|
|
|
|
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
virtual void onEnter() override;
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2016-06-29 08:08:56 +08:00
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
2010-08-30 15:04:46 +08:00
|
|
|
#endif
|