2d mmo test

Talk about game designs and what goes behind designing games.
Post Reply
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

2d mmo test

Post by hallsofvallhalla »

User avatar
Jackolantern
Posts: 10891
Joined: Wed Jul 01, 2009 11:00 pm

Re: 2d mmo test

Post by Jackolantern »

Very nice! Are the players transmitting data constantly to the server? One of the biggest data hogs in MMOs is each player seeing what every other player in the area is doing. One way commercial MMOs help with this is through "assumed actions". For example, say you are a warrior standing there, and there are 5 or 6 other players standing around you. One of the players starts heading south. Instead of constantly getting their (x, y) locations sent from the server, all you need is one message to be received: the direction they are facing (such as (3*Math.PI)/2 for vanilla Canvas or something parsed by the client in Impact) and that they are walking. The client would then understand that the player is walking in that direction until it hears otherwise. Then on that other player's client, it is programmed to not resend any data unless the player stops or changes direction. At that point either the new (x, y) can be sent if stopped or a new direction and walking message can be send to sync up. This could cut down on gigantic amounts of bandwidth, and would probably be required for well-populated servers.
The indelible lord of tl;dr
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: 2d mmo test

Post by hallsofvallhalla »

have been testing that method and timed intervals of data packets to get the best method.
User avatar
Jackolantern
Posts: 10891
Joined: Wed Jul 01, 2009 11:00 pm

Re: 2d mmo test

Post by Jackolantern »

Awesome! I bet it does take a ton of testing to get it, right though.
The indelible lord of tl;dr
User avatar
Chris
Posts: 1581
Joined: Wed Sep 30, 2009 7:22 pm

Re: 2d mmo test

Post by Chris »

Awesome!
Fighting for peace is declaring war on war. If you want peace be peaceful.
User avatar
SpiritWebb
Posts: 3107
Joined: Sun Jul 12, 2009 11:25 pm

Re: 2d mmo test

Post by SpiritWebb »

Very nice...
Image

Image
Post Reply

Return to “Game Design”