203
203
private class TopCameraState extends CameraControllerState {
204
204
private final float MIN_SIZE = 1000;
206
private Camera topCamera;
206
private Camera topCamera;
207
207
private Rectangle2D homeBounds;
208
private float homeHeight;
208
209
private PropertyChangeListener objectChangeListener = new PropertyChangeListener() {
209
210
public void propertyChange(PropertyChangeEvent evt) {
210
211
updateCameraFromHomeBounds();
271
273
float deltaZ = (float)(Math.max(this.homeBounds.getWidth(), this.homeBounds.getHeight())
272
274
- Math.max(newHomeBounds.getWidth(), newHomeBounds.getHeight()));
273
275
this.homeBounds = newHomeBounds;
276
this.homeHeight = getHomeHeight();
274
277
moveCamera(deltaZ);
278
* Returns home bounds that includes walls and furniture.
281
* Returns home bounds that includes walls, furniture and rooms.
280
283
private Rectangle2D getHomeBounds() {
281
284
// Compute plan bounds to include rooms, walls and furniture
326
329
return homeBounds;
333
* Returns home height that includes walls and furniture.
335
private float getHomeHeight() {
336
// Compute plan bounds to include walls and furniture
337
float homeHeight = 0;
338
for (Wall wall : home.getWalls()) {
339
Float height = wall.getHeight();
340
if (height != null) {
341
homeHeight = Math.max(homeHeight, height);
343
Float heightAtEnd = wall.getHeightAtEnd();
344
if (heightAtEnd != null) {
345
homeHeight = Math.max(homeHeight, heightAtEnd);
348
for (HomePieceOfFurniture piece : home.getFurniture()) {
349
if (piece.isVisible()) {
350
homeHeight = Math.max(homeHeight, piece.getElevation() + piece.getHeight());
353
if (homeHeight > 0) {
354
return Math.max(10, homeHeight);
356
return home.getWallHeight();
330
361
public void moveCamera(float delta) {
331
362
// Use a 5 times bigger delta for top camera move
333
364
float newZ = this.topCamera.getZ() - (float)Math.sin(this.topCamera.getPitch()) * delta;
334
// Check new elevation is between home wall height and a half, and 3 times its largest dimension
335
newZ = Math.max(newZ, home.getWallHeight() * 1.5f);
365
// Check new elevation is between home height and a half, and 3 times its largest dimension
366
newZ = Math.max(newZ, this.homeHeight * 1.5f);
336
367
newZ = Math.min(newZ, (float)(Math.max(this.homeBounds.getWidth(), this.homeBounds.getHeight()) * 3 * Math.sin(this.topCamera.getPitch())));
337
368
double distanceToCenterAtGroundLevel = newZ / Math.tan(this.topCamera.getPitch());
338
369
this.topCamera.setX((float)this.homeBounds.getCenterX() + (float)(Math.sin(this.topCamera.getYaw())