2014-01-14 06:48:12 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2012 cocos2d-x.org
|
2017-02-14 14:36:57 +08:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2014-01-14 06:48:12 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _MENU_TEST_H_
|
|
|
|
#define _MENU_TEST_H_
|
|
|
|
|
|
|
|
////----#include "cocos2d.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
|
|
|
|
|
|
|
DEFINE_TEST_SUITE(MenuTests);
|
|
|
|
|
|
|
|
class MenuTest : public TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(MenuTest);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
|
|
|
};
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class MenuLayerMainMenu : public cocos2d::Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::MenuItem* _disabledItem;
|
|
|
|
cocos2d::EventListenerTouchOneByOne* _touchListener;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayerMainMenu();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayerMainMenu();
|
|
|
|
|
|
|
|
public:
|
2015-04-09 08:37:30 +08:00
|
|
|
bool onTouchBegan(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
void onTouchEnded(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
void onTouchCancelled(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
void onTouchMoved(cocos2d::Touch* touch, cocos2d::Event* event);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void allowTouches(float dt);
|
2015-04-09 08:37:30 +08:00
|
|
|
void menuCallback(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackConfig(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackDisabled(cocos2d::Ref* sender);
|
|
|
|
void menuCallback2(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackPriorityTest(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackBugsTest(cocos2d::Ref* pSender);
|
|
|
|
void onQuit(cocos2d::Ref* sender);
|
|
|
|
void menuMovingCallback(cocos2d::Ref* pSender);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//CREATE_NODE(MenuLayer1);
|
|
|
|
};
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class MenuLayer2 : public cocos2d::Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Vec2 _centeredMenu;
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _alignedH;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
void alignMenusH();
|
|
|
|
void alignMenusV();
|
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer2();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer2();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void menuCallback(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackOpacity(cocos2d::Ref* sender);
|
|
|
|
void menuCallbackAlign(cocos2d::Ref* sender);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//CREATE_NODE(MenuLayer2);
|
|
|
|
};
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class MenuLayer3 : public cocos2d::Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::MenuItem* _disabledItem;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer3();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer3();
|
|
|
|
};
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class MenuLayer4 : public cocos2d::Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer4();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer4();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void menuCallback(cocos2d::Ref* sender);
|
|
|
|
void backCallback(cocos2d::Ref* sender);
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class BugsTest : public cocos2d::Layer
|
2012-11-19 13:57:54 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
BugsTest();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void issue1410MenuCallback(cocos2d::Ref* pSender);
|
|
|
|
void issue1410v2MenuCallback(cocos2d::Ref* pSender);
|
|
|
|
void backMenuCallback(cocos2d::Ref* pSender);
|
2012-11-19 13:57:54 +08:00
|
|
|
};
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
class RemoveMenuItemWhenMove : public cocos2d::Layer
|
2013-01-17 15:04:48 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RemoveMenuItemWhenMove();
|
|
|
|
~RemoveMenuItemWhenMove();
|
2015-04-09 08:37:30 +08:00
|
|
|
bool onTouchBegan(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
void onTouchMoved(cocos2d::Touch* touch, cocos2d::Event* event);
|
2013-01-17 15:04:48 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void goBack(cocos2d::Ref* pSender);
|
2013-01-17 15:04:48 +08:00
|
|
|
|
|
|
|
private:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::MenuItemFont *item;
|
|
|
|
cocos2d::EventListenerTouchOneByOne* _touchListener;
|
2013-01-17 15:04:48 +08:00
|
|
|
};
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#endif
|