/**************************************************************************** Copyright (c) 2012 cocos2d-x.org Copyright (c) 2013-2014 Chukong Technologies Inc. http://www.cocos2d-x.org 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. ****************************************************************************/ #ifndef _NODE_TEST_H_ #define _NODE_TEST_H_ ////----#include "cocos2d.h" #include "../testBasic.h" #include "../BaseTest.h" class TestCocosNodeDemo : public BaseTest { public: virtual std::string title() const override; virtual std::string subtitle() const override; virtual void onEnter() override; void restartCallback(Ref* sender); void nextCallback(Ref* sender); void backCallback(Ref* sender); protected: TestCocosNodeDemo(); virtual ~TestCocosNodeDemo(); protected: Director::Projection _preProjection; }; class Test2 : public TestCocosNodeDemo { public: CREATE_FUNC(Test2); virtual void onEnter() override; virtual std::string subtitle() const override; }; class Test4 : public TestCocosNodeDemo { public: CREATE_FUNC(Test4); void delay2(float dt); void delay4(float dt); virtual std::string subtitle() const override; protected: Test4(); }; class Test5 : public TestCocosNodeDemo { public: CREATE_FUNC(Test5); void addAndRemove(float dt); virtual std::string subtitle() const override; protected: Test5(); }; class Test6 : public TestCocosNodeDemo { public: CREATE_FUNC(Test6); void addAndRemove(float dt); virtual std::string subtitle() const override; protected: Test6(); }; class StressTest1 : public TestCocosNodeDemo { public: CREATE_FUNC(StressTest1); void shouldNotCrash(float dt); void removeMe(Node* node); virtual std::string subtitle() const override; protected: StressTest1(); }; class StressTest2 : public TestCocosNodeDemo { public: CREATE_FUNC(StressTest2); void shouldNotLeak(float dt); virtual std::string subtitle() const override; protected: StressTest2(); }; class SchedulerTest1 : public TestCocosNodeDemo { public: CREATE_FUNC(SchedulerTest1); void doSomething(float dt); virtual std::string subtitle() const override; protected: SchedulerTest1(); }; class NodeToWorld : public TestCocosNodeDemo { public: CREATE_FUNC(NodeToWorld); virtual std::string subtitle() const override; protected: NodeToWorld(); }; class NodeToWorld3D : public TestCocosNodeDemo { public: CREATE_FUNC(NodeToWorld3D); virtual std::string subtitle() const override; protected: NodeToWorld3D(); }; class CameraOrbitTest : public TestCocosNodeDemo { public: CREATE_FUNC(CameraOrbitTest); virtual void onEnter() override; virtual void onExit() override; virtual std::string subtitle() const override; protected: CameraOrbitTest(); }; class CameraZoomTest : public TestCocosNodeDemo { public: CREATE_FUNC(CameraZoomTest); void update(float dt); virtual void onEnter() override; virtual void onExit() override; virtual std::string subtitle() const override; protected: CameraZoomTest(); float _z; }; class CameraCenterTest : public TestCocosNodeDemo { public: CREATE_FUNC(CameraCenterTest); virtual std::string title() const override; virtual std::string subtitle() const override; virtual void onEnter(); virtual void onExit(); protected: CameraCenterTest(); }; class CameraTest1 : public TestCocosNodeDemo { public: CREATE_FUNC(CameraTest1); virtual std::string title() const override; virtual std::string subtitle() const override; virtual void onEnter() override; virtual void onExit() override; protected: CameraTest1(); Sprite *_sprite1; Sprite *_sprite2; }; class CameraTest2 : public TestCocosNodeDemo { public: CREATE_FUNC(CameraTest2); virtual std::string title() const override; virtual std::string subtitle() const override; virtual void onEnter() override; virtual void onExit() override; protected: CameraTest2(); Sprite *_sprite1; Sprite *_sprite2; }; class ConvertToNode : public TestCocosNodeDemo { public: CREATE_FUNC(ConvertToNode); void onTouchesEnded(const std::vector& touches, Event *event); virtual std::string title() const override; virtual std::string subtitle() const override; protected: ConvertToNode(); }; class NodeOpaqueTest : public TestCocosNodeDemo { public: CREATE_FUNC(NodeOpaqueTest); virtual std::string title() const override; virtual std::string subtitle() const override; protected: NodeOpaqueTest(); }; class NodeNonOpaqueTest : public TestCocosNodeDemo { public: CREATE_FUNC(NodeNonOpaqueTest); virtual std::string title() const override; virtual std::string subtitle() const override; protected: NodeNonOpaqueTest(); }; class NodeGlobalZValueTest : public TestCocosNodeDemo { public: CREATE_FUNC(NodeGlobalZValueTest); virtual std::string title() const override; virtual std::string subtitle() const override; virtual void update(float dt) override; protected: NodeGlobalZValueTest(); Sprite *_sprite; }; class CocosNodeTestScene : public TestScene { public: virtual void runThisTest(); }; //CCLayer* nextAction(); #endif