axmol/tests/cpp-tests/Classes/ExtensionsTest/CocoStudioGUITest/CustomTest/CustomParticleWidgetTest/CustomParticleWidgetTest.cpp

80 lines
2.0 KiB
C++
Raw Normal View History

2014-03-07 15:36:45 +08:00
//
// CustomParticleWidgetTest.cpp
// CustomUI
//
// Created by cai wenzhi on 14-3-7.
//
//
#include "CustomParticleWidgetTest.h"
#include "../../CustomGUIScene.h"
#include "../../CustomWidget/CustomParticleWidget.h"
#include "../../CustomWidget/CustomParticleWidgetReader.h"
#include "cocostudio/CCSGUIReader.h"
USING_NS_CC;
USING_NS_CC_EXT;
using namespace ui;
using namespace cocostudio;
2014-03-26 14:54:50 +08:00
// CustomParticleWidgetLayer
2014-03-07 15:36:45 +08:00
void CustomParticleWidgetLayer::onEnter()
{
CCLayer::onEnter();
GUIReader* guiReader = GUIReader::getInstance();
guiReader->registerTypeAndCallBack("CustomParticleWidget",
&CustomParticleWidget::createInstance,
CustomParticleWidgetReader::getInstance(),
parseselector(CustomParticleWidgetReader::setProperties));
CustomParticleWidget* custom = CustomParticleWidget::create();
custom->setParticlePlist("Particles/BoilingFoam.plist");
addChild(custom, 10, -1);
}
2014-03-26 14:54:50 +08:00
// CustomImageScene
2014-03-07 15:36:45 +08:00
void CustomParticleWidgetScene::onEnter()
{
CCScene::onEnter();
Layer* pLayer = new CustomParticleWidgetLayer();
addChild(pLayer);
pLayer->release();
auto label = Label::create("Back", "fonts/arial.ttf", 20);
2014-03-07 15:36:45 +08:00
//#endif
MenuItemLabel* pMenuItem = MenuItemLabel::create(label, CC_CALLBACK_1(CustomParticleWidgetScene::BackCallback, this));
Menu* pMenu = Menu::create(pMenuItem, NULL);
pMenu->setPosition( Point::ZERO );
pMenuItem->setPosition( Point( VisibleRect::right().x - 50, VisibleRect::bottom().y + 25) );
addChild(pMenu, 1);
}
void CustomParticleWidgetScene::runThisTest()
{
Layer* pLayer = new CustomParticleWidgetLayer();
addChild(pLayer);
pLayer->release();
CCDirector::getInstance()->replaceScene(this);
}
void CustomParticleWidgetScene::BackCallback(Ref* pSender)
{
CustomGUITestScene* pScene = new CustomGUITestScene();
pScene->runThisTest();
pScene->release();
}