~ubuntu-branches/ubuntu/utopic/sweethome3d/utopic-proposed

« back to all changes in this revision

Viewing changes to src/com/eteks/sweethome3d/viewcontroller/HomeController3D.java

  • Committer: Bazaar Package Importer
  • Author(s): Gabriele Giacone
  • Date: 2010-05-29 13:17:46 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100529131746-mix5l902gjywddob
Tags: 2.4+dfsg-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
  private class TopCameraState extends CameraControllerState {
204
204
    private final float MIN_SIZE = 1000;
205
205
    
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();
243
244
 
244
245
    public TopCameraState() {
245
246
      this.homeBounds = getHomeBounds();
 
247
      this.homeHeight = getHomeHeight();
246
248
    }
247
249
      
248
250
    @Override
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);
275
278
    }
276
279
 
277
280
    /**
278
 
     * Returns home bounds that includes walls and furniture.
 
281
     * Returns home bounds that includes walls, furniture and rooms.
279
282
     */
280
283
    private Rectangle2D getHomeBounds() {
281
284
      // Compute plan bounds to include rooms, walls and furniture
326
329
      return homeBounds;
327
330
    }
328
331
 
 
332
    /**
 
333
     * Returns home height that includes walls and furniture.
 
334
     */
 
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);
 
342
        }
 
343
        Float heightAtEnd = wall.getHeightAtEnd();
 
344
        if (heightAtEnd != null) {
 
345
          homeHeight = Math.max(homeHeight, heightAtEnd);
 
346
        }
 
347
      }
 
348
      for (HomePieceOfFurniture piece : home.getFurniture()) {
 
349
        if (piece.isVisible()) {
 
350
          homeHeight = Math.max(homeHeight, piece.getElevation() + piece.getHeight());
 
351
        }
 
352
      }
 
353
      if (homeHeight > 0) {
 
354
        return Math.max(10, homeHeight);
 
355
      } else {
 
356
        return home.getWallHeight();
 
357
      }
 
358
    }
 
359
    
329
360
    @Override
330
361
    public void moveCamera(float delta) {
331
362
      // Use a 5 times bigger delta for top camera move
332
363
      delta *= 5;
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())