The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views

update animation based on time in javascript(independent of frames)

I am implementing a simple animation using javascript in canvas.An image updates its position based on the time elapseddt between each frame. Here is the code var lastTime=0; var speed=100; ...
0
votes
1answer
28 views

Android eglSwapBuffers - manual control? (Android)

My understanding is that eglSwapBuffers is called automatically every frame when using a GLSurfaceview, so: onDrawFrame() { //Your drawing code here //system swaps buffers automatically } is ...
0
votes
1answer
80 views

onDrawFrame, requestRender, and render thread? | OpenGL ES 2.0

i have a problem running my app using an external Thread for game loop in OpenGL ES 2.0. here is my onCreate in my Starting class: @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
51 views

What's the proper way to write a game loop in Python?

I'm trying to write a python game loop that hopefully takes into account FPS. What is the correct way to call the loop? Some of the possibilities I've considered are below. I'm trying not to use a ...
1
vote
1answer
40 views

Issue controlling game frame rate C++

I'm programming a game in C++ and I'm having trouble creating a way so that the game only updates 60 times per second. The code I have written looks like it should work but the frame rate actually ...
0
votes
0answers
37 views

android game surface destroy function

i'm creating andorid game and having problems with starting the game after shuting it down. I somehow managed to program it so that when i hit home key and then start itit works for a few times, but ...
1
vote
0answers
72 views

Android Game loop, Memory and animations

I'm new in Android and i'm developing the Insult Swordfighting of Monkey Island 1, but i'm facing some noob problems :) This is my GameLoop: public class MainThread extends Thread { private static ...
0
votes
2answers
16 views

Prototyped Method not being called correctly

Really annoyed at this engine I'm writing, but that's fine, that's what Stack Overflow is for. So I have all my game "Entities" prototyping from an object: function Scene(name, description) { ...
0
votes
1answer
67 views

Where is the Game loop in andengine when you are using the box2D extention?

Where is the Game loop in andengine when you are using the box2D extention? Without the box2d Extension the game loop is found using this method but when you use the box2d extension that method doesnt ...
0
votes
1answer
28 views

Object Method not Found after setTimeout

LoCEngine.prototype.runGame = function() { // Initiate our game loop ctx.clearRect(0, 0, 800, 600); this.drawScene(this.curScene); if(this.gameRunning) { ...
2
votes
1answer
131 views

create game loop thread

Hi I have just been messing about polygons and awt. I have created a Jframe and can draw the polygons ok and have one of them move with keypresses. I'm wondering how to start a gameloop thread(and ...
3
votes
1answer
143 views

Does “deWiTTERS Game Loop” assume a constant UPS?

I recently tried to get into games programming. I am pretty experienced with Java, but not with game programming. I read http://www.koonsolo.com/news/dewitters-gameloop/ and implemented the game loop ...
1
vote
1answer
90 views

Capping frame - rate

Here is the gameloop code that I have implemented into my Android App. It is working great, but the problem I'm having is that although it's capping logic updates at 30 - the actual rendering runs ...
0
votes
1answer
86 views

Is this a good implementation of the gameloop

I have implemented a gameloop in Flash/Actionscript/Starling and I want to throw it at you to see if this is a valid implementation. I wanted to have a variable time step approach. private var ...
0
votes
1answer
80 views

How to delete same pointer in different std::vector's?

My game's main loop looks like this: std::vector<std::unique_ptr<State>> states; for(size_t i = 0; i < states.size(); i++) { states[i]->Update(); states[i]->Draw(); } ...
2
votes
1answer
225 views

Android OpenGL gameloop outside onDrawFrame

I've got a problem with creating gameloop for my first game. I've read a lot about it but still can't figure it out. It's based on OpenGL so I've used onDrawFrame as a game loop and it works fine on ...
0
votes
2answers
135 views

Creating Game Loop on windows phone?

i want to ask if i want to create agame loop for controling motion in my 2D Silverlight game ( sample game like snake) which will run on Windows Phone , what is the best practice to do this ? i found ...
0
votes
0answers
58 views

NSTimer when score updates resets my UIImages to there original state objective c?

I have just started learning Xcode and objective c, i've made (and published) a few basic apps that work well and i wanted to try my hand at making a game. i've started and so far its been working out ...
0
votes
1answer
454 views

C# System.InvalidOperationException: Object is currently in use elsewhere

I have already seen questions on the same topic but couldn't figure out how to solve this problem. In my game, I am using two threads one Logic thread and the UI thread. This is the problem I'm having ...
1
vote
1answer
100 views

Actor/message-passing within threaded Game “event loop”

I am building an Android application (using Scala 2.9) and am using a Thread that renders to a SurfaceView; this is for a game so it should update as often as it can. I imagine this issue is similar ...
-1
votes
1answer
53 views

Adding an image to frame, not in center, but should be.. + game programming in general

I just started learning game programming, after taking a 1 semester course in the university, so i think im ready and i really want to do this, so first of all: 1) What could be good resources for ...
10
votes
2answers
1k views

android game loop vs updating in the rendering thread

I'm making an android game and am currently not getting the performance I'd like. I have a game loop in its own thread which updates an object's position. The rendering thread will traverse these ...
1
vote
2answers
75 views

Initial states with interpolated fixed time steps

After experimenting a little with variable time steps, I switched to using a fixed time step to update my game objects independently of the current framerate. When things are being rendered, I ...
0
votes
2answers
209 views

HTML5/JS - choppy game loop

I've been trying to make a simple game in HTML5/JS. I've managed to get a basic skeleton ready for the state machine and game loop, but even making a simple rectangle move around results in some ...
1
vote
2answers
421 views

XNA - Update method vs Draw method

I am very much interested to know, what if i put all sprite animation/movement logic inside the Draw method instead of Update method and update method is just manage the touch and other events. 1) ...
2
votes
1answer
99 views

