2a4385ad33
portals will by dynamically created, combined display/runtime/editable scenes into one, enhanced support for modifying scenes and distributing updates to the clients, various other small stuff that should not be sweated. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2274 542714f4-19e9-0310-aa3c-eee0fc999fb1
59 lines
1.8 KiB
Java
59 lines
1.8 KiB
Java
//
|
|
// $Id: ZoneDispatcher.java,v 1.3 2003/02/12 07:23:32 mdb Exp $
|
|
|
|
package com.threerings.whirled.zone.server;
|
|
|
|
import com.threerings.crowd.data.PlaceConfig;
|
|
import com.threerings.presents.client.Client;
|
|
import com.threerings.presents.data.ClientObject;
|
|
import com.threerings.presents.data.InvocationMarshaller;
|
|
import com.threerings.presents.server.InvocationDispatcher;
|
|
import com.threerings.presents.server.InvocationException;
|
|
import com.threerings.whirled.data.SceneModel;
|
|
import com.threerings.whirled.data.SceneUpdate;
|
|
import com.threerings.whirled.zone.client.ZoneService;
|
|
import com.threerings.whirled.zone.client.ZoneService.ZoneMoveListener;
|
|
import com.threerings.whirled.zone.data.ZoneMarshaller;
|
|
import com.threerings.whirled.zone.data.ZoneSummary;
|
|
|
|
/**
|
|
* Dispatches requests to the {@link ZoneProvider}.
|
|
*/
|
|
public class ZoneDispatcher extends InvocationDispatcher
|
|
{
|
|
/**
|
|
* Creates a dispatcher that may be registered to dispatch invocation
|
|
* service requests for the specified provider.
|
|
*/
|
|
public ZoneDispatcher (ZoneProvider provider)
|
|
{
|
|
this.provider = provider;
|
|
}
|
|
|
|
// documentation inherited
|
|
public InvocationMarshaller createMarshaller ()
|
|
{
|
|
return new ZoneMarshaller();
|
|
}
|
|
|
|
// documentation inherited
|
|
public void dispatchRequest (
|
|
ClientObject source, int methodId, Object[] args)
|
|
throws InvocationException
|
|
{
|
|
switch (methodId) {
|
|
case ZoneMarshaller.MOVE_TO:
|
|
((ZoneProvider)provider).moveTo(
|
|
source,
|
|
((Integer)args[0]).intValue(), ((Integer)args[1]).intValue(), ((Integer)args[2]).intValue(), (ZoneMoveListener)args[3]
|
|
);
|
|
return;
|
|
|
|
default:
|
|
super.dispatchRequest(source, methodId, args);
|
|
}
|
|
}
|
|
|
|
// Generated on 15:03:19 02/08/03.
|
|
}
|