Further implementation of body/place/chat stuff. Mostly location related.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@109 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-07-23 21:14:27 +00:00
parent b56a70ff34
commit a643dfd7e3
7 changed files with 274 additions and 13 deletions
@@ -0,0 +1,35 @@
//
// $Id: LocationService.java,v 1.1 2001/07/23 21:14:27 mdb Exp $
package com.threerings.cocktail.party.client;
import com.threerings.cocktail.cher.client.Client;
import com.threerings.cocktail.cher.client.InvocationManager;
import com.threerings.cocktail.party.Log;
/**
* The location services provide a mechanism by which the client can
* request to move from place to place in the server. These services
* should not be used directly, but instead should be accessed via the
* location manager.
*
* @see LocationManager
*/
public class LocationService
{
/** The module name for the location services. */
public static final String MODULE = "location";
/**
* Requests that that this client's body be moved to the specified
* location.
*/
public static void moveTo (Client client, int placeId,
LocationManager rsptarget)
{
InvocationManager invmgr = client.getInvocationManager();
Object[] args = new Object[] { new Integer(placeId) };
invmgr.invoke(MODULE, "MoveTo", args, rsptarget);
Log.info("Sent moveTo request [place=" + placeId + "].");
}
}