Brought things into line with new streaming world order.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1607 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-07-23 05:54:53 +00:00
parent c3191b9170
commit eb0f92fcef
16 changed files with 149 additions and 348 deletions
@@ -1,21 +1,18 @@
//
// $Id: ZoneSummary.java,v 1.3 2001/12/17 00:58:04 mdb Exp $
// $Id: ZoneSummary.java,v 1.4 2002/07/23 05:54:53 mdb Exp $
package com.threerings.whirled.zone.data;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import com.samskivert.util.StringUtil;
import com.threerings.presents.io.Streamable;
import com.threerings.io.SimpleStreamableObject;
/**
* The zone summary contains information on a zone, including its name and
* 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 implements Streamable
public class ZoneSummary extends SimpleStreamableObject
{
/** The zone's fully qualified unique identifier. */
public int zoneId;
@@ -26,33 +23,6 @@ public class ZoneSummary implements Streamable
/** The summary information for all of the scenes in the zone. */
public SceneSummary[] scenes;
// documentation inherited
public void writeTo (DataOutputStream out)
throws IOException
{
out.writeInt(zoneId);
out.writeUTF(name);
int scount = scenes.length;
out.writeInt(scount);
for (int i = 0; i < scount; i++) {
scenes[i].writeTo(out);
}
}
// documentation inherited
public void readFrom (DataInputStream in)
throws IOException
{
zoneId = in.readInt();
name = in.readUTF();
int scount = in.readInt();
scenes = new SceneSummary[scount];
for (int i = 0; i < scount; i++) {
scenes[i] = new SceneSummary();
scenes[i].readFrom(in);
}
}
/**
* Generates a string representation of this instance.
*/