Stop using TrackedObjects.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3726 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-10-11 19:17:43 +00:00
parent dd2468b140
commit 5bd90aa797
15 changed files with 37 additions and 38 deletions
@@ -1,5 +1,5 @@
//
// $Id: SceneModel.java,v 1.11 2004/08/27 02:20:42 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -23,7 +23,7 @@ package com.threerings.whirled.data;
import com.samskivert.util.ArrayUtil;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
/**
* The scene model is the bare bones representation of the data for a
@@ -34,7 +34,7 @@ import com.threerings.io.TrackedStreamableObject;
* what is transmitted over the wire when communicating scenes from the
* server to the client.
*/
public class SceneModel extends TrackedStreamableObject
public class SceneModel extends SimpleStreamableObject
implements Cloneable
{
/** This scene's unique identifier. */
@@ -21,14 +21,14 @@
package com.threerings.whirled.spot.data;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.DirectionCodes;
import com.threerings.util.DirectionUtil;
/**
* Contains information on a scene occupant's position and orientation.
*/
public class Location extends TrackedStreamableObject
public class Location extends SimpleStreamableObject
implements Cloneable
{
/** The user's x position (interpreted by the display system). */
@@ -1,5 +1,5 @@
//
// $Id: Portal.java,v 1.7 2004/08/27 02:20:45 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,7 +21,7 @@
package com.threerings.whirled.spot.data;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.DirectionUtil;
/**
@@ -33,7 +33,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 TrackedStreamableObject
public class Portal extends SimpleStreamableObject
implements Cloneable
{
/** This portal's unique identifier. */
@@ -1,5 +1,5 @@
//
// $Id: SpotSceneModel.java,v 1.13 2004/10/23 17:36:32 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -24,7 +24,7 @@ package com.threerings.whirled.spot.data;
import com.samskivert.util.ArrayUtil;
import com.samskivert.util.ListUtil;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.whirled.data.AuxModel;
import com.threerings.whirled.data.SceneModel;
@@ -35,7 +35,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 TrackedStreamableObject
public class SpotSceneModel extends SimpleStreamableObject
implements AuxModel
{
/** An array containing all portals in this scene. */
@@ -1,5 +1,5 @@
//
// $Id: ZoneSummary.java,v 1.7 2004/08/27 02:20:51 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -23,7 +23,7 @@ package com.threerings.whirled.zone.data;
import com.samskivert.util.StringUtil;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.Name;
/**
@@ -31,7 +31,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 TrackedStreamableObject
public class ZoneSummary extends SimpleStreamableObject
{
/** The zone's fully qualified unique identifier. */
public int zoneId;