2011-07-08 11:22:35 +08:00
|
|
|
//
|
|
|
|
// Bug-422 test case by lhunath
|
|
|
|
// http://code.google.com/p/cocos2d-iphone/issues/detail?id=422
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Bug-422.h"
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
|
2011-07-08 11:22:35 +08:00
|
|
|
bool Bug422Layer::init()
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
if (BugsTestBase::init())
|
2011-07-08 11:22:35 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
reset();
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void Bug422Layer::reset()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
static int localtag = 0;
|
|
|
|
localtag++;
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// TO TRIGGER THE BUG:
|
|
|
|
// remove the itself from parent from an action
|
|
|
|
// The menu will be removed, but the instance will be alive
|
|
|
|
// and then a new node will be allocated occupying the memory.
|
|
|
|
// => CRASH BOOM BANG
|
2013-08-16 16:05:27 +08:00
|
|
|
auto node = getChildByTag(localtag-1);
|
2013-07-24 06:20:22 +08:00
|
|
|
log("Menu: %p", node);
|
2013-10-24 17:28:51 +08:00
|
|
|
removeChild(node, true);
|
2012-04-19 14:35:52 +08:00
|
|
|
// [self removeChildByTag:localtag-1 cleanup:NO];
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto item1 = MenuItemFont::create("One", CC_CALLBACK_1(Bug422Layer::menuCallback, this) );
|
2013-07-24 06:20:22 +08:00
|
|
|
log("MenuItemFont: %p", item1);
|
2013-06-20 14:17:10 +08:00
|
|
|
MenuItem *item2 = MenuItemFont::create("Two", CC_CALLBACK_1(Bug422Layer::menuCallback, this) );
|
2014-07-10 00:45:27 +08:00
|
|
|
auto menu = Menu::create(item1, item2, nullptr);
|
2012-04-19 14:35:52 +08:00
|
|
|
menu->alignItemsVertically();
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
float x = CCRANDOM_0_1() * 50;
|
|
|
|
float y = CCRANDOM_0_1() * 50;
|
2014-05-15 01:07:09 +08:00
|
|
|
menu->setPosition(menu->getPosition() + Vec2(x,y));
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(menu, 0, localtag);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
|
|
|
//[self check:self];
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void Bug422Layer::check(Node* t)
|
2011-07-08 11:22:35 +08:00
|
|
|
{
|
2013-12-17 17:45:29 +08:00
|
|
|
auto& children = t->getChildren();
|
2013-12-20 05:34:41 +08:00
|
|
|
for(const auto &child : children) {
|
2014-01-22 13:47:29 +08:00
|
|
|
log("%p, rc: %d", child, child->getReferenceCount());
|
2013-11-28 18:23:06 +08:00
|
|
|
check(child);
|
2013-12-20 05:34:41 +08:00
|
|
|
}
|
2011-07-08 11:22:35 +08:00
|
|
|
}
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void Bug422Layer::menuCallback(Ref* sender)
|
2011-07-08 11:22:35 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
reset();
|
2011-07-08 11:22:35 +08:00
|
|
|
}
|