1998Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: No Subject -->
<!--X-From-R13: X Q Znjerapr <pynjNhaqre.rate.ftv.pbz> -->
<!--X-Date: Thu, 26 Mar 1998 17:32:11 +0000 -->
<!--X-Message-Id: 199803261732.JAA63608#under,engr.sgi.com -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, No Subject</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:claw#under,engr.sgi.com">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00904.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00906.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00890.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00396.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00905">Author</A>
&nbsp;|&nbsp;<A HREF="#00905">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00905">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>No Subject</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>From</em>: J C Lawrence &lt;<A HREF="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</A>&gt;</LI>
<LI><em>Date</em>: Thu, 26 Mar 1998 09:32:06 -0800</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>

&lt;&lt;Original text was reformatted for readability&gt;&gt;

Date: Thu, 26 Mar 1998 16:24:03 +0100
From: Bert Peers &lt;rat#larian,com&gt;
To: swd#dogstar,mit.edu
Subject: Re: What ship movement info passes from client/server?

Dan Stimits wrote:

&gt; This will sound complicated, but is very easy, and is basically an
&gt; extension of adding the bank.  I don't know if anyone here has ever
&gt; programmed in Postscript (I love this stack based language...too bad
&gt; my printer doesn't), but there is something there called a Bezier
&gt; curve...PEX has support for something similar called a B-Spline
&gt; curve.  B-Splines are very efficient to compute and draw by
&gt; computers, and Bezier curves in Postscript are what power the
&gt; graphics display in NeXT computers.  We could get a tremendous
&gt; smoothness increase in the most lagged net conditions by using
&gt; these.

I'm afraid I don't think this is a good idea... B-Splines are meant to
have an interpolating curve without the RungeKutta oscillating effect
common in polygonal interpolations...  so it makes a great tool for
tracing out be-here-at-time-t points when building an animation, or to
fit surface splines through 3D scanner data to compress surface
descriptions, but I don't feel it's appropriate for this task.

Basically, a spline is just a connected set of locally smooth (C2
continuous) polygonal fragments; so cubic splines are, when seen
through a localizing timewindow, not any different from an ordinary
acceleration-driven cubic motion.  So rather than dealing with splines
you could as well feed an acceleration vector into a dynamic system
and see how the velocity and subsequentially the position change
smoothly.

Besides imho pulling in overkill math, you're also confusing the
client and server issues, if I may say so...  What you want is smooth
out shipmovement on the client side caused by chunky updates from the
server that make your vessel hop whenever lag is too high..  However,
for all you know, the ship *is* moving perfectly smooth on the server,
it's just your client that's having trouble to mimic the movement
onscreen because it's unavoidably lagging (and subsampling) positions.
So providing a less choppy experience is entirely a client issue, and
messing up the communication protocol, or worse yet, the server info
itself, to smooth things out is considered A Very Bad Idea by game
devps.

What you want to do is check out client techniques for nonlinear
predictions.  

Recently some flightsim was released that can be played over the net
at 200 ms lag or even worse; you won't notice as the client is always
predicting where you (and your enemies) are going to, based on current
velocities, and if a new server package arrives that tells the client
that it's assumptions are all wrong, due to unexpected wild behavior,
it interpolates smoothly from the current false position to the real
one in just a few frames, to avoid any planes hopping around, the "huh
?  one sec it's there and now it's over *there* ?!?" effect seen in
Quake.

I think this is what you (perhaps unknowingly) were suggesting, since
that's what a spline really does : based on current interpolated
positions, and on hard continuity constraints, there is only 1 degree
of freedom in placing subsequent trajectory parts, so you can't be off
too much by following the trajectory formed by a good guess...
 Okay, I hope that didn't sound too arrogant :) and maybe it'll help
you look at the better-client problem from the right angle (no pun)

Cya, Bert
<A  HREF="http://www.larian.com/rat">http://www.larian.com/rat</A>

(~~~~~~~~~~~~~~~~~[ WolfPack Developmers' List ]~~~~~~~~~~~~~~~~~~~~~~)

     XShipWars: <A  HREF="http://dogstar.mit.edu/bajor3d/">http://dogstar.mit.edu/bajor3d/</A>
     Bajor3D: <A  HREF="telnet://dogstar.mit.edu:1701">telnet://dogstar.mit.edu:1701</A>
              swserv://dogstar.mit.edu:8472
     IRC: us.austnet.org  Channel: #wolfpack  (Fri, Sat, Sun)

     To unsubscribe, send e-mail to swd-request#dogstar,mit.edu
       with a message body of "unsubscribe"
(_____________________________________________________________________)

-- 
J C Lawrence                               Internet: claw#null,net
(Contractor)                               Internet: coder#ibm,net
---------(*)                     Internet: claw#under,engr.sgi.com
...Honourary Member of Clan McFud -- Teamer's Avenging Monolith...

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00904.html">Re: [MUD-Dev] World Persistence, flat files v/s DB v/s ??</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00906.html">(fwd) Re: Roleplaying</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00890.html">Re: [MUD-Dev] Character development [was Re: ]</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00396.html">DBs and Events</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00905"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00905"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>No Subject</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00743" HREF="msg00743.html">No Subject</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Tue 17 Mar 1998, 19:35 GMT
<UL>
<LI><strong><A NAME="00782" HREF="msg00782.html">Character development [was Re: ]</A></strong>, 
Matt Chatterley <a href="mailto:matt#mpc,dyn.ml.org">matt#mpc,dyn.ml.org</a>, Fri 20 Mar 1998, 09:56 GMT
<UL>
<LI><strong><A NAME="00846" HREF="msg00846.html">Re: [MUD-Dev] Character development [was Re: ]</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Mon 23 Mar 1998, 18:42 GMT
<UL>
<LI><strong><A NAME="00890" HREF="msg00890.html">Re: [MUD-Dev] Character development [was Re: ]</A></strong>, 
Matt Chatterley <a href="mailto:matt#mpc,dyn.ml.org">matt#mpc,dyn.ml.org</a>, Wed 25 Mar 1998, 08:12 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00905" HREF="msg00905.html">No Subject</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Thu 26 Mar 1998, 17:32 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00396" HREF="msg00396.html">DBs and Events</A></strong>, 
Greg Munt <a href="mailto:greg#uni-corn,demon.co.uk">greg#uni-corn,demon.co.uk</a>, Tue 10 Feb 1998, 18:30 GMT
<UL>
<LI><strong><A NAME="00397" HREF="msg00397.html">Re: [MUD-Dev]  DBs and Events</A></strong>, 
Nathan Yospe <a href="mailto:yospe#hawaii,edu">yospe#hawaii,edu</a>, Tue 10 Feb 1998, 19:40 GMT
<UL>
<LI><strong><A NAME="00399" HREF="msg00399.html">Re: [MUD-Dev] DBs and Events</A></strong>, 
Greg Munt <a href="mailto:greg#uni-corn,demon.co.uk">greg#uni-corn,demon.co.uk</a>, Wed 11 Feb 1998, 10:50 GMT
<UL>
<LI><strong><A NAME="00400" HREF="msg00400.html">DBs and Events</A></strong>, 
s001gmu <a href="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</a>, Wed 11 Feb 1998, 14:26 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>