开发者

How to limit framerate in a curses program?

I've been trying to make a game using ncurses. However, I am stumped with how to make the timing part开发者_如何学Go of my main loop work. Would someone be able to add some insight into how I could add framerate code to my main loop, while keeping portability and not compromising speed. Thanks in advance!


The normal way to handle this type of problem I believe is to pass in the duration since the last loop (often called delta) as a parameter to the system. This allows you to update the progress of entities in the game based on the amount of real world time that has passed. For example:

new_position = old_position + delta*speed

This allows entities in your game to move at a constant speed independent of the frame rate of your program.


Assuming you have functionality to update your gamestate after a small period of time, next you need to be able to poll the user for input. If you do not specify otherwise, ncurses will block when you ask for input. To prevent this, look up the init functions here. In particular, the halfdelay() function may be of use of you (it implements a sort of framerate).

Just remember to check for ERR on the return value of getch() when using this mode.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