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: MisoSceneModel.java,v 1.22 2004/08/27 02:20:06 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.miso.data;
import java.awt.Rectangle;
import java.util.Random;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.miso.util.ObjectSet;
@@ -32,7 +32,7 @@ import com.threerings.miso.util.ObjectSet;
* Contains basic information for a miso scene model that is shared among
* the specialized model implementations.
*/
public abstract class MisoSceneModel extends TrackedStreamableObject
public abstract class MisoSceneModel extends SimpleStreamableObject
implements Cloneable
{
/**
@@ -24,13 +24,12 @@ package com.threerings.miso.data;
import com.samskivert.util.StringUtil;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.media.tile.TileUtil;
/**
* Contains information about an object in a Miso scene.
*/
public class ObjectInfo extends TrackedStreamableObject
public class ObjectInfo extends SimpleStreamableObject
implements Cloneable
{
/** The fully qualified object tile id. */
@@ -29,7 +29,7 @@ import com.samskivert.util.ArrayUtil;
import com.samskivert.util.ListUtil;
import com.samskivert.util.StringUtil;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.media.util.MathUtil;
import com.threerings.util.StreamableHashIntMap;
@@ -53,7 +53,7 @@ public class SparseMisoSceneModel extends MisoSceneModel
/** Contains information on a section of this scene. This is only
* public so that the scene model parser can do its job, so don't go
* poking around in here. */
public static class Section extends TrackedStreamableObject
public static class Section extends SimpleStreamableObject
implements Cloneable
{
/** The tile coordinate of our upper leftmost tile. */