Tagged Questions
2
votes
1answer
87 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
504 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
570 views
Programming Languages Recommendations: A Space shooter game that allows two people to play [closed]
Do you remember an arcade game, that allowed two people to versus or play each other? It was a Galaga/Gradius type game.
Me and a couple of other people I know want to make a game like this. We want ...
1
vote
3answers
407 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 ( ...
54
votes
9answers
12k views
What are some programming design patterns that are useful in game development? [closed]
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 ...