mirror of https://github.com/axmolengine/axmol.git
213 lines
6.9 KiB
C++
213 lines
6.9 KiB
C++
#include "ExtensionsTest.h"
|
|
#include "../testResource.h"
|
|
#include "NotificationCenterTest/NotificationCenterTest.h"
|
|
#include "ControlExtensionTest/CCControlSceneManager.h"
|
|
#include "CocosBuilderTest/CocosBuilderTest.h"
|
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_EMSCRIPTEN) && (CC_TARGET_PLATFORM != CC_PLATFORM_NACL)
|
|
#include "NetworkTest/HttpClientTest.h"
|
|
#endif
|
|
#include "TableViewTest/TableViewTestScene.h"
|
|
|
|
#include "CocoStudioArmatureTest/ArmatureScene.h"
|
|
#include "CocoStudioComponentsTest/ComponentsTestScene.h"
|
|
#include "CocoStudioSceneTest/SceneEditorTest.h"
|
|
#include "CocoStudioGUITest/CocosGUIScene.h"
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
#include "NetworkTest/WebSocketTest.h"
|
|
#include "NetworkTest/SocketIOTest.h"
|
|
#endif
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_TIZEN)
|
|
#include "EditBoxTest/EditBoxTest.h"
|
|
#endif
|
|
|
|
#include "Scale9SpriteTest/Scale9SpriteTest.h"
|
|
|
|
enum
|
|
{
|
|
LINE_SPACE = 40,
|
|
kItemTagBasic = 1000,
|
|
};
|
|
|
|
static struct {
|
|
const char *name;
|
|
std::function<void(Object* sender)> callback;
|
|
} g_extensionsTests[] = {
|
|
{ "NotificationCenterTest", [](Object* sender) { runNotificationCenterTest(); }
|
|
},
|
|
{ "Scale9SpriteTest", [](Object* sender) {
|
|
auto scene = new S9SpriteTestScene();
|
|
if (scene)
|
|
{
|
|
scene->runThisTest();
|
|
scene->release();
|
|
}
|
|
}
|
|
},
|
|
{ "CCControlButtonTest", [](Object *sender){
|
|
ControlSceneManager* pManager = ControlSceneManager::sharedControlSceneManager();
|
|
auto scene = pManager->currentControlScene();
|
|
Director::getInstance()->replaceScene(scene);
|
|
}},
|
|
{ "CocosBuilderTest", [](Object *sender) {
|
|
auto scene = new CocosBuilderTestScene();
|
|
if (scene)
|
|
{
|
|
scene->runThisTest();
|
|
scene->release();
|
|
}
|
|
}},
|
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_EMSCRIPTEN) && (CC_TARGET_PLATFORM != CC_PLATFORM_NACL)
|
|
{ "HttpClientTest", [](Object *sender){ runHttpClientTest();}
|
|
},
|
|
#endif
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
{ "WebSocketTest", [](Object *sender){ runWebSocketTest();}
|
|
},
|
|
{ "SocketIOTest", [](Object *sender){ runSocketIOTest();}
|
|
},
|
|
#endif
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_TIZEN)
|
|
{ "EditBoxTest", [](Object *sender){ runEditBoxTest();}
|
|
},
|
|
#endif
|
|
{ "TableViewTest", [](Object *sender){ runTableViewTest();}
|
|
},
|
|
{ "CocoStudioArmatureTest", [](Object *sender) { ArmatureTestScene *scene = new ArmatureTestScene();
|
|
scene->runThisTest();
|
|
scene->release();
|
|
}
|
|
},
|
|
{ "CocoStudioComponentsTest", [](Object *sender) { runComponentsTestLayerTest(); }
|
|
},
|
|
{ "CocoStudioSceneTest", [](Object *sender) { SceneEditorTestScene *scene = new SceneEditorTestScene();
|
|
scene->runThisTest();
|
|
scene->release();
|
|
}
|
|
},
|
|
{ "CocoStudioGUITest", [](Object *sender)
|
|
{
|
|
CocosGUITestScene* pScene = new CocosGUITestScene();
|
|
pScene->runThisTest();
|
|
pScene->release();
|
|
}
|
|
},
|
|
};
|
|
|
|
static const int g_maxTests = sizeof(g_extensionsTests) / sizeof(g_extensionsTests[0]);
|
|
|
|
static Point s_tCurPos = Point::ZERO;
|
|
|
|
////////////////////////////////////////////////////////
|
|
//
|
|
// ExtensionsMainLayer
|
|
//
|
|
////////////////////////////////////////////////////////
|
|
void ExtensionsMainLayer::onEnter()
|
|
{
|
|
Layer::onEnter();
|
|
|
|
auto s = Director::getInstance()->getWinSize();
|
|
|
|
_itemMenu = Menu::create();
|
|
_itemMenu->setPosition( Point::ZERO );
|
|
MenuItemFont::setFontName("Arial");
|
|
MenuItemFont::setFontSize(24);
|
|
for (int i = 0; i < g_maxTests; ++i)
|
|
{
|
|
auto pItem = MenuItemFont::create(g_extensionsTests[i].name, g_extensionsTests[i].callback);
|
|
pItem->setPosition(Point(s.width / 2, s.height - (i + 1) * LINE_SPACE));
|
|
_itemMenu->addChild(pItem, kItemTagBasic + i);
|
|
}
|
|
|
|
auto listener = EventListenerTouchAllAtOnce::create();
|
|
listener->onTouchesBegan = CC_CALLBACK_2(ExtensionsMainLayer::onTouchesBegan, this);
|
|
listener->onTouchesMoved = CC_CALLBACK_2(ExtensionsMainLayer::onTouchesMoved, this);
|
|
|
|
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
|
|
|
|
auto mouseListener = EventListenerMouse::create();
|
|
mouseListener->onMouseScroll = CC_CALLBACK_1(ExtensionsMainLayer::onMouseScroll, this);
|
|
|
|
_eventDispatcher->addEventListenerWithSceneGraphPriority(mouseListener, this);
|
|
|
|
addChild(_itemMenu);
|
|
}
|
|
|
|
|
|
void ExtensionsMainLayer::onTouchesBegan(const std::vector<Touch*>& touches, Event *event)
|
|
{
|
|
auto touch = static_cast<Touch*>(touches[0]);
|
|
|
|
_beginPos = touch->getLocation();
|
|
}
|
|
|
|
void ExtensionsMainLayer::onTouchesMoved(const std::vector<Touch*>& touches, Event *event)
|
|
{
|
|
auto touch = static_cast<Touch*>(touches[0]);
|
|
|
|
auto touchLocation = touch->getLocation();
|
|
float nMoveY = touchLocation.y - _beginPos.y;
|
|
|
|
auto curPos = _itemMenu->getPosition();
|
|
auto nextPos = Point(curPos.x, curPos.y + nMoveY);
|
|
|
|
if (nextPos.y < 0.0f)
|
|
{
|
|
_itemMenu->setPosition(Point::ZERO);
|
|
return;
|
|
}
|
|
|
|
if (nextPos.y > ((g_maxTests + 1)* LINE_SPACE - VisibleRect::getVisibleRect().size.height))
|
|
{
|
|
_itemMenu->setPosition(Point(0, ((g_maxTests + 1)* LINE_SPACE - VisibleRect::getVisibleRect().size.height)));
|
|
return;
|
|
}
|
|
|
|
_itemMenu->setPosition(nextPos);
|
|
_beginPos = touchLocation;
|
|
s_tCurPos = nextPos;
|
|
}
|
|
|
|
void ExtensionsMainLayer::onMouseScroll(Event* event)
|
|
{
|
|
auto mouseEvent = static_cast<EventMouse*>(event);
|
|
float nMoveY = mouseEvent->getScrollY() * 6;
|
|
|
|
auto curPos = _itemMenu->getPosition();
|
|
auto nextPos = Point(curPos.x, curPos.y + nMoveY);
|
|
|
|
if (nextPos.y < 0.0f)
|
|
{
|
|
_itemMenu->setPosition(Point::ZERO);
|
|
return;
|
|
}
|
|
|
|
if (nextPos.y > ((g_maxTests + 1)* LINE_SPACE - VisibleRect::getVisibleRect().size.height))
|
|
{
|
|
_itemMenu->setPosition(Point(0, ((g_maxTests + 1)* LINE_SPACE - VisibleRect::getVisibleRect().size.height)));
|
|
return;
|
|
}
|
|
|
|
_itemMenu->setPosition(nextPos);
|
|
s_tCurPos = nextPos;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////
|
|
//
|
|
// ExtensionsTestScene
|
|
//
|
|
////////////////////////////////////////////////////////
|
|
|
|
void ExtensionsTestScene::runThisTest()
|
|
{
|
|
auto layer = new ExtensionsMainLayer();
|
|
addChild(layer);
|
|
layer->release();
|
|
|
|
Director::getInstance()->replaceScene(this);
|
|
}
|
|
|
|
|