SFML community forums

Help => Window => Topic started by: Ezbez on August 04, 2009, 11:37:43 pm

Title: ConvertCoords not working as expected
Post by: Ezbez on August 04, 2009, 11:37:43 pm
I'm trying to place a circle at the mouse coordinates. I read in the mouse coordinates and pass them through RenderWindow::ConvertCoords(), and yet my results aren't what I expect. The circle is drawn a constant 1/2 width and 1/2 height down and to the right of the mouse. It does the same if I don't use the ConvertCoords. Here's the code (in PySFML):

Code: [Select]
from PySFML import sf

window = sf.RenderWindow( sf.VideoMode(800,600), "SFML Program" )
input = window.GetInput()

playerGfx = sf.Shape.Circle(400,300, 8, sf.Color.White)

running = True
while running:
event = sf.Event()
while( window.GetEvent(event) ):
if ( event.Type == sf.Event.Closed ):
running = False

mPos = window.ConvertCoords( input.GetMouseX(), input.GetMouseY() )

window.Clear()

playerGfx.SetPosition(mPos[0], mPos[1])
window.Draw( playerGfx )

window.Display()

window.Close()


Am I misunderstanding ConvertCoords or is it misbehaving?
Title: ConvertCoords not working as expected
Post by: Ezbez on August 04, 2009, 11:40:20 pm
Oh man. The instant I post I realize what the problem is. Just gotta change the call to sf.Circle to sf.Circle(0,0, 8, sf.Color.White). Not a problem with ConvertCoords at all!
Title: ConvertCoords not working as expected
Post by: dabo on August 05, 2009, 01:16:25 am
Quote from: "Ezbez"
The instant I post I realize what the problem is.


I'm familiar with that phenomenon, really annoying isen't it :D