Further cleanups; once we create our window, never let it go away, just
reconfigure it.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: Application.java,v 1.16 2004/07/26 18:59:15 mdb Exp $
|
// $Id: Application.java,v 1.17 2004/07/26 21:24:59 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.getdown.data;
|
package com.threerings.getdown.data;
|
||||||
|
|
||||||
@@ -311,9 +311,10 @@ public class Application
|
|||||||
* Attempts to redownload the <code>getdown.txt</code> file based on
|
* Attempts to redownload the <code>getdown.txt</code> file based on
|
||||||
* information parsed from a previous call to {@link #init}.
|
* information parsed from a previous call to {@link #init}.
|
||||||
*/
|
*/
|
||||||
public void attemptRecovery ()
|
public void attemptRecovery (StatusDisplay status)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
|
status.updateStatus("m.updating_metadata");
|
||||||
downloadControlFile(CONFIG_FILE);
|
downloadControlFile(CONFIG_FILE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: Getdown.java,v 1.16 2004/07/26 17:52:32 mdb Exp $
|
// $Id: Getdown.java,v 1.17 2004/07/26 21:24:59 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.getdown.launcher;
|
package com.threerings.getdown.launcher;
|
||||||
|
|
||||||
@@ -57,13 +57,11 @@ public class Getdown extends Thread
|
|||||||
_ifc = _app.init();
|
_ifc = _app.init();
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
Log.warning("Failed to parse 'getdown.txt': " + ioe);
|
Log.warning("Failed to parse 'getdown.txt': " + ioe);
|
||||||
createInterface();
|
_app.attemptRecovery(this);
|
||||||
_app.attemptRecovery();
|
|
||||||
// and re-initalize
|
// and re-initalize
|
||||||
_ifc = _app.init();
|
_ifc = _app.init();
|
||||||
// now clear out our UI as we probably have a new one
|
// now force our UI to be recreated with the updated info
|
||||||
_frame.dispose();
|
createInterface(true);
|
||||||
_frame = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int ii = 0; ii < MAX_LOOPS; ii++) {
|
for (int ii = 0; ii < MAX_LOOPS; ii++) {
|
||||||
@@ -165,7 +163,7 @@ public class Getdown extends Thread
|
|||||||
final Object lock = new Object();
|
final Object lock = new Object();
|
||||||
|
|
||||||
// create our user interface
|
// create our user interface
|
||||||
createInterface();
|
createInterface(false);
|
||||||
|
|
||||||
// create a downloader to download our resources
|
// create a downloader to download our resources
|
||||||
Downloader.Observer obs = new Downloader.Observer() {
|
Downloader.Observer obs = new Downloader.Observer() {
|
||||||
@@ -237,9 +235,9 @@ public class Getdown extends Thread
|
|||||||
* Creates our user interface, which we avoid doing unless we actually
|
* Creates our user interface, which we avoid doing unless we actually
|
||||||
* have to update something.
|
* have to update something.
|
||||||
*/
|
*/
|
||||||
protected void createInterface ()
|
protected void createInterface (boolean force)
|
||||||
{
|
{
|
||||||
if (_frame != null) {
|
if (_frame != null && !force) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -262,7 +260,13 @@ public class Getdown extends Thread
|
|||||||
}
|
}
|
||||||
|
|
||||||
// create our user interface, and display it
|
// create our user interface, and display it
|
||||||
_frame = new JFrame(StringUtil.blank(_ifc.name) ? "" : _ifc.name);
|
String title = StringUtil.blank(_ifc.name) ? "" : _ifc.name;
|
||||||
|
if (_frame == null) {
|
||||||
|
_frame = new JFrame(title);
|
||||||
|
} else {
|
||||||
|
_frame.setTitle(title);
|
||||||
|
_frame.getContentPane().removeAll();
|
||||||
|
}
|
||||||
_frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
_frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||||
_status = new StatusPanel(_msgs, bounds, bgimg, ppos, spos, _ifc);
|
_status = new StatusPanel(_msgs, bounds, bgimg, ppos, spos, _ifc);
|
||||||
_frame.getContentPane().add(_status, BorderLayout.CENTER);
|
_frame.getContentPane().add(_status, BorderLayout.CENTER);
|
||||||
@@ -275,7 +279,7 @@ public class Getdown extends Thread
|
|||||||
final long remaining, boolean createUI)
|
final long remaining, boolean createUI)
|
||||||
{
|
{
|
||||||
if (_status == null && createUI) {
|
if (_status == null && createUI) {
|
||||||
createInterface();
|
createInterface(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_status != null) {
|
if (_status != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user