axmol/tests/test-cpp/Classes/ExtensionsTest/ControlExtensionTest/CCControlScene.cpp

107 lines
4.2 KiB
C++
Raw Normal View History

2012-04-16 18:58:43 +08:00
/*
* ControlScene.m
2012-04-16 18:58:43 +08:00
*
* Copyright (c) 2011 Yannick Loriot
*
* 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.
*
*/
#include "CCControlScene.h"
#include "CCControlSceneManager.h"
#include "../ExtensionsTest.h"
2012-04-16 18:58:43 +08:00
ControlScene::ControlScene()
: _sceneTitleLabel(NULL)
2012-04-16 18:58:43 +08:00
{
}
ControlScene::~ControlScene()
2012-04-16 18:58:43 +08:00
{
CC_SAFE_RELEASE_NULL(_sceneTitleLabel);
2012-04-16 18:58:43 +08:00
}
bool ControlScene::init()
2012-04-16 18:58:43 +08:00
{
if (Layer::init())
2012-04-16 18:58:43 +08:00
{
auto pBackItem = MenuItemFont::create("Back", CC_CALLBACK_1(ControlScene::toExtensionsMainLayer, this));
2013-07-12 14:11:55 +08:00
pBackItem->setPosition(Point(VisibleRect::rightBottom().x - 50, VisibleRect::rightBottom().y + 25));
auto pBackMenu = Menu::create(pBackItem, NULL);
pBackMenu->setPosition( Point::ZERO );
addChild(pBackMenu, 10);
2012-04-16 18:58:43 +08:00
// Add the generated background
auto background = Sprite::create("extensions/background.png");
background->setPosition(VisibleRect::center());
2012-04-16 18:58:43 +08:00
addChild(background);
// Add the ribbon
auto ribbon = Scale9Sprite::create("extensions/ribbon.png", Rect(1, 1, 48, 55));
ribbon->setContentSize(Size(VisibleRect::getVisibleRect().size.width, 57));
2013-07-12 14:11:55 +08:00
ribbon->setPosition(Point(VisibleRect::center().x, VisibleRect::top().y - ribbon->getContentSize().height / 2.0f));
2012-04-16 18:58:43 +08:00
addChild(ribbon);
// Add the title
setSceneTitleLabel(LabelTTF::create("Title", "Arial", 12));
2013-07-12 14:11:55 +08:00
_sceneTitleLabel->setPosition(Point (VisibleRect::center().x, VisibleRect::top().y - _sceneTitleLabel->getContentSize().height / 2 - 5));
addChild(_sceneTitleLabel, 1);
2012-04-16 18:58:43 +08:00
// Add the menu
auto item1 = MenuItemImage::create("Images/b1.png", "Images/b2.png", CC_CALLBACK_1(ControlScene::previousCallback, this));
auto item2 = MenuItemImage::create("Images/r1.png", "Images/r2.png", CC_CALLBACK_1(ControlScene::restartCallback, this));
auto item3 = MenuItemImage::create("Images/f1.png", "Images/f2.png", CC_CALLBACK_1(ControlScene::nextCallback, this));
2012-04-16 18:58:43 +08:00
auto menu = Menu::create(item1, item3, item2, NULL);
menu->setPosition(Point::ZERO);
2013-07-12 14:11:55 +08:00
item1->setPosition(Point(VisibleRect::center().x - item2->getContentSize().width*2, VisibleRect::bottom().y+item2->getContentSize().height/2));
item2->setPosition(Point(VisibleRect::center().x, VisibleRect::bottom().y+item2->getContentSize().height/2));
item3->setPosition(Point(VisibleRect::center().x + item2->getContentSize().width*2, VisibleRect::bottom().y+item2->getContentSize().height/2));
2012-04-16 18:58:43 +08:00
addChild(menu ,1);
2012-04-16 18:58:43 +08:00
return true;
}
return false;
}
void ControlScene::toExtensionsMainLayer(Object* sender)
{
auto scene = new ExtensionsTestScene();
scene->runThisTest();
scene->release();
}
void ControlScene::previousCallback(Object* sender)
2012-04-16 18:58:43 +08:00
{
Director::getInstance()->replaceScene(ControlSceneManager::sharedControlSceneManager()->previousControlScene());
2012-04-16 18:58:43 +08:00
}
void ControlScene::restartCallback(Object* sender)
2012-04-16 18:58:43 +08:00
{
Director::getInstance()->replaceScene(ControlSceneManager::sharedControlSceneManager()->currentControlScene());
2012-04-16 18:58:43 +08:00
}
void ControlScene::nextCallback(Object* sender)
2012-04-16 18:58:43 +08:00
{
Director::getInstance()->replaceScene(ControlSceneManager::sharedControlSceneManager()->nextControlScene());
2012-04-16 18:58:43 +08:00
}