mirror of
https://github.com/opensim/opensim.git
synced 2026-07-19 05:56:12 +08:00
Started work on CAPS support, now we have our first test capability, MapLayer requests are handled by CAPS.
This commit is contained in:
@@ -56,15 +56,14 @@ namespace SimpleApp
|
||||
CommunicationsManager communicationsManager = new CommunicationsLocal(1000, 1000);
|
||||
|
||||
RegionInfo regionInfo = new RegionInfo( );
|
||||
|
||||
udpServer.LocalWorld = new MyWorld( packetServer.ClientAPIs, regionInfo, m_circuitManager, communicationsManager, assetCache );
|
||||
BaseHttpServer httpServer = new BaseHttpServer(simPort);
|
||||
udpServer.LocalWorld = new MyWorld( packetServer.ClientAPIs, regionInfo, m_circuitManager, communicationsManager, assetCache, httpServer );
|
||||
|
||||
// World world = new World(udpServer.PacketServer.ClientAPIs, regionInfo);
|
||||
// PhysicsScene physicsScene = new NullPhysicsScene();
|
||||
// world.PhysicsScene = physicsScene;
|
||||
// udpServer.LocalWorld = world;
|
||||
|
||||
BaseHttpServer httpServer = new BaseHttpServer( simPort );
|
||||
httpServer.AddXmlRPCHandler( "login_to_simulator", loginServer.XmlRpcLoginMethod );
|
||||
httpServer.Start();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user