0
votes
5answers
265 views
How to design a timer-based web game (like Cafe World)
I need to design and implement a timer-based game (Flash on client, PHP on server), like Cafe World, i.e. user clicks on a button, waits a few seconds, something happens, and then he can click again. …
4
votes
9answers
511 views
Help in choosing a 3D game engine
I am not new to programming, I am quite good in C++, Windows SDK , VC++; but I am new to game development .
I want to start this as a hobby in developing a desktop game . I have found several …
3
votes
6answers
73 views
OO design and mirrored/duplicated methods
Hi everyone! I'm having an issue in OO design where I end up with duplicate code in 2 different classes. Here's what's going on:
In this example, I want to detect collision between game objects.
I …
2
votes
7answers
844 views
Links for simple game algorithms
I was reading that question and I remember of the Wikipedia list of algorithms. I know that Wikipedia have a list of Open Source games too, but what I want is a links for simple game algorithms, even …
3
votes
2answers
124 views
Resources for UnrealScript
Now that the Unreal Development Kit is out and free to use by anyone, I am pretty excited to try it out. My understanding is that the programming is done through scripting in UnrealScript, I am …
0
votes
4answers
84 views
Logic / Probability Question: Picking from a bag
I'm coding a board game where there is a bag of possible pieces. Each turn, players remove randomly selected pieces from the bag according to certain rules.
For my implementation, it may be easier to …
0
votes
7answers
122 views
Requirements for a game
I'm writing an iPhone game and I am trying to write some requirements documents. I have never written requirements before so I got the book Software Requirements. I have not finished it yet, but I …
1
vote
1answer
86 views
Overlay 2d weapon sprite over character sprite ?
Hello, I'm working on a game where my character needs to be able to have different weapons. For that I think that somehow overlaying the weapon over the moving sprite would be the correct choice, but …
1
vote
3answers
391 views
C# game design - main loop aborting - A better way than Abort() and ResetAbort()?
i have some C# threading program (a game), that stops with a boolean (as most articles recommends).
while (gameContinueRun)
{
createRound();
line1;
line2;
line3;
line4;
endRound();
}
…
2
votes
3answers
93 views
Tile-based Game Engine or Framework for the iPhone?
I'm planning to build a simple tile-based RTS (Real-Time Strategy) game for the iPhone and iPod touch.
Is there an existing game engine or framework that I could use? If so, where can I find it?
3
votes
4answers
232 views
What language features are needed for game scripting?
I am looking into designing a game scripting language and was wondering what people employed in the games industry considered essential items/properties for a good game scripting language. This …
6
votes
6answers
302 views
Self-regulation of a mini economy
Hello!
At first: I'm not sure if it's an adequate question for Stack Overflow. It's not just about programming, it's about game design. But I'll try it ...
I would like to deal with "Possibilities …
2
votes
7answers
199 views
How to implement connected rooms?
This may be a duplicate question as I don't know to phrase the search query. I'm creating a Zork-like text based game in Java where the character moves to different rooms which are connected to each …
3
votes
8answers
190 views
Howto avoid people from having multiple accounts in a free to play multiplayer game? [closed]
Possible Duplicate:
Prevent users from starting multiple accounts?
Imagine you develop a free to play multiplayer game. It is free to create an account. Now, having multiple accounts would …
5
votes
5answers
408 views
Looking for good server-side language that will allow players to upload code that can be executed
I had an idea of a program I want to write, but which language would be best is my problem.
If I have a car racing game and I want to allow users to submit code for new interactive 3D race tracks …
