2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2011-07-08 11:22:35 +08:00
|
|
|
|
|
|
|
#include "Bug-1159.h"
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
|
2011-07-08 11:22:35 +08:00
|
|
|
bool Bug1159Layer::init()
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
if (BugsTestBase::init())
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-08-16 16:05:27 +08:00
|
|
|
auto s = Director::getInstance()->getWinSize();
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto background = LayerColor::create(Color4B(255, 0, 255, 255));
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(background);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto sprite_a = LayerColor::create(Color4B(255, 0, 0, 255), 700, 700);
|
2014-05-15 01:07:09 +08:00
|
|
|
sprite_a->setAnchorPoint(Vec2(0.5f, 0.5f));
|
2016-04-25 19:43:42 +08:00
|
|
|
sprite_a->setIgnoreAnchorPointForPosition(false);
|
2014-08-28 11:41:18 +08:00
|
|
|
sprite_a->setPosition(0.0f, s.height/2);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(sprite_a);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
sprite_a->runAction(RepeatForever::create(Sequence::create(
|
2014-05-15 01:07:09 +08:00
|
|
|
MoveTo::create(1.0f, Vec2(1024.0f, 384.0f)),
|
|
|
|
MoveTo::create(1.0f, Vec2(0.0f, 384.0f)),
|
2014-07-10 00:45:27 +08:00
|
|
|
nullptr)));
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto sprite_b = LayerColor::create(Color4B(0, 0, 255, 255), 400, 400);
|
2014-05-15 01:07:09 +08:00
|
|
|
sprite_b->setAnchorPoint(Vec2(0.5f, 0.5f));
|
2016-04-25 19:43:42 +08:00
|
|
|
sprite_b->setIgnoreAnchorPointForPosition(false);
|
2014-08-28 11:41:18 +08:00
|
|
|
sprite_b->setPosition(s.width/2, s.height/2);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(sprite_b);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2014-04-09 23:31:05 +08:00
|
|
|
auto label = MenuItemLabel::create(Label::createWithSystemFont("Flip Me", "Helvetica", 24), CC_CALLBACK_1(Bug1159Layer::callBack, this) );
|
2014-07-10 00:45:27 +08:00
|
|
|
auto menu = Menu::create(label, nullptr);
|
2014-08-28 11:41:18 +08:00
|
|
|
menu->setPosition(s.width - 200.0f, 50.0f);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(menu);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
|
|
|
return true;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return false;
|
2011-07-08 11:22:35 +08:00
|
|
|
}
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void Bug1159Layer::callBack(Ref* sender)
|
2011-07-08 11:22:35 +08:00
|
|
|
{
|
2015-04-09 14:59:34 +08:00
|
|
|
Director::getInstance()->replaceScene(TransitionPageTurn::create(1.0f, Bug1159Layer::create(), false));
|
2011-07-08 11:22:35 +08:00
|
|
|
}
|
2012-06-26 11:09:37 +08:00
|
|
|
|
|
|
|
void Bug1159Layer::onExit()
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
BugsTestBase::onExit();
|
2012-06-26 11:09:37 +08:00
|
|
|
}
|