8a4c46badc
changed to Presents and Party changed to Crowd. Whee! git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@431 542714f4-19e9-0310-aa3c-eee0fc999fb1
196 lines
5.2 KiB
Java
196 lines
5.2 KiB
Java
//
|
|
// $Id: TestClient.java,v 1.3 2001/10/11 04:07:51 mdb Exp $
|
|
|
|
package com.threerings.parlor.test;
|
|
|
|
import com.samskivert.util.Config;
|
|
import com.samskivert.util.Queue;
|
|
|
|
import com.threerings.presents.client.*;
|
|
import com.threerings.presents.dobj.DObjectManager;
|
|
import com.threerings.presents.net.*;
|
|
|
|
import com.threerings.crowd.data.BodyObject;
|
|
import com.threerings.crowd.client.*;
|
|
|
|
import com.threerings.parlor.Log;
|
|
import com.threerings.parlor.client.*;
|
|
import com.threerings.parlor.data.*;
|
|
import com.threerings.parlor.util.ParlorContext;
|
|
|
|
public class TestClient
|
|
implements Client.Invoker, ClientObserver, InvitationHandler,
|
|
InvitationResponseObserver
|
|
{
|
|
public TestClient (Credentials creds)
|
|
{
|
|
// create our context
|
|
_ctx = new ParlorContextImpl();
|
|
|
|
// create the handles on our various services
|
|
_config = new Config();
|
|
_client = new Client(creds, this);
|
|
_locdir = new LocationDirector(_ctx);
|
|
_occmgr = new OccupantManager(_ctx);
|
|
_pardtr = new ParlorDirector(_ctx);
|
|
|
|
// register ourselves as the invitation handler
|
|
_pardtr.setInvitationHandler(this);
|
|
|
|
// we want to know about logon/logoff
|
|
_client.addObserver(this);
|
|
|
|
// for test purposes, hardcode the server info
|
|
_client.setServer("localhost", 4007);
|
|
}
|
|
|
|
public void run ()
|
|
{
|
|
// log on
|
|
_client.logon();
|
|
|
|
// loop over our queue, running the runnables
|
|
while (true) {
|
|
Runnable run = (Runnable)_queue.get();
|
|
run.run();
|
|
}
|
|
}
|
|
|
|
public void invokeLater (Runnable run)
|
|
{
|
|
// queue it on up
|
|
_queue.append(run);
|
|
}
|
|
|
|
public void clientDidLogon (Client client)
|
|
{
|
|
Log.info("Client did logon [client=" + client + "].");
|
|
|
|
// get a casted reference to our body object
|
|
_body = (BodyObject)client.getClientObject();
|
|
|
|
// if we're the inviter, do some inviting
|
|
if (_body.username.equals("inviter")) {
|
|
// send the invitation
|
|
TestConfig config = new TestConfig();
|
|
_pardtr.invite("invitee", config, this);
|
|
}
|
|
}
|
|
|
|
public void clientFailedToLogon (Client client, Exception cause)
|
|
{
|
|
Log.info("Client failed to logon [client=" + client +
|
|
", cause=" + cause + "].");
|
|
}
|
|
|
|
public void clientConnectionFailed (Client client, Exception cause)
|
|
{
|
|
Log.info("Client connection failed [client=" + client +
|
|
", cause=" + cause + "].");
|
|
}
|
|
|
|
public boolean clientWillLogoff (Client client)
|
|
{
|
|
Log.info("Client will logoff [client=" + client + "].");
|
|
return true;
|
|
}
|
|
|
|
public void clientDidLogoff (Client client)
|
|
{
|
|
Log.info("Client did logoff [client=" + client + "].");
|
|
System.exit(0);
|
|
}
|
|
|
|
public void invitationReceived (int inviteId, String inviter,
|
|
GameConfig config)
|
|
{
|
|
Log.info("Invitation received [inviteId=" + inviteId +
|
|
", inviter=" + inviter + ", config=" + config + "].");
|
|
|
|
// accept the invitation. we're game...
|
|
_pardtr.accept(inviteId);
|
|
}
|
|
|
|
public void invitationCancelled (int inviteId)
|
|
{
|
|
Log.info("Invitation cancelled [inviteId=" + inviteId + "].");
|
|
}
|
|
|
|
public void invitationAccepted (int inviteId)
|
|
{
|
|
Log.info("Invitation accepted [inviteId=" + inviteId + "].");
|
|
}
|
|
|
|
public void invitationRefused (int inviteId, String message)
|
|
{
|
|
Log.info("Invitation refused [inviteId=" + inviteId +
|
|
", message=" + message + "].");
|
|
}
|
|
|
|
public void invitationCountered (int inviteId, GameConfig config)
|
|
{
|
|
Log.info("Invitation countered [inviteId=" + inviteId +
|
|
", config=" + config + "].");
|
|
}
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
String username = System.getProperty("username", "test");
|
|
UsernamePasswordCreds creds =
|
|
new UsernamePasswordCreds(username, "test");
|
|
// create our test client
|
|
TestClient tclient = new TestClient(creds);
|
|
// start it running
|
|
tclient.run();
|
|
}
|
|
|
|
protected class ParlorContextImpl implements ParlorContext
|
|
{
|
|
public Config getConfig ()
|
|
{
|
|
return _config;
|
|
}
|
|
|
|
public Client getClient ()
|
|
{
|
|
return _client;
|
|
}
|
|
|
|
public DObjectManager getDObjectManager ()
|
|
{
|
|
return _client.getDObjectManager();
|
|
}
|
|
|
|
public LocationDirector getLocationDirector ()
|
|
{
|
|
return _locdir;
|
|
}
|
|
|
|
public OccupantManager getOccupantManager ()
|
|
{
|
|
return _occmgr;
|
|
}
|
|
|
|
public void setPlaceView (PlaceView view)
|
|
{
|
|
// nothing to do because we don't create views
|
|
}
|
|
|
|
public ParlorDirector getParlorDirector ()
|
|
{
|
|
return _pardtr;
|
|
}
|
|
}
|
|
|
|
protected Config _config;
|
|
protected Client _client;
|
|
protected LocationDirector _locdir;
|
|
protected OccupantManager _occmgr;
|
|
protected ParlorDirector _pardtr;
|
|
protected ParlorContext _ctx;
|
|
|
|
protected BodyObject _body;
|
|
|
|
protected Queue _queue = new Queue();
|
|
}
|