[MUD-Dev] Ticks?

Daniel.Harman at barclayscapital.com Daniel.Harman at barclayscapital.com
Fri Jun 14 17:18:15 CEST 2002


From: Draymoor a Vin il'Rogina

> Speaking of graphical muds, it seems like interpolated HP updates
> might cause a problem there anyway. Currently in my own mud, I was
> planning on sending updates to the client whenever a player's
> vital stats (HP, Fatigue, etc) changed. If interpolation was used,
> it seems a catch 22 would be created. HP doesn't heal until
> accessed, and it's not accessed until it's changed. You'd never
> heal. Would there be any way to make this work?

Actually I disagree that this is a problem. When writing a big game,
you need to be acutely aware of how you are traffic shaping your
bandwidth. You don't really want packets to be completely event
driven, and this lets you decouple client updates from server
updates. For every client, you can schedule how often you send them
updates on their hp (and other things like mob location) based on
factors like whether they are in combat, server bandwith
utilisation, their preference (subscription level?!), the list goes
on...

So yeah, you'd end up with yet another scheduler, but in return
you'd get an awful lot of power.

Dan
_______________________________________________
MUD-Dev mailing list
MUD-Dev at kanga.nu
https://www.kanga.nu/lists/listinfo/mud-dev



More information about the mud-dev-archive mailing list