3
votes
3answers
152 views
How to return this data in C?
This is a thought problem, and one I have been wrestling with for about a day.
I am writing an engine for a game in C (open source, for fun), and all of the interface (read GUI) e …
32
votes
56answers
2k views
Which programming language is manageable by an 11 year old kid?
Possible Duplicates:
What is the easiest language to start with?
What are some recommended programming resources for pre-teens?
My son is 11 years old and he would like …
7
votes
4answers
169 views
Game Programming - Game architecture question
Hello, recently I have been trying my hand at coding a game in C#. I'm not using XNA for this, as I thought I would learn more if I coded the game from scratch (although I am using …
3
votes
4answers
150 views
questions about game development from web developper’s point of view.
hi folks, i've been making web app's and working with various server side language like php, ruby, perl for a while now. I've always been curious about game development, it's actua …
1
vote
2answers
36 views
How to control sound in a pure DHTML game
I am looking into writing web based games using just Javascript, HTML, and CSS. It seems like there are large classes of games could be done using these technologies, except for o …
4
votes
3answers
110 views
Runge-Kutta (RK4) integration for game physics
Gaffer on Games has a great article about using RK4 integration for better game physics. The implementation is straightforward but the math behind it confuses me. I understand deri …
9
votes
1answer
287 views
Bullet Physics - Apply Torque Impulse in Body’s Local Space
Hello,
I'm currently evaluating the Bullet Physics Library for a 3D space game I'm writing using C++ and Ogre3D. I've gotten Ogre3D and Bullet integrated nicely by deriving from b …
3
votes
3answers
100 views
Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
When you have a multiplayer game where the server is receiving movement (location) information from the client, you want to verify this information as an anti-cheating measure.
Th …
3
votes
0answers
49 views
UDP real-time games in Flash/Flex available Open source RTMFP implementation
Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash c …
1
vote
1answer
97 views
Making a 2D engine: compiling necessary libraries with the engine instead of the game
I'm making a 2D engine in C++, and I want to be able to supply a .dll and a .lib so that games can just include those and everything is fine and dandy.
I've looked at how Ogre doe …
-2
votes
1answer
28 views
CGrectContainPoints & Touches queries
Im getting straight to the point. I have static coordinates stored as array and i want to compare this coordinates with user touch.
//touch handling
UITouch *touch = [[event all …
3
votes
6answers
156 views
Programming Games and Applications/OS
Hello, I am 13 years old and am interested in programming for games. I am currently building an iphone game with Shiva using Lua as the scripting language. After that, I am not sur …
4
votes
3answers
130 views
How does JavaScript memory work in browsers?
When building advanced JS-interfaces and games I've found that I have to dig deeper in to how browsers handles memory for JS. My experience with memory and JavaScript is that the m …
0
votes
5answers
103 views
(Game Engine) Framework Design
Hi there,
I am currently working on 2D browser game.
After putting the ZendFramework away, my team and I decided to write our own framework.
Now we are helpless, because none of …
0
votes
2answers
52 views
Static data on iphone c++
I have data for countries which include Name, Population, Area etc for countries...
What is the best way to store them, I was thinking of static arrays in header files ...?
I am …
