e80409a7f4
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6398 542714f4-19e9-0310-aa3c-eee0fc999fb1
101 lines
3.5 KiB
Java
101 lines
3.5 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2010 Three Rings Design, Inc., All Rights Reserved
|
|
// http://code.google.com/p/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.crowd.data;
|
|
|
|
import javax.annotation.Generated;
|
|
|
|
import com.threerings.crowd.client.LocationService;
|
|
import com.threerings.presents.client.Client;
|
|
import com.threerings.presents.data.InvocationMarshaller;
|
|
import com.threerings.presents.dobj.InvocationResponseEvent;
|
|
|
|
/**
|
|
* Provides the implementation of the {@link LocationService} interface
|
|
* that marshalls the arguments and delivers the request to the provider
|
|
* on the server. Also provides an implementation of the response listener
|
|
* interfaces that marshall the response arguments and deliver them back
|
|
* to the requesting client.
|
|
*/
|
|
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
|
comments="Derived from LocationService.java.")
|
|
public class LocationMarshaller extends InvocationMarshaller
|
|
implements LocationService
|
|
{
|
|
/**
|
|
* Marshalls results to implementations of {@link LocationService.MoveListener}.
|
|
*/
|
|
public static class MoveMarshaller extends ListenerMarshaller
|
|
implements MoveListener
|
|
{
|
|
/** The method id used to dispatch {@link #moveSucceeded}
|
|
* responses. */
|
|
public static final int MOVE_SUCCEEDED = 1;
|
|
|
|
// from interface MoveMarshaller
|
|
public void moveSucceeded (PlaceConfig arg1)
|
|
{
|
|
_invId = null;
|
|
omgr.postEvent(new InvocationResponseEvent(
|
|
callerOid, requestId, MOVE_SUCCEEDED,
|
|
new Object[] { arg1 }, transport));
|
|
}
|
|
|
|
@Override // from InvocationMarshaller
|
|
public void dispatchResponse (int methodId, Object[] args)
|
|
{
|
|
switch (methodId) {
|
|
case MOVE_SUCCEEDED:
|
|
((MoveListener)listener).moveSucceeded(
|
|
(PlaceConfig)args[0]);
|
|
return;
|
|
|
|
default:
|
|
super.dispatchResponse(methodId, args);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
/** The method id used to dispatch {@link #leavePlace} requests. */
|
|
public static final int LEAVE_PLACE = 1;
|
|
|
|
// from interface LocationService
|
|
public void leavePlace ()
|
|
{
|
|
sendRequest(LEAVE_PLACE, new Object[] {
|
|
});
|
|
}
|
|
|
|
/** The method id used to dispatch {@link #moveTo} requests. */
|
|
public static final int MOVE_TO = 2;
|
|
|
|
// from interface LocationService
|
|
public void moveTo (int arg1, LocationService.MoveListener arg2)
|
|
{
|
|
LocationMarshaller.MoveMarshaller listener2 = new LocationMarshaller.MoveMarshaller();
|
|
listener2.listener = arg2;
|
|
sendRequest(MOVE_TO, new Object[] {
|
|
Integer.valueOf(arg1), listener2
|
|
});
|
|
}
|
|
}
|