Browse Source

Starting work to sync heightmap model with Shadowbane.

combat-2
MagicBot 1 year ago
parent
commit
b717c3d550
  1. 6
      src/engine/InterestManagement/HeightMap.java

6
src/engine/InterestManagement/HeightMap.java

@ -55,6 +55,9 @@ public class HeightMap { @@ -55,6 +55,9 @@ public class HeightMap {
private float seaLevel = 0;
private int[][] pixelColorValues;
private float zone_minBlend;
private float zone_maxBlend;
public HeightMap(ResultSet rs) throws SQLException {
this.heightMapID = rs.getInt("heightMapID");
@ -64,6 +67,9 @@ public class HeightMap { @@ -64,6 +67,9 @@ public class HeightMap {
this.zoneLoadID = rs.getInt("zoneLoadID");
this.seaLevel = rs.getFloat("seaLevel");
this.zone_minBlend = rs.getFloat("outsetZ");
this.zone_maxBlend = rs.getFloat("outsetX");
// Cache the full extents to avoid the calculation
this.fullExtentsX = halfExtentsX * 2;

Loading…
Cancel
Save