Changes to jive with new rendering deal.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1288 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-04-23 01:19:04 +00:00
parent 0bde11ee81
commit 1ce70d6c5a
7 changed files with 93 additions and 35 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestApp.java,v 1.12 2002/03/28 22:32:33 mdb Exp $
// $Id: TestApp.java,v 1.13 2002/04/23 01:19:04 mdb Exp $
package com.threerings.cast.builder;
@@ -8,8 +8,9 @@ import javax.swing.JFrame;
import com.samskivert.swing.util.SwingUtil;
import com.threerings.resource.ResourceManager;
import com.threerings.media.FrameManager;
import com.threerings.media.ImageManager;
import com.threerings.resource.ResourceManager;
import com.threerings.cast.Log;
import com.threerings.cast.CharacterManager;
@@ -27,6 +28,8 @@ public class TestApp
_frame.setSize(800, 600);
SwingUtil.centerWindow(_frame);
FrameManager framemgr = new FrameManager(_frame);
ResourceManager rmgr = new ResourceManager(
"rsrc", null, "config/resource/manager.properties");
ImageManager imgr = new ImageManager(rmgr, _frame);
@@ -37,7 +40,7 @@ public class TestApp
charmgr.setCharacterClass(MisoCharacterSprite.class);
// initialize the frame
((TestFrame)_frame).init(charmgr, crepo);
((TestFrame)_frame).init(framemgr, charmgr, crepo);
}
public void run ()
@@ -1,10 +1,12 @@
//
// $Id: TestFrame.java,v 1.4 2001/11/27 08:41:49 mdb Exp $
// $Id: TestFrame.java,v 1.5 2002/04/23 01:19:04 mdb Exp $
package com.threerings.cast.builder;
import javax.swing.JFrame;
import com.threerings.media.FrameManager;
import com.threerings.cast.CharacterManager;
import com.threerings.cast.ComponentRepository;
@@ -18,8 +20,9 @@ public class TestFrame extends JFrame
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public void init (CharacterManager charmgr, ComponentRepository crepo)
public void init (FrameManager framemgr, CharacterManager charmgr,
ComponentRepository crepo)
{
getContentPane().add(new BuilderPanel(charmgr, crepo));
getContentPane().add(new BuilderPanel(framemgr, charmgr, crepo));
}
}