Tagged Questions
1
vote
2answers
249 views
Packet handling system architecture?
I'm working on a multiplayer Flash game (ActionScript 3) with an accompanying server written in Python and I'd like some tips regarding networking, and specifically, the handling of packets and ...
3
votes
0answers
542 views
Strange Flash AS3 xml Socket behavior
I have a problem which I can't understand.
To understand it I wrote a socket client on AS3 and a server on python/twisted, you can see the code of both applications below.
Let's launch two clients ...
0
votes
1answer
504 views
Lag compensation of projectile shooting game
I'm thinking about an algorithm for firing projectiles with lag compensation. Now I did find only one descent solution:
Player hits fire button.
Client sends input "fire".
Client waits for server ...
0
votes
3answers
945 views
LAN game in Actionscript 3
I know this may be a somewhat dumb idea, but is there any "easy" resource that anyone can point me towards that shows how to set up a simple LAN connection in an Actionscript application? I only need ...
3
votes
3answers
2k views
Multiplayer API with Unity 3.5 and AS3
On the faq for the current preview release, http://unity3d.com/unity/preview/faq it says that while networking is not currently supported for flash compilation, we can write our own in AS3 using the ...
1
vote
4answers
852 views
Client server design question
I'm working on creating a multiplayer game, with the client in ActionScript and the server written in Java. I'm using XMLSocket in the client to connect to the server. The server code looks something ...