SFML community forums
Help => Graphics => Topic started by: zarcel on March 26, 2011, 02:19:50 pm
-
Hi!
I'm newbie at gamedev and I have choosen pong to be my first game. I made simple display of Get.Position for 2 spirites (rectangles) and one shape created using helper class(circle).
I place all things in center of x and in different y's as you can imagine. My problem is that GetPosition for rect's gives me 375 and its correct, while circle gives me 10. What should i do ?
Ofc I mean x variable all the time.
And since I don't wanna start another topic. My performance really dropped down since I put that debug info into game loop. I did it using cout. any ideas to fix it ?
-
I suppose your origins are different. The origin of the sphere probably is the center while the origin of the rects is top left. Use SetOrigin if you do not like them.
As for performance, take out debug statements when you are not using them.
-
Yeah, you are right, I just figured it out by myself, but anyway thx for anwser. As for debug statements I will probably have to delete them.
-
or wrap them in:
#if !defined(_DEBUG).
Or make a function that does nothing when in Release mode - but debuggy-stuff when in Debug. :)
-
#if !defined(_DEBUG).
Or maybe better #ifdef NDEBUG. I am not sure if _DEBUG is standardized.
-
#if !defined(_DEBUG).
Or maybe better #ifdef NDEBUG. I am not sure if _DEBUG is standardized.
I believe VC++ uses _DEBUG and Xcode uses debug. Anyway, #ifndef is easier then bothering with defined.
-
. Anyway, #ifndef is easier then bothering with defined.
Unless of course you want to combine it with anything else.
if !defined(_DEBUG) && !defined(_BETA)
as an example.