1
vote
4answers
475 views
SetCursor reverts after a mouse move
I am using SetCursor to set the system cursor to my own image. The code looks something like this:
// member on some class
HCURSOR _cursor;
// at init time
_cursor = LoadCursorFrom …
2
votes
The value of hobby game development
If you are looking to get a job in game development, you should absolutely be doing some hobby development on the side while you look. Being able to send a more-or-less complete game along with yo …
1
vote
SetCursor reverts after a mouse move
It seems that I have two options. The first is the one that Mark Ransom suggested here, which is to respond to the windows WM_SETCURSOR message and call SetCursor at that time based on …
0
votes
What kind of programming environment do you use to write your Windows-based Games?
At Flying Lab for Pirates of the Burning Sea we used Visual Studio 2005. At Divide by Zero for we use Visual Studio 2008.
…
3
votes
What is the best free cross-platform OpenGL GUI library for a video game?
We are using CEGUI, but I can't say I'm all that impressed. It's so complex that it is difficult to debug, even for simple things.
If you're willing to pay for a GUI library I've heard good …
3
votes
Suggest logic to handle freeform movement over tile based system
It wasn't clear from your question, but the approach I would use is different depending on whether your game is in 2D or 3D.
For a 2D game, you would be best off using pixels as your coordi …
1
vote
Game Logic in XML Files
Unless your game will have less than half a dozen unique dialogs, you should definitely put this information in some kind of data file. XML is a strong contender for the format. I don't speak Ruby, …
