Files
narya/src/java/com/threerings/crowd/client/OccupantManager.java
T
Michael Bayne 804505890f We love to revamp! Created a set of listener interfaces which are used
with distributed objects rather than having a single handleEvent() by
which all subscribers are forced to hear about all events. Now one
subscribes separately and then adds onesself as any of a few types of
listener once they have access to the subscribed object reference.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@439 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-10-12 00:03:03 +00:00

162 lines
5.2 KiB
Java

//
// $Id: OccupantManager.java,v 1.7 2001/10/12 00:03:02 mdb Exp $
package com.threerings.crowd.client;
import java.util.ArrayList;
import java.util.Iterator;
import com.samskivert.util.HashIntMap;
import com.threerings.presents.dobj.*;
import com.threerings.crowd.Log;
import com.threerings.crowd.data.OccupantInfo;
import com.threerings.crowd.data.PlaceObject;
import com.threerings.crowd.util.CrowdContext;
/**
* The occupant manager listens for occupants of places to enter and exit,
* and dispatches notices to interested parties about these events.
*
* <p> It will eventually provide a framework for keeping track of
* occupant information in a network efficient manner. The idea being that
* we want to store as little information about occupants as possible in
* the place object (probably just body oid and username), but upon
* entering a place, this will be all we know about the occupants. We then
* dispatch a request to get information about all of the occupants in the
* room (things like avatar information for a graphical display or perhaps
* their ratings in the game that is associated with a place for a gaming
* site) which we then pass on to the occupant observers when it becomes
* available.
*
* <p> This information would be cached and we could return cached
* information for occupants for which we have cached info. We will
* probably want to still make a request for the occupant info so that we
* can update non-static occupant data rather than permanently using
* what's in the cache.
*/
public class OccupantManager
implements LocationObserver, OidListListener
{
/**
* Constructs a new occupant manager with the supplied context.
*/
public OccupantManager (CrowdContext ctx)
{
// register ourselves as a location observer
ctx.getLocationDirector().addLocationObserver(this);
}
/**
* Adds the specified occupant observer to the list.
*/
public void addOccupantObserver (OccupantObserver obs)
{
_observers.add(obs);
}
/**
* Removes the specified occupant observer from the list.
*/
public void removeOccupantObserver (OccupantObserver obs)
{
_observers.remove(obs);
}
// inherit documentation
public boolean locationMayChange (int placeId)
{
// we've got no opinion
return true;
}
// inherit documentation
public void locationDidChange (PlaceObject place)
{
// unlisten to the old place object if there was one
if (_place != null) {
_place.removeListener(this);
// clear out the occupant cache for the previous location
_ocache.clear();
}
// listen to the new one
_place = place;
_place.addListener(this);
// cache the occupant info for the occupants in this room
Iterator iter = _place.occupantInfo.elements();
while (iter.hasNext()) {
OccupantInfo info = (OccupantInfo)iter.next();
_ocache.put(info.getBodyOid(), info);
}
}
// inherit documentation
public void locationChangeFailed (int placeId, String reason)
{
// nothing to do here either
}
/**
* Deals with all of the processing when an occupant shows up.
*/
public void objectAdded (ObjectAddedEvent event)
{
// bail if this isn't for the OCCUPANTS field
if (!event.getName().equals(PlaceObject.OCCUPANTS)) {
return;
}
int bodyOid = event.getOid();
Object key = new Integer(bodyOid);
// get the occupant info from the place object
OccupantInfo info = (OccupantInfo)_place.occupantInfo.get(key);
if (info == null) {
Log.warning("Occupant entered but we have no info for them! " +
"[boid=" + bodyOid + ", place=" + _place + "].");
return;
}
// put the info in our cache for use when we get a left event
_ocache.put(bodyOid, info);
// now let the occupant observers know what's up
for (int i = 0; i < _observers.size(); i++) {
OccupantObserver obs = (OccupantObserver)_observers.get(i);
obs.occupantEntered(info);
}
}
/**
* Deals with all of the processing when an occupant leaves.
*/
public void objectRemoved (ObjectRemovedEvent event)
{
// bail if this isn't for the OCCUPANTS field
if (!event.getName().equals(PlaceObject.OCCUPANTS)) {
return;
}
int bodyOid = event.getOid();
// see if we have an occupant object for this body
OccupantInfo info = (OccupantInfo)_ocache.get(bodyOid);
if (info == null) {
Log.warning("Occupant removed but no cached info for them? " +
"[boid=" + bodyOid + ", place=" + _place + "].");
return;
}
// let the occupant observers know what's up
for (int i = 0; i < _observers.size(); i++) {
OccupantObserver obs = (OccupantObserver)_observers.get(i);
obs.occupantLeft(info);
}
}
protected ArrayList _observers = new ArrayList();
protected PlaceObject _place;
protected HashIntMap _ocache = new HashIntMap();
}