The big fat bernie revamp! Er, big fat miso revamp rather:

- Combined SceneViewPanel and IsoSceneView into one happy panel.
- Ditched the DisplayMisoScene notion; the new MisoScenePanel now manages
  resolved scene information (like base, object and fringe tiles) itself
  so that it can...
- ...support scrolling scenes by keeping blocks of resolved base, fringe
  and object information loaded only for what is potentially visible
  rather than for the whole scene.

Other things were surely cleaned up or broken in the process to keep a
keen eye out.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2413 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-04-17 19:21:17 +00:00
parent 3de98670db
commit d5701962a3
38 changed files with 2943 additions and 2532 deletions
@@ -0,0 +1,53 @@
//
// $Id: VirtualMisoSceneModel.java,v 1.1 2003/04/17 19:21:16 mdb Exp $
package com.threerings.miso.data;
import java.awt.Rectangle;
/**
* A convenient base class for "virtual" scenes which do not allow editing
* and compute the base and object tiles rather than obtain them from some
* data structure.
*/
public abstract class VirtualMisoSceneModel extends MisoSceneModel
{
public VirtualMisoSceneModel ()
{
}
public VirtualMisoSceneModel (int width, int height)
{
super(width, height);
}
// documentation inherited from interface
public boolean setBaseTile (int fqTileId, int x, int y)
{
throw new UnsupportedOperationException();
}
// documentation inherited from interface
public void setBaseTiles (Rectangle r, int setId, int setSize)
{
throw new UnsupportedOperationException();
}
// documentation inherited from interface
public void addObject (ObjectInfo info)
{
throw new UnsupportedOperationException();
}
// documentation inherited from interface
public void updateObject (ObjectInfo info)
{
throw new UnsupportedOperationException();
}
// documentation inherited from interface
public boolean removeObject (ObjectInfo info)
{
throw new UnsupportedOperationException();
}
}