Add direction information to the scene summary.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@820 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: SceneSummary.java,v 1.2 2001/12/17 00:58:04 mdb Exp $
|
// $Id: SceneSummary.java,v 1.3 2001/12/17 03:38:50 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.whirled.zone.data;
|
package com.threerings.whirled.zone.data;
|
||||||
|
|
||||||
@@ -8,6 +8,10 @@ import java.io.DataOutputStream;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import com.samskivert.util.StringUtil;
|
import com.samskivert.util.StringUtil;
|
||||||
|
|
||||||
|
import com.threerings.util.DirectionCodes;
|
||||||
|
import com.threerings.util.DirectionUtil;
|
||||||
|
|
||||||
import com.threerings.presents.io.Streamable;
|
import com.threerings.presents.io.Streamable;
|
||||||
import com.threerings.presents.io.StreamableUtil;
|
import com.threerings.presents.io.StreamableUtil;
|
||||||
|
|
||||||
@@ -29,6 +33,10 @@ public class SceneSummary implements Streamable
|
|||||||
* portals. */
|
* portals. */
|
||||||
public int[] neighbors;
|
public int[] neighbors;
|
||||||
|
|
||||||
|
/** The compass directions in which each of the neighbors lay. The
|
||||||
|
* direction constants are as defined in {@link DirectionCodes}. */
|
||||||
|
public int[] neighborDirs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the population of this scene summary instance. This is
|
* Returns the population of this scene summary instance. This is
|
||||||
* synchronized because the population can be updated by a background
|
* synchronized because the population can be updated by a background
|
||||||
@@ -54,6 +62,7 @@ public class SceneSummary implements Streamable
|
|||||||
out.writeInt(sceneId);
|
out.writeInt(sceneId);
|
||||||
out.writeUTF(name);
|
out.writeUTF(name);
|
||||||
StreamableUtil.writeInts(out, neighbors);
|
StreamableUtil.writeInts(out, neighbors);
|
||||||
|
StreamableUtil.writeInts(out, neighborDirs);
|
||||||
out.writeInt(_population);
|
out.writeInt(_population);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -64,6 +73,7 @@ public class SceneSummary implements Streamable
|
|||||||
sceneId = in.readInt();
|
sceneId = in.readInt();
|
||||||
name = in.readUTF();
|
name = in.readUTF();
|
||||||
neighbors = StreamableUtil.readInts(in);
|
neighbors = StreamableUtil.readInts(in);
|
||||||
|
neighborDirs = StreamableUtil.readInts(in);
|
||||||
_population = in.readInt();
|
_population = in.readInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -73,7 +83,8 @@ public class SceneSummary implements Streamable
|
|||||||
public String toString ()
|
public String toString ()
|
||||||
{
|
{
|
||||||
return "[sceneId=" + sceneId + ", name=" + name +
|
return "[sceneId=" + sceneId + ", name=" + name +
|
||||||
", neighbors=" + StringUtil.toString(neighbors) + "]";
|
", neighbors=" + StringUtil.toString(neighbors) +
|
||||||
|
", neighborDirs=" + DirectionUtil.toString(neighborDirs) + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The number of people currently occupying this scene. */
|
/** The number of people currently occupying this scene. */
|
||||||
|
|||||||
Reference in New Issue
Block a user