i breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crashi breakpoint targets->push_back(body); program is crash
void
push_back(const value_type& __x)
{
if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
{
this->_M_impl.construct(this->_M_impl._M_finish, __x);
++this->_M_impl._M_finish;
}
else
_M_insert_aux(end(), __x);
}
void HelloWorld::createTarget(const char *imageName,
CCPoint position,
float rotation,
bool isCircle,
bool isStatic,
bool isEnemy)
{
CCSprite *sprite = CCSprite::spriteWithFile(imageName);
this->addChild(sprite, 1);
b2BodyDef bodyDef;
bodyDef.type = isStatic ? b2_staticBody : b2_dynamicBody;
bodyDef.position.Set((position.x+sprite->getContentSize().width/2.0f)/PTM_RATIO,
(position.y+sprite->getContentSize().height/2.0f)/PTM_RATIO);
bodyDef.angle = CC_DEGREES_TO_RADIANS(rotation);
bodyDef.userData = sprite;
b2Body *body = m_world->CreateBody(&bodyDef);
b2FixtureDef boxDef;
b2Fixture *fixtureTemp;
if (isCircle){
b2CircleShape circle;
boxDef.shape = &circle;
circle.m_radius = sprite->getContentSize().width/2.0f/PTM_RATIO;
fixtureTemp = body->CreateFixture(&circle, 0.5f);
targets->push_back(body);
}
else{
b2PolygonShape box;
boxDef.shape = &box;
box.SetAsBox(sprite->get
().width/2.0f/PTM_RATIO, sprite->getContentSize().height/2.0f/PTM_RATIO);
body->CreateFixture(&box, 0.5f);
targets->push_back(body);
}
if (isEnemy){
fixtureTemp->SetUserData((void*)1); // boxDef.userData = (void*)1;
enemies->push_back(body);
}
}