8b03be111e
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@751 c613c5cb-e716-0410-b11b-feb51c14d237
92 lines
3.6 KiB
Java
92 lines
3.6 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Vilya library - tools for developing networked games
|
|
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/vilya/
|
|
//
|
|
// 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.whirled.spot.data;
|
|
|
|
import com.threerings.presents.client.Client;
|
|
import com.threerings.presents.client.InvocationService;
|
|
import com.threerings.presents.data.InvocationMarshaller;
|
|
|
|
import com.threerings.whirled.client.SceneService;
|
|
import com.threerings.whirled.data.SceneMarshaller;
|
|
import com.threerings.whirled.spot.client.SpotService;
|
|
|
|
/**
|
|
* Provides the implementation of the {@link SpotService} 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.
|
|
*/
|
|
public class SpotMarshaller extends InvocationMarshaller
|
|
implements SpotService
|
|
{
|
|
/** The method id used to dispatch {@link #changeLocation} requests. */
|
|
public static final int CHANGE_LOCATION = 1;
|
|
|
|
// from interface SpotService
|
|
public void changeLocation (Client arg1, int arg2, Location arg3, InvocationService.ConfirmListener arg4)
|
|
{
|
|
InvocationMarshaller.ConfirmMarshaller listener4 = new InvocationMarshaller.ConfirmMarshaller();
|
|
listener4.listener = arg4;
|
|
sendRequest(arg1, CHANGE_LOCATION, new Object[] {
|
|
Integer.valueOf(arg2), arg3, listener4
|
|
});
|
|
}
|
|
|
|
/** The method id used to dispatch {@link #clusterSpeak} requests. */
|
|
public static final int CLUSTER_SPEAK = 2;
|
|
|
|
// from interface SpotService
|
|
public void clusterSpeak (Client arg1, String arg2, byte arg3)
|
|
{
|
|
sendRequest(arg1, CLUSTER_SPEAK, new Object[] {
|
|
arg2, Byte.valueOf(arg3)
|
|
});
|
|
}
|
|
|
|
/** The method id used to dispatch {@link #joinCluster} requests. */
|
|
public static final int JOIN_CLUSTER = 3;
|
|
|
|
// from interface SpotService
|
|
public void joinCluster (Client arg1, int arg2, InvocationService.ConfirmListener arg3)
|
|
{
|
|
InvocationMarshaller.ConfirmMarshaller listener3 = new InvocationMarshaller.ConfirmMarshaller();
|
|
listener3.listener = arg3;
|
|
sendRequest(arg1, JOIN_CLUSTER, new Object[] {
|
|
Integer.valueOf(arg2), listener3
|
|
});
|
|
}
|
|
|
|
/** The method id used to dispatch {@link #traversePortal} requests. */
|
|
public static final int TRAVERSE_PORTAL = 4;
|
|
|
|
// from interface SpotService
|
|
public void traversePortal (Client arg1, int arg2, int arg3, int arg4, SceneService.SceneMoveListener arg5)
|
|
{
|
|
SceneMarshaller.SceneMoveMarshaller listener5 = new SceneMarshaller.SceneMoveMarshaller();
|
|
listener5.listener = arg5;
|
|
sendRequest(arg1, TRAVERSE_PORTAL, new Object[] {
|
|
Integer.valueOf(arg2), Integer.valueOf(arg3), Integer.valueOf(arg4), listener5
|
|
});
|
|
}
|
|
}
|