added reusing position buffer on heightmap changing.

fix-456
javasabr 8 years ago
parent ed4e614722
commit 444588a363
  1. 23
      jme3-terrain/src/main/java/com/jme3/terrain/geomipmap/TerrainPatch.java

@ -303,22 +303,29 @@ public class TerrainPatch extends Geometry {
protected void setHeight(List<LocationHeight> locationHeights, boolean overrideHeight) { protected void setHeight(List<LocationHeight> locationHeights, boolean overrideHeight) {
final float[] heightArray = geomap.getHeightArray();
final VertexBuffer vertexBuffer = mesh.getBuffer(Type.Position);
final FloatBuffer floatBuffer = mesh.getFloatBuffer(Type.Position);
for (LocationHeight lh : locationHeights) { for (LocationHeight lh : locationHeights) {
if (lh.x < 0 || lh.z < 0 || lh.x >= size || lh.z >= size)
if (lh.x < 0 || lh.z < 0 || lh.x >= size || lh.z >= size) {
continue; continue;
}
int idx = lh.z * size + lh.x; int idx = lh.z * size + lh.x;
if (overrideHeight) { if (overrideHeight) {
geomap.getHeightArray()[idx] = lh.h; heightArray[idx] = lh.h;
} else { } else {
float h = getMesh().getFloatBuffer(Type.Position).get(idx*3+1); float currentHeight = floatBuffer.get(idx * 3 + 1);
geomap.getHeightArray()[idx] = h+lh.h; heightArray[idx] = currentHeight + lh.h;
} }
} }
FloatBuffer newVertexBuffer = geomap.writeVertexArray(null, stepScale, false); floatBuffer.clear();
getMesh().clearBuffer(Type.Position); geomap.writeVertexArray(floatBuffer, stepScale, false);
getMesh().setBuffer(Type.Position, 3, newVertexBuffer); vertexBuffer.setUpdateNeeded();
} }
/** /**

Loading…
Cancel
Save