Tagged Questions
2
votes
1answer
61 views
How can I transmit move information from player to player in a web application?
I am trying to create an online chess game using ActionScript and Flex. It works well when I have two players on the same PC, but I want to publish it as a web app. How can I transmit a move or ...
1
vote
2answers
233 views
Actionscript 3: Which side of object is hit?
I have a two objects colliding with each other. I am testing for the collision with if(ob1.hitTestObject(ob2)){//do something }. Is there a way to determine which side of the object was hit, i.e. if ...
5
votes
3answers
346 views
Any Programming Languages Recommendations? A Space shooter game that allows two people to play at the same time?
Do you remember a arcade game, that allow two people to versus or play each other? A Galaga/Gradius type game.
Me and a couple of other people I know wanna make a game like this. We want to get some ...
1
vote
3answers
283 views
Is there an approach in creating an AI Framework?
I am creating a board game using Actionscript 3.0. I've finished it to the point of the game playable with (computer players making random decision). I'm now working to create an AI framework/module ( ...
42
votes
9answers
5k views
What are some programming design patterns that are useful in game development?
I have a few books on Design Patterns, and have read some articles, but cannot intuitively figure out which programming design patterns would be useful in game development.
For example, I have a book ...