2012-04-16 18:58:43 +08:00
|
|
|
/*
|
2013-06-20 14:17:10 +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"
|
2012-04-18 13:58:24 +08:00
|
|
|
#include "../ExtensionsTest.h"
|
2012-04-16 18:58:43 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
USING_NS_CC_EXT;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
bool ControlScene::init()
|
2012-04-16 18:58:43 +08:00
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
if (TestCase::init())
|
2012-04-16 18:58:43 +08:00
|
|
|
{
|
|
|
|
// Add the generated background
|
2013-08-16 16:05:27 +08:00
|
|
|
auto background = Sprite::create("extensions/background.png");
|
2012-10-23 17:48:50 +08:00
|
|
|
background->setPosition(VisibleRect::center());
|
2012-04-16 18:58:43 +08:00
|
|
|
addChild(background);
|
|
|
|
|
|
|
|
// Add the ribbon
|
2015-07-15 12:04:48 +08:00
|
|
|
auto ribbon = ui::Scale9Sprite::create("extensions/ribbon.png", Rect(1, 1, 48, 55));
|
2013-07-12 14:30:26 +08:00
|
|
|
ribbon->setContentSize(Size(VisibleRect::getVisibleRect().size.width, 57));
|
2014-08-28 11:41:18 +08:00
|
|
|
ribbon->setPosition(VisibleRect::center().x, VisibleRect::top().y - ribbon->getContentSize().height / 2.0f);
|
2012-04-16 18:58:43 +08:00
|
|
|
addChild(ribbon);
|
2012-04-18 13:58:24 +08:00
|
|
|
|
2012-04-16 18:58:43 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|