Tagged Questions
The game-loop tag has no wiki summary.
11
votes
5answers
3k views
Algorithm for Client-Server Games
For stand alone games, the basic game loop is (source: wikipedia)
while( user doesn't exit )
check for user input
run AI
move enemies
resolve collisions
draw graphics
play sounds
end ...
6
votes
1answer
476 views
Should I always use a Gaming Loop in a Silverlight Game?
I have read about using CompositionTarget.Rendering Timer for the primary gaming loop in silverlight. To be used for hit testing and general game logic as would be done in any language.
This said I ...
4
votes
0answers
73 views
Options available to a programmer on the Main Game Loop [closed]
Could one of you please give me a bit of insight to each one of these 4 topics, I am just a little confused on what it is asking.
I have a good idea on what passive and active rendering are, and ...
2
votes
1answer
347 views
Object movement choppy when frame rate is capped
I've been having some trouble with choppy movement of objects in a game.
If the frame rate isn't capped, the game runs smooth.
If I cap the frame rate at say, 60 fps, the movement is choppy.
An ...
1
vote
3answers
150 views
Simple Game in C# with only native libraries
I could find a set of java 2D game tutorials and android game tutorials which uses only native graphics libraries.
I'm looking for something similar in C# ( without DirectX or XNA)
I found this game ...
1
vote
1answer
67 views
fixed game update cycles [closed]
I've implemented delta time in my game loop so that any fluctuations in frame rate don't matter any more, however won't the game still run faster on faster machines and slower on slow ones?
I was ...
1
vote
1answer
40 views
Practical game animation?
I understand that game development involves a 'game loop', in which the scene is drawn. This game loop either runs as fast as possible (no timer, frame animation) or is called based on a timer (timer ...
0
votes
2answers
52 views
Actionscript without display list (update/draw loop)
I've been working with several different programming languages recently, and I've come to the conclusion that I don't really like the display list in Actionscript. I would much rather have an ...
0
votes
0answers
31 views
How should I go about managing sound, user input, game logic and image synchronization, audio quality and visual quality, in the context of a game?
Any tips on how to approach sound-critical games?
I thought of using high-priority "interrupts" which would play a given Sound at a given timestamp, assuring perfect sound synchronization. These, or ...