Update of /cvsroot/rails/18xx/rails/game
In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv25799/rails/game
Modified Files:
MapManager.java
Log Message:
Refactoring of HexMap classes to remove zoom problems
Added autoscrolling support
Added gamespecific config settings
Index: MapManager.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/game/MapManager.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** MapManager.java 4 Apr 2010 22:02:53 -0000 1.22
--- MapManager.java 24 Jun 2010 21:48:08 -0000 1.23
***************
*** 29,32 ****
--- 29,33 ----
protected SortedSet<Integer> possibleTileCosts;
+ // information to define neighbors
protected static final int[] xDeltaNS = new int[] { 0, -1, -1, 0, +1, +1 };
protected static final int[] yXEvenDeltaNS =
|