2
votes
2answers
61 views
javascript game framework
Nowadays with <canvas>, it is easy to find all kind of cool stuff around the net. Like emulators, demos, games, just visual stuff, etc.
But it seems that everyone is programming using the basic …
0
votes
2answers
48 views
Unreal engine 3 vs Id tech 3 vs Unity
I'm trying to decide which engine I should start using to try to start building a game in.
I had chosen Unity, but upon hearing that Unreal engine 3 had just become kinda free to use, I found myself …
3
votes
6answers
214 views
Insightful resources for game engine architecture?
I am looking for resources that describe, in detail, the design decisions involved in game engine architecture. I am especially looking for analysis of the pros and cons of different design decisions …
2
votes
6answers
141 views
Hiding objects that obscure the player in a 3D scene
I'm designing a 3D game with a camera not entirely unlike that in The Sims and I want to prevent the player character from being hidden behind objects, including walls, pillars and other objects.
One …
-3
votes
4answers
144 views
Game Development & Artificial Intelligence With PHP
Hello All,
A friend of mine told me that it is possible to even create games with PHP.
Is that really possible?
Can we implement artificial intelligence using PHP?
Looking for your ideas.
…
2
votes
5answers
809 views
Scoring Poker Hands with Deuces Wild
I'm looking for code or a description of an algorithm for determining the score of a poker hand when deuces are wild. I'd like code that is not encumbered by license fees, GPL, patents, etc.
I know …
2
votes
3answers
122 views
Simple, efficient weak pointer that is set to NULL when target memory is deallocated
Is there a simple, efficient weak/guarded pointer? I need multiple pointers to the same object that are all automatically set to NULL when the object is deleted. There is one "master" pointer that is …
9
votes
7answers
349 views
Faster math algorithm sacrificing accuracy
Hi, I am developing a game that calls so many math functions for physics and rendering. "Fast inverse sqrt" used in Quake3 is known to be faster than sqrt() and its background is beautiful.
Do you …
0
votes
1answer
26 views
Does clipRect parameter of the BitmapData.draw method really clips the source?
The documentation says that clipRect parameter of the BitmapData.draw method sets clipping for the source. Reading this I wrote an AnimatedObject class for my potential flash game. This class draws a …
12
votes
13answers
2k views
Viability of C#/.NET as the new standard game dev platform?
For a long time now C++ has been the dominate game development language. Many AAA quality 3D engines are available to fit any budget.
My question is, with the rise of XNA, has C# and the .NET …
1
vote
3answers
88 views
How to implement AI for Puyo Puyo game?
Can someone give me some pointers on how I should implement the artificial intelligence (human vs. computer gameplay) for a Puyo Puyo game? Is this project even worth pursuing?
The point of the game …
1
vote
4answers
207 views
Persistent connections between Flash client and Java server
I'm new to Flash.
I'm planning to create a game client in Flash (running in browser) that needs to talk to a server written in Java. Connection between client and server needs to be persistent.
I'm …
2
votes
4answers
103 views
Real Time Strategy Game Programming Books or Tutorials
I'm coding a simple RTS game as a hobbie, and to learn about pathfinding algorithms, a*, strategies, flocking, etc.
I think I'm doing fine so far, but now that I have completed about 50% of the goals …
3
votes
4answers
174 views
How to implement collision effects in a game ?
I building a game with QT. Every objects on my GraphicsScene inherits from GraphicsPixmapItem (Player, Obstacles, bombs...). I would like to implment collision effects. For example when the player …
0
votes
1answer
28 views
Bitmap compare method on the iPhone (unity3d)
Hi. What would be the best method to compare 2 bitmaps and get the correlation between the 2 (0 being completely different and 1 being exactly the same) in Unity3d on the iPhone? I am using C# since …
