I'm a beginner in iPhone Application Development and Xcode who is developing a small game which has a slingshot effect Box2d. Currently i need help on moving a body in its respective angles when the sling shot is used. The slingshot effect has been created using the Draw lines technique and a body is placed on it. Yes i know it requires core physics and I'm familiar that it requires components such as Angular Velocity, force, Mass, Time…etc. However i have done quite a bit of research but all in vain.
Now in my project the object moves haphazardly in different directions when the sling shot is used. Have tried all the permutations and combinations and now stuck here. If someone can suggest or answer with a sample code it would be really helpful
Regards,
Karthik
My code
Drawline For my Slingshot:
-(void)draw
{ //NSLog(@"in dra"); //glDisable(GL_TEXTURE_2D); // glDisableClientState(GL_COLOR_ARRAY); // glDisableClientState(GL_TEXTURE_COORD_ARRAY);
_world->DrawDebugData();
glEnable(GL_TEXTURE_2D);
glEnableClientState(GL_COLOR_ARRAY);
// glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glColor4f(0.6, 0.4, 0.2, 1.0);
glLineWidth(4.0f);
//glEnable(GL_LINE_SMOOTH);
ccDrawLine( ccp(80, 75),ccp(pt1,pt2));
ccDrawLine(ccp(pt1,pt2), ccp(240,75));
ccDrawLine(ccp(80,75),ccp(80,0));
ccDrawLine(ccp(240,75),ccp(240,0));
}
Placing the Object on the Sling:
-(void)addsprite2
{ stone=[CCSprite spriteWithFile:@"rock.png"]; stone.position=ccp(160,80); stone.tag=1; [self addChild:stone];
}
Also i'm trying to create and add the angles manually
Angle Creation using if function:
if (stone.position.y < 80 && stone.position.y >= 70)
{
ft = abs(tp2)/PTM_RATIO;
}
else if(stone.position.y < 70 && stone.position.y >=60)
{
ft = (abs(tp2)+90)/PTM_RATIO;
}
else if(stone.position.y < 60 && stone.position.y >= 50)
{
ft = (abs(tp2)+110)/PTM_RATIO;
}
else if(stone.position.y < 50 && stone.position.y >= 40)
{
ft = (abs(tp2)+140)
