Oh the price we pay for wanting to be able to logoff and log back on

without exiting the client.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1843 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-10-27 21:24:58 +00:00
parent 14a313486b
commit 6781e1da56
4 changed files with 51 additions and 18 deletions
@@ -1,5 +1,5 @@
//
// $Id: LocationDirector.java,v 1.25 2002/08/14 19:07:49 mdb Exp $
// $Id: LocationDirector.java,v 1.26 2002/10/27 21:24:58 mdb Exp $
package com.threerings.crowd.client;
@@ -334,6 +334,25 @@ public class LocationDirector extends BasicDirector
client.getDObjectManager().subscribeToObject(cloid, sub);
}
// documentation inherited from interface
public void clientDidLogoff (Client client)
{
super.clientDidLogoff(client);
// clear ourselves out and inform observers of our departure
didLeavePlace();
// let our observers know that we're no longer in a location
_observers.apply(_didChangeOp);
// clear out everything else (it's possible that we were logged
// off in the middle of a change location request)
_pendingPlaceId = -1;
_previousPlaceId = -1;
_lastRequestTime = 0L;
_lservice = null;
}
// documentation inherited
protected void fetchServices (Client client)
{
@@ -348,20 +367,6 @@ public class LocationDirector extends BasicDirector
// we'll want to be going there straight away
}
// documentation inherited from interface
public void clientDidLogoff (Client client)
{
super.clientDidLogoff(client);
// clear ourselves out and inform observers of our departure
didLeavePlace();
// let our observers know that we're no longer in a location
_observers.apply(_didChangeOp);
_lservice = null;
}
// documentation inherited from interface
public void moveSucceeded (PlaceConfig config)
{