Track more objects!

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3091 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-08-23 21:05:04 +00:00
parent bfc0fbcd3e
commit a2ae7d499d
14 changed files with 42 additions and 42 deletions
@@ -1,11 +1,11 @@
//
// $Id: SceneModel.java,v 1.9 2003/02/12 07:23:31 mdb Exp $
// $Id: SceneModel.java,v 1.10 2004/08/23 21:05:04 mdb Exp $
package com.threerings.whirled.data;
import com.samskivert.util.ArrayUtil;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
/**
* The scene model is the bare bones representation of the data for a
@@ -16,7 +16,7 @@ import com.threerings.io.SimpleStreamableObject;
* what is transmitted over the wire when communicating scenes from the
* server to the client.
*/
public class SceneModel extends SimpleStreamableObject
public class SceneModel extends TrackedStreamableObject
implements Cloneable
{
/** This scene's unique identifier. */
@@ -1,15 +1,15 @@
//
// $Id: Location.java,v 1.8 2004/02/25 14:50:28 mdb Exp $
// $Id: Location.java,v 1.9 2004/08/23 21:05:04 mdb Exp $
package com.threerings.whirled.spot.data;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.util.DirectionUtil;
/**
* Contains information on a scene occupant's position and orientation.
*/
public class Location extends SimpleStreamableObject
public class Location extends TrackedStreamableObject
implements Cloneable
{
/** The user's x position (interpreted by the display system). */
@@ -1,9 +1,9 @@
//
// $Id: Portal.java,v 1.5 2003/02/12 07:23:31 mdb Exp $
// $Id: Portal.java,v 1.6 2004/08/23 21:05:04 mdb Exp $
package com.threerings.whirled.spot.data;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.util.DirectionUtil;
/**
@@ -15,7 +15,7 @@ import com.threerings.util.DirectionUtil;
* when using this portal and the location at which the body sprite should
* appear in that target scene.
*/
public class Portal extends SimpleStreamableObject
public class Portal extends TrackedStreamableObject
implements Cloneable
{
/** This portal's unique identifier. */
@@ -1,12 +1,12 @@
//
// $Id: SpotSceneModel.java,v 1.10 2004/02/25 14:50:28 mdb Exp $
// $Id: SpotSceneModel.java,v 1.11 2004/08/23 21:05:04 mdb Exp $
package com.threerings.whirled.spot.data;
import com.samskivert.util.ArrayUtil;
import com.samskivert.util.ListUtil;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.whirled.data.AuxModel;
import com.threerings.whirled.data.SceneModel;
@@ -17,7 +17,7 @@ import com.threerings.whirled.data.SceneModel;
* scene and unchanging, so that portals can stably reference the target
* portal in the scene to which they connect.
*/
public class SpotSceneModel extends SimpleStreamableObject
public class SpotSceneModel extends TrackedStreamableObject
implements AuxModel
{
/** An array containing all portals in this scene. */
@@ -1,11 +1,11 @@
//
// $Id: ZoneSummary.java,v 1.5 2004/05/18 11:04:08 mdb Exp $
// $Id: ZoneSummary.java,v 1.6 2004/08/23 21:05:04 mdb Exp $
package com.threerings.whirled.zone.data;
import com.samskivert.util.StringUtil;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.util.Name;
/**
@@ -13,7 +13,7 @@ import com.threerings.util.Name;
* summary info on all of the scenes in this zone (which can be used to
* generate a map of the zone on the client).
*/
public class ZoneSummary extends SimpleStreamableObject
public class ZoneSummary extends TrackedStreamableObject
{
/** The zone's fully qualified unique identifier. */
public int zoneId;