SFML - Sprite position and movement

Started by
2 comments, last by MilchoPenchev 11 years, 3 months ago
Hi, just a quick question. I am trying to make the player in a 2D game seen from above look at the mouse cursor as an aiming system. I have a pHd in maths, so I'm pretty clear how to use vectors and tan-1 to get a rotational angle, but the problem is that when I try to find my sprite's position by using sprite.getPosition() I only get 0 for X and for Y. the only problem I can think of is that SFML might be using a relative position to the start, but after starting it on 0,0 and movin it to the center of the screen, the problem persists. How can I get the sprite's position in my window so I can measure a vector. You could also explain how to find the vector in case someone in need reads this topic.

Oh, and one last thing, how can I do so my player can move diagonally when UP and RIGHT are pressed for example. I'm not keen on just having 4 direction movement. I have tried using && to check for both keys, but it doesnt work.
Advertisement

This is a copy of my CheckInput() method from my Smash PC Game (detailed in my old Blog, linked in my Signature). It will set the velocity of the player depending on the keys pressed (and it handles diagonal), as well as faces the player towards the mouse using SFML. It uses atan2 to find it based on the location of player and mouse, not a vector.

Also, assume Utilities::KeyIsDown(), just checks a sf::Input::IsKeyDown() or IsMouseButtonDown()

/******************************************************************************
*
* CheckInput() - Check for input and handle accordingly
*
******************************************************************************/
void SmashPcPlayer::CheckInput(void)
{
const sf::Input& Input = mpApp->GetInput();
cpFloat xForce = 0, yForce = 0;
cpVect Vel;
SmashPcBullet *pBullet = NULL;
// Set all forces to 0
mpBody->f = cpvzero;
Vel = cpBodyGetVel(mpBody);
// We'll just assign velocities to a hardcoded value for now
if (Utilities::KeyIsDown(Input, GAME_KEY_LEFT))
xForce -= PLAYER_FORCE;
else if (Vel.x < 0.01f)
mpBody->v.x = 0;
if (Utilities::KeyIsDown(Input, GAME_KEY_RIGHT))
xForce += PLAYER_FORCE;
else if (Vel.x > 0.01f)
mpBody->v.x = 0;
if (Utilities::KeyIsDown(Input, GAME_KEY_DOWN))
yForce += PLAYER_FORCE;
else if (Vel.y > 0.01f)
mpBody->v.y = 0;
if (Utilities::KeyIsDown(Input, GAME_KEY_UP))
yForce -= PLAYER_FORCE;
else if (Vel.y < 0.01f)
mpBody->v.y = 0;
mpBody->f = cpv(xForce, yForce);
// Check for fire
if (Utilities::KeyIsDown(Input, GAME_KEY_FIRE))
{
pBullet = mpWeapon->FireBullet(mpBody, TRUE);
if (pBullet)
{
mGameData.AddActiveBullet(pBullet);
}
}
else if (Utilities::KeyIsDown(Input, GAME_KEY_SPECIAL_FIRE))
{
// Handle later
}
// Check for user choosing weapon (number pad)
sf::Key::Code KeyDown = Utilities::CheckKeyRange(
Input, sf::Key::Num1, sf::Key::Num9);
if (KeyDown != sf::Key::Count)
{
std::string BulletToUse;
mpWeapon->GetBulletName((U32)(KeyDown - sf::Key::Num1), BulletToUse);
mpWeapon->SelectBullet((U32)(KeyDown - sf::Key::Num1));
}
// Finally, find location of Mouse and point player towards it
cpFloat MouseX = (cpFloat)Input.GetMouseX();
cpFloat MouseY = (cpFloat)Input.GetMouseY();
cpFloat Angle = atan2(MouseY - (cpFloat)(mpApp->GetHeight()/2),
MouseX - (cpFloat)(mpApp->GetWidth()/2));
cpBodySetAngle(mpBody, Angle);
return;
}

My Gamedev Journal: 2D Game Making, the Easy Way

---(Old Blog, still has good info): 2dGameMaking
-----
"No one ever posts on that message board; it's too crowded." - Yoga Berra (sorta)

Good answer BeerNuts, I was expecting a simple concept, but by looking at your code, I can actually see how you have done the movement by having cummulative x and y forces.

Anyways, can anyone actually answer my first problem ( how to get the real position of the object relatively to the game window ) as the normal functions aren't doing the work

Good answer BeerNuts, I was expecting a simple concept, but by looking at your code, I can actually see how you have done the movement by having cummulative x and y forces.

Anyways, can anyone actually answer my first problem ( how to get the real position of the object relatively to the game window ) as the normal functions aren't doing the work

sf::Spirte::getPosition returns the absolute position of the sprite in the world - not necessarily the window. The window displays a sf::View - which is normally exactly the size of the window.

Bottom line, sf::Sprite::getPosition should return the position. Perhaps if you post your code we could see what else could be affecting it. (in SFML2 there's an origin which can affect position)

This topic is closed to new replies.

Advertisement