2014-07-07 17:38:11 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
#include "CocostudioParserJsonTest.h"
|
2014-07-07 18:22:16 +08:00
|
|
|
#include "cocostudio/CCSGUIReader.h"
|
2014-07-08 17:02:50 +08:00
|
|
|
#include "ui/CocosGUI.h"
|
2014-07-09 14:23:22 +08:00
|
|
|
#include "../CocostudioParserTest.h"
|
2014-07-09 11:35:53 +08:00
|
|
|
#include "../CustomWidget/CustomImageView.h"
|
|
|
|
#include "../CustomWidget/CustomImageViewReader.h"
|
|
|
|
#include "../CustomWidget/CustomParticleWidgetReader.h"
|
|
|
|
#include "../CustomWidget/CustomParticleWidget.h"
|
|
|
|
|
2014-07-07 18:22:16 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
using namespace cocostudio;
|
2014-07-08 17:02:50 +08:00
|
|
|
using namespace cocos2d::ui;
|
2014-07-07 18:22:16 +08:00
|
|
|
|
|
|
|
// CustomImageLayer
|
2014-07-08 17:02:50 +08:00
|
|
|
CocostudioParserJsonLayer::CocostudioParserJsonLayer(std::string jsonFile)
|
|
|
|
{
|
|
|
|
_jsonFile = jsonFile;
|
|
|
|
}
|
2014-07-07 18:22:16 +08:00
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
void CocostudioParserJsonLayer::onEnter()
|
2014-07-07 18:22:16 +08:00
|
|
|
{
|
|
|
|
Layer::onEnter();
|
|
|
|
|
|
|
|
GUIReader* guiReader = GUIReader::getInstance();
|
2014-07-09 11:35:53 +08:00
|
|
|
guiReader->registerTypeAndCallBack("CustomImageView",
|
|
|
|
&CustomImageView::createInstance,
|
|
|
|
CustomImageViewReader::getInstance(),
|
|
|
|
parseselector(CustomImageViewReader::setProperties));
|
|
|
|
guiReader->registerTypeAndCallBack("CustomParticleWidget",
|
|
|
|
&CustomParticleWidget::createInstance,
|
|
|
|
CustomParticleWidgetReader::getInstance(),
|
|
|
|
parseselector(CustomParticleWidgetReader::setProperties));
|
2014-07-07 18:22:16 +08:00
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
Layout* layout = static_cast<Layout*>(guiReader->widgetFromJsonFile(_jsonFile.c_str()));
|
2014-07-07 18:22:16 +08:00
|
|
|
layout->setScale(0.5);
|
|
|
|
addChild(layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
// CocostudioParserJsonScene
|
|
|
|
CocostudioParserJsonScene::CocostudioParserJsonScene(std::string jsonFile)
|
|
|
|
{
|
|
|
|
_jsonFile = jsonFile;
|
|
|
|
}
|
2014-07-07 18:22:16 +08:00
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
void CocostudioParserJsonScene::onEnter()
|
2014-07-07 18:22:16 +08:00
|
|
|
{
|
|
|
|
CCScene::onEnter();
|
|
|
|
|
|
|
|
auto label = Label::createWithTTF("Back", "fonts/arial.ttf", 20);
|
|
|
|
//#endif
|
2014-07-08 17:02:50 +08:00
|
|
|
MenuItemLabel* pMenuItem = MenuItemLabel::create(label, CC_CALLBACK_1(CocostudioParserJsonScene::BackCallback, this));
|
2014-07-07 18:22:16 +08:00
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
Menu* pMenu = Menu::create(pMenuItem, nullptr);
|
2014-07-07 18:22:16 +08:00
|
|
|
|
|
|
|
pMenu->setPosition( Vec2::ZERO );
|
2014-08-28 11:41:18 +08:00
|
|
|
pMenuItem->setPosition(VisibleRect::right().x - 50, VisibleRect::bottom().y + 25);
|
2014-07-07 18:22:16 +08:00
|
|
|
|
|
|
|
addChild(pMenu, 1);
|
|
|
|
}
|
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
void CocostudioParserJsonScene::runThisTest()
|
2014-07-07 18:22:16 +08:00
|
|
|
{
|
2014-08-28 07:31:57 +08:00
|
|
|
Layer* pLayer = new (std::nothrow) CocostudioParserJsonLayer(_jsonFile);
|
2014-07-07 18:22:16 +08:00
|
|
|
addChild(pLayer);
|
|
|
|
pLayer->release();
|
|
|
|
|
|
|
|
CCDirector::getInstance()->replaceScene(this);
|
|
|
|
}
|
|
|
|
|
2014-07-08 17:02:50 +08:00
|
|
|
void CocostudioParserJsonScene::BackCallback(Ref* pSender)
|
2014-07-07 18:22:16 +08:00
|
|
|
{
|
2014-08-28 07:31:57 +08:00
|
|
|
CocostudioParserTestScene* pScene = new (std::nothrow) CocostudioParserTestScene();
|
2014-07-07 18:22:16 +08:00
|
|
|
pScene->runThisTest();
|
|
|
|
pScene->release();
|
|
|
|
}
|