Renamed OccupantManager to OccupantDirector.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1239 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TestClient.java,v 1.9 2002/03/28 22:32:33 mdb Exp $
|
||||
// $Id: TestClient.java,v 1.10 2002/04/15 14:38:45 shaper Exp $
|
||||
|
||||
package com.threerings.crowd.client;
|
||||
|
||||
@@ -23,7 +23,7 @@ public class TestClient
|
||||
// create the handles on our various services
|
||||
_client = new Client(creds, this);
|
||||
_locdir = new LocationDirector(_ctx);
|
||||
_occmgr = new OccupantManager(_ctx);
|
||||
_occdir = new OccupantDirector(_ctx);
|
||||
|
||||
// we want to know about logon/logoff
|
||||
_client.addClientObserver(this);
|
||||
@@ -109,9 +109,9 @@ public class TestClient
|
||||
return _locdir;
|
||||
}
|
||||
|
||||
public OccupantManager getOccupantManager ()
|
||||
public OccupantDirector getOccupantDirector ()
|
||||
{
|
||||
return _occmgr;
|
||||
return _occdir;
|
||||
}
|
||||
|
||||
public void setPlaceView (PlaceView view)
|
||||
@@ -122,7 +122,7 @@ public class TestClient
|
||||
|
||||
protected Client _client;
|
||||
protected LocationDirector _locdir;
|
||||
protected OccupantManager _occmgr;
|
||||
protected OccupantDirector _occdir;
|
||||
protected CrowdContext _ctx;
|
||||
|
||||
protected Queue _queue = new Queue();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TestClient.java,v 1.7 2002/03/28 22:32:33 mdb Exp $
|
||||
// $Id: TestClient.java,v 1.8 2002/04/15 14:38:45 shaper Exp $
|
||||
|
||||
package com.threerings.parlor;
|
||||
|
||||
@@ -29,7 +29,7 @@ public class TestClient
|
||||
// create the handles on our various services
|
||||
_client = new Client(creds, this);
|
||||
_locdir = new LocationDirector(_ctx);
|
||||
_occmgr = new OccupantManager(_ctx);
|
||||
_occdir = new OccupantDirector(_ctx);
|
||||
_pardtr = new ParlorDirector(_ctx);
|
||||
|
||||
// register ourselves as the invitation handler
|
||||
@@ -159,9 +159,9 @@ public class TestClient
|
||||
return _locdir;
|
||||
}
|
||||
|
||||
public OccupantManager getOccupantManager ()
|
||||
public OccupantDirector getOccupantDirector ()
|
||||
{
|
||||
return _occmgr;
|
||||
return _occdir;
|
||||
}
|
||||
|
||||
public void setPlaceView (PlaceView view)
|
||||
@@ -177,7 +177,7 @@ public class TestClient
|
||||
|
||||
protected Client _client;
|
||||
protected LocationDirector _locdir;
|
||||
protected OccupantManager _occmgr;
|
||||
protected OccupantDirector _occdir;
|
||||
protected ParlorDirector _pardtr;
|
||||
protected ParlorContext _ctx;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TestClient.java,v 1.11 2002/03/28 22:32:34 mdb Exp $
|
||||
// $Id: TestClient.java,v 1.12 2002/04/15 14:38:46 shaper Exp $
|
||||
|
||||
package com.threerings.whirled;
|
||||
|
||||
@@ -29,7 +29,7 @@ public class TestClient
|
||||
// create the handles for our various services
|
||||
_client = new Client(creds, this);
|
||||
_screp = new DummyClientSceneRepository();
|
||||
_occmgr = new OccupantManager(_ctx);
|
||||
_occdir = new OccupantDirector(_ctx);
|
||||
_locdir = new LocationDirector(_ctx);
|
||||
_scdir = new SceneDirector(
|
||||
_ctx, _locdir, _screp, new DefaultDisplaySceneFactory());
|
||||
@@ -139,9 +139,9 @@ public class TestClient
|
||||
return _locdir;
|
||||
}
|
||||
|
||||
public OccupantManager getOccupantManager ()
|
||||
public OccupantDirector getOccupantDirector ()
|
||||
{
|
||||
return _occmgr;
|
||||
return _occdir;
|
||||
}
|
||||
|
||||
public void setPlaceView (PlaceView view)
|
||||
@@ -158,7 +158,7 @@ public class TestClient
|
||||
protected Client _client;
|
||||
protected LocationDirector _locdir;
|
||||
protected SceneDirector _scdir;
|
||||
protected OccupantManager _occmgr;
|
||||
protected OccupantDirector _occdir;
|
||||
protected SceneRepository _screp;
|
||||
protected WhirledContext _ctx;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user