Is there a way to make random ticks in a game loop?

I need random ticks for a game I'm making. Is there a way I could do that? I don't want it based on the tick rate of my game (average 60 ticks per second) because I need random movement for a ...
0
votes
2answers
170 views

LWJGL Display.update() automatically capping FPS to 60

I am trying to get my game's FPS to go to e.g. 100 and even though I correctly call Display.sync(100); The FPS is 60.. Main loop looks like this: int delta = this.getDelta(); this.update(delta); ...
1
vote
2answers
845 views

A simple C# game loop using two threads, is this good? [closed]

I'm creating a simple game using GDI+ in C#. First of all I need a game loop, and a render loop. I've decided to break these in to two seperate threads. It seems to work, and runs extremely fast, but ...
0
votes
0answers
205 views

Efficient Game Loop - Singly-Threaded / Fixed Time Step With Remainder

(For this question, assume I already have functionality that lets me yield to the OS in such a way that I'm negligibly-likely to encounter hitching.) My criteria for a simple game loop are this: ...
0
votes
2answers
445 views

Cocos2D: How to send events between different classes

Most of the tutorials that I've read only explain Cocos2D examples in the HelloWorld class, but as I've started to build a simple game I need to know how to send an event to different classes, and for ...
1
vote
2answers
237 views

Limit draw processing in a game loop

I am using this code structure below from here http://www.koonsolo.com/news/dewitters-gameloop/ to set a game loop that processes based on a set fps but renders/draws at the most possible. How would ...
0
votes
0answers
148 views

Interactive input in Python for a nethack/pong game hybrid

Basically I am trying to build a game of pong that plays in the shell. So far the thing stopping me is the user input. The code has to respond to key presses without having to press Return afterwards. ...
0
votes
1answer
1k views

Smooth Canvas Animation

I'm trying to learn how to create smooth JavaScript animations using HTML5's canvas. For some reason, the animation is not smooth, but kind of "sputtery". You can see the framework I've built on ...
0
votes
0answers
73 views

How to create two way persistence for a game server using Node.js?

Lets say we are building a spaceship game. A few object types would be spaceships, and solar systems. I would like to use Node as the backend. The issue I am having is how to have both these ...
0
votes
1answer
145 views

Show Dialog in Game with canvas when gameover

After finding that starting a new intent might not be the right way to notify user of GameOver, I'm now struggeling with runOnUiThread, Runnable and dialogs.. Question : How and where would I ...
2
votes
5answers
839 views

How to show alert dialog in a running thread?

Im developing an android Game.In this game There are tracks on which trains runs. This is running thread. I want to show alertdialog when there is collision between . when im applying alertdialog ...
2
votes
2answers
369 views

How do I make a php script wait for user input

Here is my problem, for those of you who looked at the title and thought "PHP does not wait on user input because it is a server side language and therefore your problem is a client-side one," just ...
0
votes
3answers
388 views

Game loop in android

I am trying to learn game development in android. First I am trying to appear and disappear an object on screen using game loop for every five second. But I did not get succeed. I have read different ...
0
votes
2answers
184 views

Show and hide object on canvas?

I am developing an Android Games. I have created a canvas on screen. I want to show an object for 2 second on its screen and then it should be disappear. How can I achieve this?
0
votes
1answer
198 views

Creating GameLoop in Android

I am creating an application related to GameLoop in this application if the user clicks the screen an image is drawn on the screen and it moves on the screen with a random speed and also in the random ...
1
vote
2answers
115 views

How to “randomize” animation in main game loop

I have an animation(see video link below) that is apart of an app I'm working on. I basically have fish swimming across the screen. Currently I have an array of about 20 fish each initially positioned ...
1
vote
0answers
271 views

How to efficiently draw 2d with openGl es?

Originally I was using the canvas to draw my bitmaps in a 2d real time action type game, but for some reason my frame rate was terrible. I suspected it was the canvas so I switched to opengl. From ...
0
votes
1answer
124 views

Xna firing(updating) objects from an array one at a time

Okay so i have an array of bullet objects that i want to updae everytime the game loop runs. When the update method is called i want one bullet to fire when i click the mouse or press a key, however ...
0
votes
0answers
138 views

Why is my android game's frame rate fluctuating?

I had a lot of problems with the frame rate for my game, so I decided to run a test. All I did was draw a ball on the screen, and have it move down at a constant velocity. I have a custom surfaceview, ...
4
votes
1answer
98 views

X and Y as float instead of integers

I decided to start working on a project lately, a small 2D game. I already have some gravity working. I'm starting to get better at java but I had never used the java AWT or anything related to ...
1
vote
1answer
145 views

Game loop with multiple objects callback - nothing happens with second Object

I have two classes, both inherited from the same base class. It's for a game loop and depending on which "state" you're in, it should send a pointer to the active object in the CALLBACK method - but ...
0
votes
1answer
1k views

What frames-per-second did NES games like Mario 3 run at? [closed]

It appears to be 60 but I didn't think it was that powerful
2
votes
2answers
291 views

How can I make my circles fly off the screen in pygame?

I am a begginner at python and I'm trying to make a circle game. So far it draws a circle at your mouse with a random color and radius when you click. Next, I would like the circle to fly off the ...
0
votes
2answers
461 views

How to pause loop to wait for button press

I'm trying to create a turn based game using a 1v1 battle for android. My basic game loop checks if the two fighters are dead, if not then checks who is to go next. If its the player's turn then it ...
0
votes
1answer
97 views

XNA Game stack overflow error after 'update' called

Good day everyone, I've been building a cross-platform framework/abstraction layer to target Android, iOS and Windows Phone 7 utilising the Mono and XNA frameworks on the appropriate platforms. I am ...

1 2 3