Oops: our variables were still defined as 'static'.

Changed private to protected.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1218 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-04-08 18:41:58 +00:00
parent 1cf81e9882
commit 03579fa0ef
@@ -1,5 +1,5 @@
// //
// $Id: AutoFringer.java,v 1.6 2002/04/06 22:07:41 ray Exp $ // $Id: AutoFringer.java,v 1.7 2002/04/08 18:41:58 ray Exp $
package com.threerings.miso.tile; package com.threerings.miso.tile;
@@ -265,7 +265,7 @@ public class AutoFringer
* A record for holding information about a particular fringe as we're * A record for holding information about a particular fringe as we're
* computing what it will look like. * computing what it will look like.
*/ */
static private class FringerRec implements Comparable static protected class FringerRec implements Comparable
{ {
int baseset; int baseset;
int priority; int priority;
@@ -286,36 +286,36 @@ public class AutoFringer
// fringe bits // fringe bits
// see docs/miso/fringebits.png // see docs/miso/fringebits.png
// //
private static final int NORTH = 1 << 0; protected static final int NORTH = 1 << 0;
private static final int NORTHEAST = 1 << 1; protected static final int NORTHEAST = 1 << 1;
private static final int EAST = 1 << 2; protected static final int EAST = 1 << 2;
private static final int SOUTHEAST = 1 << 3; protected static final int SOUTHEAST = 1 << 3;
private static final int SOUTH = 1 << 4; protected static final int SOUTH = 1 << 4;
private static final int SOUTHWEST = 1 << 5; protected static final int SOUTHWEST = 1 << 5;
private static final int WEST = 1 << 6; protected static final int WEST = 1 << 6;
private static final int NORTHWEST = 1 << 7; protected static final int NORTHWEST = 1 << 7;
private static final int NUM_FRINGEBITS = 8; protected static final int NUM_FRINGEBITS = 8;
// A matrix mapping adjacent tiles to which fringe bits // A matrix mapping adjacent tiles to which fringe bits
// they affect. // they affect.
// (x and y are offset by +1, since we can't have -1 as an array index) // (x and y are offset by +1, since we can't have -1 as an array index)
// again, see docs/miso/fringebits.png // again, see docs/miso/fringebits.png
// //
private static final int[][] FLAGMATRIX = { protected static final int[][] FLAGMATRIX = {
{ NORTHEAST, (NORTHEAST | EAST | SOUTHEAST), SOUTHEAST }, { NORTHEAST, (NORTHEAST | EAST | SOUTHEAST), SOUTHEAST },
{ (NORTHWEST | NORTH | NORTHEAST), 0, (SOUTHEAST | SOUTH | SOUTHWEST) }, { (NORTHWEST | NORTH | NORTHEAST), 0, (SOUTHEAST | SOUTH | SOUTHWEST) },
{ NORTHWEST, (NORTHWEST | WEST | SOUTHWEST), SOUTHWEST } { NORTHWEST, (NORTHWEST | WEST | SOUTHWEST), SOUTHWEST }
}; };
/** Our tile manager. */ /** Our tile manager. */
protected static TileManager _tmgr; protected TileManager _tmgr;
/** Our fringe configuration. */ /** Our fringe configuration. */
protected static FringeConfiguration _fringeconf; protected FringeConfiguration _fringeconf;
/** Our random # generator. */ /** Our random # generator. */
// this may change.. or we may seed it before we do any scene // this may change.. or we may seed it before we do any scene
// with a number deterministicly generated from that scene // with a number deterministicly generated from that scene
protected static Random rando = new Random(); protected Random rando = new Random();
} }