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-02-24 18:45:25 +08:00
|
|
|
https://adxeproject.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-09-01 11:34:30 +08:00
|
|
|
#ifndef _SCENE_TEST_H_
|
|
|
|
#define _SCENE_TEST_H_
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
////----#include "cocos2d.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
|
|
|
|
|
|
|
DEFINE_TEST_SUITE(SceneTests);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
class SceneTestLayer1 : public cocos2d::Layer
|
2010-09-01 11:34:30 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(SceneTestLayer1);
|
2015-04-09 15:43:01 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
SceneTestLayer1();
|
2012-04-19 14:35:52 +08:00
|
|
|
~SceneTestLayer1();
|
2010-09-01 11:34:30 +08:00
|
|
|
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
|
|
|
virtual void onEnterTransitionDidFinish() override;
|
2011-02-23 16:47:25 +08:00
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void testDealloc(float dt);
|
2015-04-09 08:37:30 +08:00
|
|
|
void onPushScene(cocos2d::Ref* sender);
|
|
|
|
void onPushSceneTran(cocos2d::Ref* sender);
|
|
|
|
void onQuit(cocos2d::Ref* sender);
|
2021-12-28 16:06:23 +08:00
|
|
|
};
|
2010-09-01 11:34:30 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
class SceneTestLayer2 : public cocos2d::Layer
|
2010-09-01 11:34:30 +08:00
|
|
|
{
|
2021-12-28 16:06:23 +08:00
|
|
|
float _timeCounter;
|
|
|
|
|
2010-09-01 11:34:30 +08:00
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(SceneTestLayer2);
|
2015-04-09 15:43:01 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
SceneTestLayer2();
|
2010-09-01 11:34:30 +08:00
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void testDealloc(float dt);
|
2015-04-09 08:37:30 +08:00
|
|
|
void onGoBack(cocos2d::Ref* sender);
|
|
|
|
void onReplaceScene(cocos2d::Ref* sender);
|
|
|
|
void onReplaceSceneTran(cocos2d::Ref* sender);
|
2021-12-28 16:06:23 +08:00
|
|
|
};
|
2010-09-01 11:34:30 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
class SceneTestLayer3 : public cocos2d::LayerColor
|
2010-09-01 11:34:30 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(SceneTestLayer3);
|
2015-04-09 15:43:01 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
SceneTestLayer3();
|
2015-04-09 15:43:01 +08:00
|
|
|
|
|
|
|
virtual bool init() override;
|
2012-06-08 13:55:28 +08:00
|
|
|
virtual void testDealloc(float dt);
|
2015-04-09 08:37:30 +08:00
|
|
|
void item0Clicked(cocos2d::Ref* sender);
|
|
|
|
void item1Clicked(cocos2d::Ref* sender);
|
|
|
|
void item2Clicked(cocos2d::Ref* sender);
|
|
|
|
void item3Clicked(cocos2d::Ref* sender);
|
2021-12-28 16:06:23 +08:00
|
|
|
};
|
2010-09-01 11:34:30 +08:00
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
class SceneTestScene : public TestCase
|
2010-09-01 11:34:30 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-09 15:43:01 +08:00
|
|
|
static SceneTestScene* create(int testIndex = 1);
|
2010-09-01 11:34:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|