Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
3k views

Lua, game state and game loop

Call main.lua script at each game loop iteration - is it good or bad design? How does it affect on the performance (relatively)? Maintain game state from a. C++ host-program or b. from Lua scripts or ...
6
votes
6answers
972 views

Help with game development. Render loop?

I'm working on a simple game, this is my first game project. Most of the samples I find have a Render Loop where all the game logic is made too and I just don't like this. Let's say I have a ball ...
4
votes
4answers
83 views

Avoiding game loop in XNA 4.0

I developing a simple 3D model viewer on XNA 4.0. Is there a way to avoid a infinite game loop with Draw and Update functions? I need render 3D graphics, but without infinite rendering of scene. I ...
4
votes
1answer
369 views

Is this a good implementation of a FPS independant game loop?

I currently have something close to the following implementation of a FPS independent game loop for physics based games. It works very well on just about every computer I have tested it on, keeping ...
4
votes
3answers
271 views

Is there a better way to make console games than with Console.Clear()?

I'm messing around with game loops and going to create some games as practice. Currently I have a steady game loop up where the game is updated as fast as possible and the rendering is updated x ...
3
votes
2answers
135 views

String compare vs Class compare in objective-C

I'm writing an objective-C game and I'm at the stage where i should start optimising some of my code in the game loops. I have an extensive amount of class compare methods used, if ([obj ...
3
votes
4answers
211 views

Functional Alternative to Game Loop

I'm just starting out with the Scala and am trying a little toy program - in this case a text based TicTacToe. I wrote a working version based on what I know about scala, but noticed it was mostly ...
3
votes
2answers
1k views

Constant game speed independent of variable FPS in OpenGL with GLUT?

I've been reading Koen Witters detailed article about different game loop solutions but I'm having some problems implementing the last one with GLUT, which is the recommended one. After reading a ...
3
votes
2answers
429 views

Are there best practices for implementing an asynchronous game engine loop?

I have implemented a game engine loop as follows: public static Boolean Start ( ) { if (hasBoard) { // start engine on worker thread asyncTask = new AsyncResult ( stopEngine, ...
3
votes
2answers
350 views

How do I get a consistent speed on new as well as old iPhones?

I'm in the process of creating a 2D game in OpenGL ES for the iPhone. I'm calling my game loop using NSTimer at an interval of 0.002 (60 fps) with repeats set to 'NO' (I'm running the NSTimer again ...
3
votes
3answers
741 views

DirectX: Game loop order, draw first and then handle input?

I was just reading through the DirectX documentation and encountered something interesting in the page for IDirect3DDevice9::BeginScene : To enable maximal parallelism between the CPU and the ...
3
votes
4answers
469 views

Game loop performance and component approach

I have an idea of organising a game loop. I have some doubts about performance. May be there are better ways of doing things. Consider you have an array of game components. They all are called to do ...
2
votes
1answer
225 views

GameLoop checking for input (Android/GlSurfaceView)

If I have some basic game loop in a thread, like this: public void run(){ getInput(); //onTouchEvent method is only available in view class. updateState(); renderScreen(); } I ...
2
votes
4answers
217 views

Biggest beef with game loops

What do you hate most about the modern game loop? Can the game loop be improved or is there just a better alternative, such as an event-driven architecture?
2
votes
2answers
1k views

Allegro 5 game: game loop that runs at constant speed?

What is the best way to code a game loop in Allegro 5 that always runs at the same speed, and that properly separates drawing logic from update logic? Should I use threads or not? Should I make use of ...
2
votes
1answer
1k views

iPhone Gameloop render update from a separate thread

I'm new to iPhone development. I have a game loop setup as follows. (void)CreateGameTick:(NSTimeInterval) in_time { [NSThread detachNewThreadSelector:@selector(GameTick) toTarget:self ...
1
vote
1answer
220 views

Android game loop timing discrepancy

I have been working on my first game ever :) It is a android based game using libgdx and is using a modified example of one the DeWiTTERS loop The game loop seems to work perfectly fine running on ...
1
vote
1answer
157 views

requestRender doesn't seem to render (opengl-es android)

I have a gameloop running in a thread, my problem is that the mGLSurfaceView.requestRender(); crashes with a null pointer exception. I have a log tag in my onSurfaceCreated method which proves ...
1
vote
2answers
290 views

Why can't my SurfaceView's game loop run a decent FPS?

I've cobbled together a simple game loop, mostly using the techniques that seem be be prevelent, particually in the Killer Game Programming in Java book and in this tutorial I just found: Here Just a ...
1
vote
1answer
185 views

Some questions regarding game loop, tick and real time programming

First I want to apologize for my approximate English, as I'm French. I'm currently making a real-time game in java, using LWJGL. I have some questions regarding game loops : I'm running the ...
1
vote
4answers
270 views

Handling the game loop with OS timers

A simple game loop runs somewhat like this: MSG msg; while (running){ if (PeekMessage(&msg, hWnd, 0, 0, PM_REMOVE)){ TranslateMessage(&msg); DispatchMessage(&msg); ...
1
vote
1answer
313 views

Android gameLoop using SurfaceView; quickly changing camera 'shots' results in black flashes, etc

I built a simple game engine using SurfaceView. I use a RectF as a 'camera' window, to represent the scaled pixel width and height of the SurfaceView canvas, and to figure out what is on screen. I ...
1
vote
1answer
5k views

Pausing a Thread - Activity pause timeout for HistoryRecord

I'm trying to write a game engine in Android, but I don't have much familiarity with threads. My thread has an attribute, mSurfaceHolder, which holds the surface that I'll be drawing to. The run() ...
1
vote
1answer
1k views

Game loop and time tracking

Maybe I'm just an idiot, but I've been trying to implement a game loop all day and it's just not clicking. I've read literally every article I could find on Google, but the problem is that they all ...
1
vote
2answers
939 views

Time-efficient Gameloop in J2ME

I've done a series of questions about J2ME Game developing, and in a recent one, Neil Coffey commented As a side issue-- do you REALLY want to do 100 ticks/second in a J2ME game? As I think sb ...
0
votes
1answer
38 views

Seeking help in a basic, bare bones method of creating a 2D OpenGL-ES 2.0 Game

I have made many Android applications that use Java code and the XML layouts, however I am very new to OpenGL ES. I have programmed games in Swing Java, including pong, and an intermediate level 2d ...
0
votes
4answers
105 views

I want to force a render, but only draw as fast as possible (InvalidateVisual / CompositionTarget.Rendering)

I'm working on a real-time WPF/Silverlight (and soon WP7) visualization component and I'm looking for the best solution to force a redraw of the entire component in a Game-loop style. Redraw should be ...
0
votes
2answers
64 views

What is wrong with this applet gameloop?

It seems like this applet will only draw and update DRAWS when the window is resized or minimized. So the applet will not repaint all the time, but only when manipulating the window. Am I doing ...
0
votes
0answers
102 views

Android gameloop, update and draw seperate or not?

I'm just picking up android development to make a game. Touched it before, but only picked up the basics. I'm a bit confused how to set up a main loop. I've been into XNA (C#) and I love the seperated ...
0
votes
1answer
147 views

Android-null pointer exception after onResume in game loop

I am working on an android game.I was the facing the same issue as here I tried the wait and notify all solution as shown over there.But as soon the app resumes i get Null pointer exception. Here is ...
0
votes
1answer
58 views

Adding a CADisplayLink to Cocos2D

I have Cocos2D in my app and I use it as the game engine for my game. At this point I need to have a game loop fire at the rate the screen refreshes. So this leads me to think that I need to use ...
0
votes
1answer
128 views

When in android should I place main game loop in the initial activity class?

I'm trying to create a game loop using this tutorial. I have tried to implement this in the initial activity class as shown below but I have run into a few problems. I have requested the fullcreen ...
0
votes
1answer
385 views

Opengl-es calling onDrawFrame manually

I am creating a game loop and I need to be able to call onDrawFrame (from inside the renderer manually) in order to "skip frames" if I find that I am falling behind on processes. Currently I have a ...
0
votes
2answers
182 views

HTML 5 efficient drawing on canvas for game

I am attempting to develop a game with canvas element. Right now, I am drawing tiles (colored squares) as the background, and the hero controlled by arrow keys based off of this demo: ...
0
votes
1answer
248 views

Approach for Android game with timers and touch event (move) handling

I'm doing a game with game loop and active rendering (using SurfaceView and SurfaceHolder.Callback). I'm wondering how to make that work together with timed events and touch event management. The ...
0
votes
1answer
223 views

No touches being triggered!

OK, I guess my previous question wasn't in detail. I'm providing more details. Before posting full source code I have to ask if my question: My question is Why the following program doesn't call ...
0
votes
3answers
1k views

Game Loop and GDI over .NET CF

Hi i want to write a game with a main game form and lot of other normal forms. What is the best way to manage update-paint cycle in that case? Should the game form paint loop only should be ...
-1
votes
2answers
299 views

Creating a game loop (sleep time help)

I've been using this tutorial to create a game loop. In the section marked "FPS dependent on Constant Game Speed" there is some example code that includes a Sleep command I googled the equivalent in ...
-4
votes
2answers
694 views

C++ QueryPerformanceCounter and QueryPerformanceFrequency

I have been attempting to create a timer for my game... and i heard about QueryPerformanceCounter and QueryPerformanceFrequency could someone please explain how these can be used to calculate ...