2007-03-07 18:49:20 +00:00
|
|
|
using System;
|
|
|
|
using libsecondlife;
|
|
|
|
using libsecondlife.Packets;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
2007-03-08 13:21:24 +00:00
|
|
|
using System.Reflection;
|
2007-03-07 20:18:20 +00:00
|
|
|
using System.IO;
|
2007-03-22 10:11:15 +00:00
|
|
|
using OpenSim.Physics.Manager;
|
|
|
|
using OpenSim.Framework.Interfaces;
|
|
|
|
using OpenSim.Framework.Assets;
|
|
|
|
using OpenSim.Framework.Terrain;
|
2007-03-07 18:49:20 +00:00
|
|
|
|
|
|
|
namespace OpenSim.world
|
|
|
|
{
|
2007-03-08 13:21:24 +00:00
|
|
|
public class World : ILocalStorageReceiver
|
2007-03-07 18:49:20 +00:00
|
|
|
{
|
|
|
|
public Dictionary<libsecondlife.LLUUID, Entity> Entities;
|
|
|
|
public float[] LandMap;
|
|
|
|
public ScriptEngine Scripts;
|
|
|
|
public uint _localNumber=0;
|
|
|
|
private PhysicsScene phyScene;
|
|
|
|
private float timeStep= 0.1f;
|
|
|
|
private libsecondlife.TerrainManager TerrainManager;
|
2007-03-08 13:21:24 +00:00
|
|
|
public ILocalStorage localStorage;
|
2007-03-07 18:49:20 +00:00
|
|
|
private Random Rand = new Random();
|
|
|
|
private uint _primCount = 702000;
|
2007-03-08 13:21:24 +00:00
|
|
|
private int storageCount;
|
2007-03-07 18:49:20 +00:00
|
|
|
|
|
|
|
public World()
|
|
|
|
{
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance");
|
2007-03-07 18:49:20 +00:00
|
|
|
Entities = new Dictionary<libsecondlife.LLUUID, Entity>();
|
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating LandMap");
|
2007-03-07 18:49:20 +00:00
|
|
|
TerrainManager = new TerrainManager(new SecondLife());
|
2007-03-07 20:18:20 +00:00
|
|
|
Avatar.SetupTemplate("avatar-template.dat");
|
2007-03-07 18:49:20 +00:00
|
|
|
// ServerConsole.MainConsole.Instance.WriteLine("World.cs - Creating script engine instance");
|
|
|
|
// Initialise this only after the world has loaded
|
|
|
|
// Scripts = new ScriptEngine(this);
|
2007-03-23 16:05:32 +00:00
|
|
|
Avatar.LoadAnims();
|
2007-03-07 18:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public PhysicsScene PhysScene
|
|
|
|
{
|
|
|
|
set
|
|
|
|
{
|
|
|
|
this.phyScene = value;
|
|
|
|
}
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return(this.phyScene);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Update()
|
|
|
|
{
|
2007-03-08 13:21:24 +00:00
|
|
|
if(this.phyScene.IsThreaded)
|
2007-03-07 18:49:20 +00:00
|
|
|
{
|
|
|
|
this.phyScene.GetResults();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (libsecondlife.LLUUID UUID in Entities.Keys)
|
|
|
|
{
|
|
|
|
Entities[UUID].addForces();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.phyScene.Simulate(timeStep);
|
|
|
|
|
|
|
|
foreach (libsecondlife.LLUUID UUID in Entities.Keys)
|
|
|
|
{
|
|
|
|
Entities[UUID].update();
|
|
|
|
}
|
2007-03-08 13:21:24 +00:00
|
|
|
|
|
|
|
//backup world data
|
|
|
|
this.storageCount++;
|
2007-03-22 10:11:15 +00:00
|
|
|
if(storageCount> 1200) //set to how often you want to backup
|
2007-03-08 13:21:24 +00:00
|
|
|
{
|
|
|
|
this.Backup();
|
|
|
|
storageCount =0;
|
|
|
|
}
|
2007-03-07 18:49:20 +00:00
|
|
|
}
|
|
|
|
|
2007-03-08 13:21:24 +00:00
|
|
|
public bool LoadStorageDLL(string dllName)
|
|
|
|
{
|
|
|
|
Assembly pluginAssembly = Assembly.LoadFrom(dllName);
|
|
|
|
ILocalStorage store = null;
|
|
|
|
|
|
|
|
foreach (Type pluginType in pluginAssembly.GetTypes())
|
|
|
|
{
|
|
|
|
if (pluginType.IsPublic)
|
|
|
|
{
|
|
|
|
if (!pluginType.IsAbstract)
|
|
|
|
{
|
|
|
|
Type typeInterface = pluginType.GetInterface("ILocalStorage", true);
|
|
|
|
|
|
|
|
if (typeInterface != null)
|
|
|
|
{
|
|
|
|
ILocalStorage plug = (ILocalStorage)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
|
|
|
|
store = plug;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
typeInterface = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pluginAssembly = null;
|
|
|
|
this.localStorage = store;
|
|
|
|
return(store == null);
|
|
|
|
}
|
|
|
|
|
2007-03-08 18:07:53 +00:00
|
|
|
public void RegenerateTerrain()
|
|
|
|
{
|
|
|
|
HeightmapGenHills hills = new HeightmapGenHills();
|
|
|
|
this.LandMap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false);
|
|
|
|
this.phyScene.SetTerrain(this.LandMap);
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSimRoot.Instance.Cfg.SaveMap(this.LandMap);
|
2007-03-08 18:07:53 +00:00
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
foreach(SimClient client in OpenSimRoot.Instance.ClientThreads.Values) {
|
2007-03-08 18:07:53 +00:00
|
|
|
this.SendLayerData(client);
|
|
|
|
}
|
|
|
|
}
|
2007-03-08 13:21:24 +00:00
|
|
|
public void LoadPrimsFromStorage()
|
|
|
|
{
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs: LoadPrimsFromStorage() - Loading primitives");
|
2007-03-08 13:21:24 +00:00
|
|
|
this.localStorage.LoadPrimitives(this);
|
|
|
|
}
|
|
|
|
|
2007-03-08 18:07:53 +00:00
|
|
|
public void PrimFromStorage(PrimData prim)
|
2007-03-08 13:21:24 +00:00
|
|
|
{
|
|
|
|
if(prim.LocalID >= this._primCount)
|
|
|
|
{
|
|
|
|
_primCount = prim.LocalID + 1;
|
|
|
|
}
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs: PrimFromStorage() - Reloading prim (localId "+ prim.LocalID+ " ) from storage");
|
2007-03-08 13:21:24 +00:00
|
|
|
Primitive nPrim = new Primitive();
|
|
|
|
nPrim.CreateFromStorage(prim);
|
|
|
|
this.Entities.Add(nPrim.uuid, nPrim);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Close()
|
|
|
|
{
|
|
|
|
this.localStorage.ShutDown();
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
public void SendLayerData(SimClient RemoteClient) {
|
2007-03-07 18:49:20 +00:00
|
|
|
int[] patches = new int[4];
|
|
|
|
|
2007-03-08 13:21:24 +00:00
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
for (int x = 0; x < 16; x = x + 4)
|
|
|
|
{
|
|
|
|
patches[0] = x + 0 + y * 16;
|
|
|
|
patches[1] = x + 1 + y * 16;
|
|
|
|
patches[2] = x + 2 + y * 16;
|
|
|
|
patches[3] = x + 3 + y * 16;
|
2007-03-07 18:49:20 +00:00
|
|
|
|
2007-03-08 13:21:24 +00:00
|
|
|
Packet layerpack = TerrainManager.CreateLandPacket(LandMap, patches);
|
|
|
|
RemoteClient.OutPacket(layerpack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
public void GetInitialPrims(SimClient RemoteClient)
|
2007-03-08 13:21:24 +00:00
|
|
|
{
|
|
|
|
foreach (libsecondlife.LLUUID UUID in Entities.Keys)
|
|
|
|
{
|
|
|
|
if(Entities[UUID].ToString()== "OpenSim.world.Primitive")
|
|
|
|
{
|
|
|
|
((OpenSim.world.Primitive)Entities[UUID]).UpdateClient(RemoteClient);
|
|
|
|
}
|
|
|
|
}
|
2007-03-07 18:49:20 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
public void AddViewerAgent(SimClient AgentClient) {
|
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs:AddViewerAgent() - Creating new avatar for remote viewer agent");
|
2007-03-07 18:49:20 +00:00
|
|
|
Avatar NewAvatar = new Avatar(AgentClient);
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs:AddViewerAgent() - Adding new avatar to world");
|
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs:AddViewerAgent() - Starting RegionHandshake ");
|
2007-03-07 18:49:20 +00:00
|
|
|
NewAvatar.SendRegionHandshake(this);
|
2007-03-10 20:30:25 +00:00
|
|
|
PhysicsVector pVec = new PhysicsVector(NewAvatar.position.X, NewAvatar.position.Y, NewAvatar.position.Z);
|
|
|
|
NewAvatar.PhysActor = this.phyScene.AddAvatar(pVec);
|
2007-03-07 18:49:20 +00:00
|
|
|
this.Entities.Add(AgentClient.AgentID, NewAvatar);
|
2007-03-08 13:21:24 +00:00
|
|
|
}
|
2007-03-07 18:49:20 +00:00
|
|
|
|
2007-03-22 10:11:15 +00:00
|
|
|
public void AddNewPrim(ObjectAddPacket addPacket, SimClient AgentClient)
|
2007-03-07 18:49:20 +00:00
|
|
|
{
|
2007-03-22 10:11:15 +00:00
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs: AddNewPrim() - Creating new prim");
|
2007-03-07 18:49:20 +00:00
|
|
|
Primitive prim = new Primitive();
|
|
|
|
prim.CreateFromPacket(addPacket, AgentClient.AgentID, this._primCount);
|
2007-03-10 20:30:25 +00:00
|
|
|
PhysicsVector pVec = new PhysicsVector(prim.position.X, prim.position.Y, prim.position.Z);
|
2007-03-22 10:11:15 +00:00
|
|
|
PhysicsVector pSize = new PhysicsVector( 0.255f, 0.255f, 0.255f);
|
|
|
|
if(OpenSim.world.Avatar.PhysicsEngineFlying)
|
|
|
|
{
|
|
|
|
prim.PhysActor = this.phyScene.AddPrim(pVec, pSize );
|
|
|
|
}
|
2007-03-10 20:30:25 +00:00
|
|
|
//prim.PhysicsEnabled = true;
|
2007-03-07 18:49:20 +00:00
|
|
|
this.Entities.Add(prim.uuid, prim);
|
|
|
|
this._primCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Backup() {
|
2007-03-22 10:11:15 +00:00
|
|
|
|
|
|
|
OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs: Backup() - Backing up Primitives");
|
2007-03-08 13:21:24 +00:00
|
|
|
foreach (libsecondlife.LLUUID UUID in Entities.Keys)
|
|
|
|
{
|
|
|
|
Entities[UUID].BackUp();
|
|
|
|
}
|
|
|
|
return true;
|
2007-03-07 18:49:20 +00:00
|
|
|
}
|
2007-03-07 20:18:20 +00:00
|
|
|
|
2007-03-07 18:49:20 +00:00
|
|
|
}
|
|
|
|
}
|