What does the histogram represent?

Moderators: GSH, VSMIT, Red Devil, Commando

Post Reply
AcneVulgaris
Thunderbolt
Posts: 174
Joined: Fri Mar 18, 2011 9:01 pm

What does the histogram represent?

Post by AcneVulgaris »

I am working on a multiplayer game, and am building a little UI to display the quality of the network connection on the client. I remembered that BZ2 had a histogram you could enable from the console, and I was wondering what exactly it represented.
User avatar
Zero Angel
Attila
Posts: 1536
Joined: Mon Feb 21, 2011 12:54 am
Contact:

Re: What does the histogram represent?

Post by Zero Angel »

One of the histogram bars represents your framerate, the other one has to do with your network connection (ie: packets recieved/transmitted), and then there's a bunch of technical stuff about the lockstep, local turn, etc.
appel
Drunken Constructor
Posts: 30
Joined: Wed Jun 15, 2011 9:57 am

Re: What does the histogram represent?

Post by appel »

Lockstep is the network strategy to synchronize multiplayer game state. In every step, which is a period of few milliseconds (dependent on latency), a client receives from server a set of commands to execute in 2nd next step. The client uses this to simulate the world, and extrapolate animations, physics etc. All clients are supposed to execute the same turn at the same time. Lag is pain :) You can see in that histogram information about the steps (or turns).

It's a very popular way of doing networking in games, and I've done it once.

I'm sure GSH can provide a more useful insight.
User avatar
Nielk1
Flying Mauler
Posts: 2991
Joined: Fri Feb 18, 2011 10:35 pm
Contact:

Re: What does the histogram represent?

Post by Nielk1 »

BZ2 uses the RTS style of networking which is why it has many niggles with the FPS aspects in multiplayer. This information might help you understand BZ2's histogram.

The game sends a game state that is basicly a save of the entire mission to remove players on join or resync, both sides only transmit a minimal amount of data between each other otherwise such as orders or user inputs. As a result, all sides attempt to simulate the exact same actions and if they go out of sync, resync. These worlds must exist at the same time, doing the same things, moving on in lockstep, hence the term. Nice thing with BZ2 is the resync, many RTS games would just eject the other player.

You can sort of think of RTS MP logic sort of like playing chess my mail sending all your movements back and forth.

FPS games handle this differently.
AcneVulgaris
Thunderbolt
Posts: 174
Joined: Fri Mar 18, 2011 9:01 pm

Re: What does the histogram represent?

Post by AcneVulgaris »

Thanks for the info, everybody.
User avatar
Red Devil
Recycler
Posts: 4398
Joined: Fri Feb 18, 2011 5:10 pm
Location: High in the Rocky Mountains

Re: What does the histogram represent?

Post by Red Devil »

it actually reflects the status of the wormhole between Core and Elysium
User avatar
Ded10c
Recycler
Posts: 3815
Joined: Sun Feb 20, 2011 11:05 am
Location: Stoke-on-Trent
Contact:

Re: What does the histogram represent?

Post by Ded10c »

Red Devil wrote:it actually reflects the status of the wormhole between Core and Elysium
I wasn't aware there was one.
User avatar
Zax
Attila
Posts: 1388
Joined: Sat Feb 19, 2011 6:56 am

Re: What does the histogram represent?

Post by Zax »

AHadley wrote:
Red Devil wrote:it actually reflects the status of the wormhole between Core and Elysium
I wasn't aware there was one.
Neither was anyone else, thanks RD.
Post Reply