diff options
77 files changed, 1901 insertions, 1275 deletions
diff --git a/Common/OpenSim.Framework.Console/OpenSim.Framework.Console.csproj.user b/Common/OpenSim.Framework.Console/OpenSim.Framework.Console.csproj.user index 9bfaf67..082d673 100644 --- a/Common/OpenSim.Framework.Console/OpenSim.Framework.Console.csproj.user +++ b/Common/OpenSim.Framework.Console/OpenSim.Framework.Console.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs index 810345f..3eed2b8 100644 --- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs +++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs | |||
@@ -29,6 +29,11 @@ namespace OpenSim.Framework.Interfaces | |||
29 | public delegate void StatusChange(bool status); | 29 | public delegate void StatusChange(bool status); |
30 | public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); | 30 | public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); |
31 | 31 | ||
32 | public delegate void ParcelPropertiesRequest(int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client); | ||
33 | public delegate void ParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); | ||
34 | public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); | ||
35 | public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); // NOTETOSELFremove the packet part | ||
36 | |||
32 | public interface IClientAPI | 37 | public interface IClientAPI |
33 | { | 38 | { |
34 | event ChatFromViewer OnChatFromViewer; | 39 | event ChatFromViewer OnChatFromViewer; |
@@ -81,7 +86,6 @@ namespace OpenSim.Framework.Interfaces | |||
81 | void SendWearables(AvatarWearable[] wearables); | 86 | void SendWearables(AvatarWearable[] wearables); |
82 | void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); | 87 | void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); |
83 | void SendLayerData(float[] map); | 88 | void SendLayerData(float[] map); |
84 | void SendRegionHandshake(RegionInfo regionInfo); | ||
85 | void MoveAgentIntoRegion(RegionInfo regInfo); | 89 | void MoveAgentIntoRegion(RegionInfo regInfo); |
86 | void SendAvatarData(RegionInfo regionInfo, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos); | 90 | void SendAvatarData(RegionInfo regionInfo, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos); |
87 | void InformClientOfNeighbour(ulong neighbourHandle, System.Net.IPAddress neighbourIP, ushort neighbourPort); | 91 | void InformClientOfNeighbour(ulong neighbourHandle, System.Net.IPAddress neighbourIP, ushort neighbourPort); |
diff --git a/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs b/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs index 4dd8868..7307966 100644 --- a/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs +++ b/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs | |||
@@ -37,11 +37,20 @@ namespace OpenSim.Framework.Interfaces | |||
37 | public interface ILocalStorage | 37 | public interface ILocalStorage |
38 | { | 38 | { |
39 | void Initialise(string datastore); | 39 | void Initialise(string datastore); |
40 | |||
40 | void StorePrim(PrimData prim); | 41 | void StorePrim(PrimData prim); |
41 | void RemovePrim(LLUUID primID); | 42 | void RemovePrim(LLUUID primID); |
42 | void LoadPrimitives(ILocalStorageReceiver receiver); | 43 | void LoadPrimitives(ILocalStorageReceiver receiver); |
44 | |||
43 | float[] LoadWorld(); | 45 | float[] LoadWorld(); |
44 | void SaveMap(float[] heightmap); | 46 | void SaveMap(float[] heightmap); |
47 | |||
48 | void SaveParcels(ParcelData[] parcels); | ||
49 | void SaveParcel(ParcelData parcel); | ||
50 | void RemoveParcel(ParcelData parcel); | ||
51 | void RemoveAllParcels(); | ||
52 | void LoadParcels(ILocalStorageParcelReceiver recv); | ||
53 | |||
45 | void ShutDown(); | 54 | void ShutDown(); |
46 | } | 55 | } |
47 | 56 | ||
@@ -50,5 +59,10 @@ namespace OpenSim.Framework.Interfaces | |||
50 | void PrimFromStorage(PrimData prim); | 59 | void PrimFromStorage(PrimData prim); |
51 | } | 60 | } |
52 | 61 | ||
62 | public interface ILocalStorageParcelReceiver | ||
63 | { | ||
64 | void ParcelFromStorage(ParcelData data); | ||
65 | void NoParcelDataFromStorage(); | ||
66 | } | ||
53 | } | 67 | } |
54 | 68 | ||
diff --git a/Common/OpenSim.Framework/OpenSim.Framework.csproj b/Common/OpenSim.Framework/OpenSim.Framework.csproj index 39ce0ff..ab29d04 100644 --- a/Common/OpenSim.Framework/OpenSim.Framework.csproj +++ b/Common/OpenSim.Framework/OpenSim.Framework.csproj | |||
@@ -144,15 +144,15 @@ | |||
144 | <Compile Include="Interfaces\IWorld.cs"> | 144 | <Compile Include="Interfaces\IWorld.cs"> |
145 | <SubType>Code</SubType> | 145 | <SubType>Code</SubType> |
146 | </Compile> | 146 | </Compile> |
147 | <Compile Include="Interfaces\IClientAPI.cs"> | ||
148 | <SubType>Code</SubType> | ||
149 | </Compile> | ||
150 | <Compile Include="Interfaces\IGridServer.cs"> | 147 | <Compile Include="Interfaces\IGridServer.cs"> |
151 | <SubType>Code</SubType> | 148 | <SubType>Code</SubType> |
152 | </Compile> | 149 | </Compile> |
153 | <Compile Include="Interfaces\ILocalStorage.cs"> | 150 | <Compile Include="Interfaces\ILocalStorage.cs"> |
154 | <SubType>Code</SubType> | 151 | <SubType>Code</SubType> |
155 | </Compile> | 152 | </Compile> |
153 | <Compile Include="Interfaces\IClientAPI.cs"> | ||
154 | <SubType>Code</SubType> | ||
155 | </Compile> | ||
156 | <Compile Include="Interfaces\Scripting\IScriptEngine.cs"> | 156 | <Compile Include="Interfaces\Scripting\IScriptEngine.cs"> |
157 | <SubType>Code</SubType> | 157 | <SubType>Code</SubType> |
158 | </Compile> | 158 | </Compile> |
@@ -195,7 +195,7 @@ | |||
195 | <Compile Include="Types\NetworkServersInfo.cs"> | 195 | <Compile Include="Types\NetworkServersInfo.cs"> |
196 | <SubType>Code</SubType> | 196 | <SubType>Code</SubType> |
197 | </Compile> | 197 | </Compile> |
198 | <Compile Include="Types\RegionInfo.cs"> | 198 | <Compile Include="Types\ParcelData.cs"> |
199 | <SubType>Code</SubType> | 199 | <SubType>Code</SubType> |
200 | </Compile> | 200 | </Compile> |
201 | <Compile Include="Types\AgentWearable.cs"> | 201 | <Compile Include="Types\AgentWearable.cs"> |
@@ -207,6 +207,9 @@ | |||
207 | <Compile Include="Types\AssetStorage.cs"> | 207 | <Compile Include="Types\AssetStorage.cs"> |
208 | <SubType>Code</SubType> | 208 | <SubType>Code</SubType> |
209 | </Compile> | 209 | </Compile> |
210 | <Compile Include="Types\EstateSettings.cs"> | ||
211 | <SubType>Code</SubType> | ||
212 | </Compile> | ||
210 | <Compile Include="Types\OSVector3.cs"> | 213 | <Compile Include="Types\OSVector3.cs"> |
211 | <SubType>Code</SubType> | 214 | <SubType>Code</SubType> |
212 | </Compile> | 215 | </Compile> |
@@ -222,10 +225,7 @@ | |||
222 | <Compile Include="Types\AssetBase.cs"> | 225 | <Compile Include="Types\AssetBase.cs"> |
223 | <SubType>Code</SubType> | 226 | <SubType>Code</SubType> |
224 | </Compile> | 227 | </Compile> |
225 | <Compile Include="Types\ParcelData.cs"> | 228 | <Compile Include="Types\RegionInfo.cs"> |
226 | <SubType>Code</SubType> | ||
227 | </Compile> | ||
228 | <Compile Include="Types\EstateSettings.cs"> | ||
229 | <SubType>Code</SubType> | 229 | <SubType>Code</SubType> |
230 | </Compile> | 230 | </Compile> |
231 | </ItemGroup> | 231 | </ItemGroup> |
diff --git a/Common/OpenSim.Framework/OpenSim.Framework.csproj.user b/Common/OpenSim.Framework/OpenSim.Framework.csproj.user index 9bfaf67..082d673 100644 --- a/Common/OpenSim.Framework/OpenSim.Framework.csproj.user +++ b/Common/OpenSim.Framework/OpenSim.Framework.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Common/OpenSim.Framework/OpenSim.Framework.dll.build b/Common/OpenSim.Framework/OpenSim.Framework.dll.build index a75388f..a45a121 100644 --- a/Common/OpenSim.Framework/OpenSim.Framework.dll.build +++ b/Common/OpenSim.Framework/OpenSim.Framework.dll.build | |||
@@ -29,9 +29,9 @@ | |||
29 | <include name="Interfaces/IUserServer.cs" /> | 29 | <include name="Interfaces/IUserServer.cs" /> |
30 | <include name="Interfaces/IAssetServer.cs" /> | 30 | <include name="Interfaces/IAssetServer.cs" /> |
31 | <include name="Interfaces/IWorld.cs" /> | 31 | <include name="Interfaces/IWorld.cs" /> |
32 | <include name="Interfaces/IClientAPI.cs" /> | ||
33 | <include name="Interfaces/IGridServer.cs" /> | 32 | <include name="Interfaces/IGridServer.cs" /> |
34 | <include name="Interfaces/ILocalStorage.cs" /> | 33 | <include name="Interfaces/ILocalStorage.cs" /> |
34 | <include name="Interfaces/IClientAPI.cs" /> | ||
35 | <include name="Interfaces/Scripting/IScriptEngine.cs" /> | 35 | <include name="Interfaces/Scripting/IScriptEngine.cs" /> |
36 | <include name="Interfaces/Scripting/IScriptAPI.cs" /> | 36 | <include name="Interfaces/Scripting/IScriptAPI.cs" /> |
37 | <include name="Interfaces/Remoting/IProxyServerHost.cs" /> | 37 | <include name="Interfaces/Remoting/IProxyServerHost.cs" /> |
@@ -46,17 +46,17 @@ | |||
46 | <include name="Properties/AssemblyInfo.cs" /> | 46 | <include name="Properties/AssemblyInfo.cs" /> |
47 | <include name="Types/NeighbourInfo.cs" /> | 47 | <include name="Types/NeighbourInfo.cs" /> |
48 | <include name="Types/NetworkServersInfo.cs" /> | 48 | <include name="Types/NetworkServersInfo.cs" /> |
49 | <include name="Types/RegionInfo.cs" /> | 49 | <include name="Types/ParcelData.cs" /> |
50 | <include name="Types/AgentWearable.cs" /> | 50 | <include name="Types/AgentWearable.cs" /> |
51 | <include name="Types/PrimData.cs" /> | 51 | <include name="Types/PrimData.cs" /> |
52 | <include name="Types/AssetStorage.cs" /> | 52 | <include name="Types/AssetStorage.cs" /> |
53 | <include name="Types/EstateSettings.cs" /> | ||
53 | <include name="Types/OSVector3.cs" /> | 54 | <include name="Types/OSVector3.cs" /> |
54 | <include name="Types/AgentCiruitData.cs" /> | 55 | <include name="Types/AgentCiruitData.cs" /> |
55 | <include name="Types/Login.cs" /> | 56 | <include name="Types/Login.cs" /> |
56 | <include name="Types/AssetLandmark.cs" /> | 57 | <include name="Types/AssetLandmark.cs" /> |
57 | <include name="Types/AssetBase.cs" /> | 58 | <include name="Types/AssetBase.cs" /> |
58 | <include name="Types/ParcelData.cs" /> | 59 | <include name="Types/RegionInfo.cs" /> |
59 | <include name="Types/EstateSettings.cs" /> | ||
60 | </sources> | 60 | </sources> |
61 | <references basedir="${project::get-base-directory()}"> | 61 | <references basedir="${project::get-base-directory()}"> |
62 | <lib> | 62 | <lib> |
diff --git a/Common/OpenSim.Framework/Types/RegionInfo.cs b/Common/OpenSim.Framework/Types/RegionInfo.cs index fd3b24f..7fa7fe2 100644 --- a/Common/OpenSim.Framework/Types/RegionInfo.cs +++ b/Common/OpenSim.Framework/Types/RegionInfo.cs | |||
@@ -10,47 +10,24 @@ namespace OpenSim.Framework.Types | |||
10 | { | 10 | { |
11 | public class RegionInfo | 11 | public class RegionInfo |
12 | { | 12 | { |
13 | public LLUUID SimUUID; | 13 | public LLUUID SimUUID = new LLUUID(); |
14 | public string RegionName; | 14 | public string RegionName = ""; |
15 | public uint RegionLocX; | 15 | public uint RegionLocX = 0; |
16 | public uint RegionLocY; | 16 | public uint RegionLocY = 0; |
17 | public ulong RegionHandle; | 17 | public ulong RegionHandle = 0; |
18 | public ushort RegionWaterHeight = 20; | 18 | |
19 | public bool RegionTerraform = true; | 19 | public string DataStore = ""; |
20 | 20 | public bool isSandbox = false; | |
21 | public int IPListenPort; | 21 | |
22 | public string IPListenAddr; | 22 | public LLUUID MasterAvatarAssignedUUID = new LLUUID(); |
23 | 23 | public string MasterAvatarFirstName = ""; | |
24 | private bool isSandbox; | 24 | public string MasterAvatarLastName = ""; |
25 | public string DataStore; | 25 | |
26 | 26 | public int IPListenPort = 0; | |
27 | // Region Information | 27 | public string IPListenAddr = ""; |
28 | // Low resolution 'base' textures. No longer used. | 28 | |
29 | public LLUUID TerrainBase0 = new LLUUID("b8d3965a-ad78-bf43-699b-bff8eca6c975"); // Default | 29 | |
30 | public LLUUID TerrainBase1 = new LLUUID("abb783e6-3e93-26c0-248a-247666855da3"); // Default | 30 | public EstateSettings estateSettings; |
31 | public LLUUID TerrainBase2 = new LLUUID("179cdabd-398a-9b6b-1391-4dc333ba321f"); // Default | ||
32 | public LLUUID TerrainBase3 = new LLUUID("beb169c7-11ea-fff2-efe5-0f24dc881df2"); // Default | ||
33 | // Higher resolution terrain textures | ||
34 | public LLUUID TerrainDetail0 = new LLUUID("00000000-0000-0000-0000-000000000000"); | ||
35 | public LLUUID TerrainDetail1 = new LLUUID("00000000-0000-0000-0000-000000000000"); | ||
36 | public LLUUID TerrainDetail2 = new LLUUID("00000000-0000-0000-0000-000000000000"); | ||
37 | public LLUUID TerrainDetail3 = new LLUUID("00000000-0000-0000-0000-000000000000"); | ||
38 | // First quad - each point is bilinearly interpolated at each meter of terrain | ||
39 | public float TerrainStartHeight00 = 10.0f; // NW Corner ( I think ) | ||
40 | public float TerrainStartHeight01 = 10.0f; // NE Corner ( I think ) | ||
41 | public float TerrainStartHeight10 = 10.0f; // SW Corner ( I think ) | ||
42 | public float TerrainStartHeight11 = 10.0f; // SE Corner ( I think ) | ||
43 | // Second quad - also bilinearly interpolated. | ||
44 | // Terrain texturing is done that: | ||
45 | // 0..3 (0 = base0, 3 = base3) = (terrain[x,y] - start[x,y]) / range[x,y] | ||
46 | public float TerrainHeightRange00 = 60.0f; | ||
47 | public float TerrainHeightRange01 = 60.0f; | ||
48 | public float TerrainHeightRange10 = 60.0f; | ||
49 | public float TerrainHeightRange11 = 60.0f; | ||
50 | |||
51 | // Terrain Default (Must be in F32 Format!) | ||
52 | public string TerrainFile = "default.r32"; | ||
53 | public double TerrainMultiplier = 60.0; | ||
54 | 31 | ||
55 | public RegionInfo() | 32 | public RegionInfo() |
56 | { | 33 | { |
diff --git a/Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.csproj.user b/Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.csproj.user index 9bfaf67..082d673 100644 --- a/Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.csproj.user +++ b/Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Common/OpenSim.Servers/OpenSim.Servers.csproj b/Common/OpenSim.Servers/OpenSim.Servers.csproj index e89a62c..6768ce4 100644 --- a/Common/OpenSim.Servers/OpenSim.Servers.csproj +++ b/Common/OpenSim.Servers/OpenSim.Servers.csproj | |||
@@ -92,13 +92,13 @@ | |||
92 | </ProjectReference> | 92 | </ProjectReference> |
93 | </ItemGroup> | 93 | </ItemGroup> |
94 | <ItemGroup> | 94 | <ItemGroup> |
95 | <Compile Include="BaseHttpServer.cs"> | 95 | <Compile Include="LoginServer.cs"> |
96 | <SubType>Code</SubType> | 96 | <SubType>Code</SubType> |
97 | </Compile> | 97 | </Compile> |
98 | <Compile Include="BaseServer.cs"> | 98 | <Compile Include="BaseHttpServer.cs"> |
99 | <SubType>Code</SubType> | 99 | <SubType>Code</SubType> |
100 | </Compile> | 100 | </Compile> |
101 | <Compile Include="CheckSumServer.cs"> | 101 | <Compile Include="BaseServer.cs"> |
102 | <SubType>Code</SubType> | 102 | <SubType>Code</SubType> |
103 | </Compile> | 103 | </Compile> |
104 | <Compile Include="IRestHandler.cs"> | 104 | <Compile Include="IRestHandler.cs"> |
@@ -107,16 +107,16 @@ | |||
107 | <Compile Include="LocalUserProfileManager.cs"> | 107 | <Compile Include="LocalUserProfileManager.cs"> |
108 | <SubType>Code</SubType> | 108 | <SubType>Code</SubType> |
109 | </Compile> | 109 | </Compile> |
110 | <Compile Include="LoginResponse.cs"> | 110 | <Compile Include="XmlRpcMethod.cs"> |
111 | <SubType>Code</SubType> | 111 | <SubType>Code</SubType> |
112 | </Compile> | 112 | </Compile> |
113 | <Compile Include="LoginServer.cs"> | 113 | <Compile Include="LoginResponse.cs"> |
114 | <SubType>Code</SubType> | 114 | <SubType>Code</SubType> |
115 | </Compile> | 115 | </Compile> |
116 | <Compile Include="UDPServerBase.cs"> | 116 | <Compile Include="CheckSumServer.cs"> |
117 | <SubType>Code</SubType> | 117 | <SubType>Code</SubType> |
118 | </Compile> | 118 | </Compile> |
119 | <Compile Include="XmlRpcMethod.cs"> | 119 | <Compile Include="UDPServerBase.cs"> |
120 | <SubType>Code</SubType> | 120 | <SubType>Code</SubType> |
121 | </Compile> | 121 | </Compile> |
122 | </ItemGroup> | 122 | </ItemGroup> |
diff --git a/Common/OpenSim.Servers/OpenSim.Servers.csproj.user b/Common/OpenSim.Servers/OpenSim.Servers.csproj.user index 9bfaf67..082d673 100644 --- a/Common/OpenSim.Servers/OpenSim.Servers.csproj.user +++ b/Common/OpenSim.Servers/OpenSim.Servers.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Common/OpenSim.Servers/OpenSim.Servers.dll.build b/Common/OpenSim.Servers/OpenSim.Servers.dll.build index 41c1350..a2af584 100644 --- a/Common/OpenSim.Servers/OpenSim.Servers.dll.build +++ b/Common/OpenSim.Servers/OpenSim.Servers.dll.build | |||
@@ -11,15 +11,15 @@ | |||
11 | <resources prefix="OpenSim.Servers" dynamicprefix="true" > | 11 | <resources prefix="OpenSim.Servers" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="LoginServer.cs" /> | ||
14 | <include name="BaseHttpServer.cs" /> | 15 | <include name="BaseHttpServer.cs" /> |
15 | <include name="BaseServer.cs" /> | 16 | <include name="BaseServer.cs" /> |
16 | <include name="CheckSumServer.cs" /> | ||
17 | <include name="IRestHandler.cs" /> | 17 | <include name="IRestHandler.cs" /> |
18 | <include name="LocalUserProfileManager.cs" /> | 18 | <include name="LocalUserProfileManager.cs" /> |
19 | <include name="XmlRpcMethod.cs" /> | ||
19 | <include name="LoginResponse.cs" /> | 20 | <include name="LoginResponse.cs" /> |
20 | <include name="LoginServer.cs" /> | 21 | <include name="CheckSumServer.cs" /> |
21 | <include name="UDPServerBase.cs" /> | 22 | <include name="UDPServerBase.cs" /> |
22 | <include name="XmlRpcMethod.cs" /> | ||
23 | </sources> | 23 | </sources> |
24 | <references basedir="${project::get-base-directory()}"> | 24 | <references basedir="${project::get-base-directory()}"> |
25 | <lib> | 25 | <lib> |
diff --git a/Common/XmlRpcCS/XMLRPC.csproj b/Common/XmlRpcCS/XMLRPC.csproj index 61f8be0..1ab494e 100644 --- a/Common/XmlRpcCS/XMLRPC.csproj +++ b/Common/XmlRpcCS/XMLRPC.csproj | |||
@@ -70,58 +70,58 @@ | |||
70 | <ItemGroup> | 70 | <ItemGroup> |
71 | </ItemGroup> | 71 | </ItemGroup> |
72 | <ItemGroup> | 72 | <ItemGroup> |
73 | <Compile Include="Logger.cs"> | 73 | <Compile Include="XmlRpcBoxcarRequest.cs"> |
74 | <SubType>Code</SubType> | 74 | <SubType>Code</SubType> |
75 | </Compile> | 75 | </Compile> |
76 | <Compile Include="SimpleHttpRequest.cs"> | 76 | <Compile Include="XmlRpcRequest.cs"> |
77 | <SubType>Code</SubType> | 77 | <SubType>Code</SubType> |
78 | </Compile> | 78 | </Compile> |
79 | <Compile Include="XmlRpcBoxcarRequest.cs"> | 79 | <Compile Include="XmlRpcResponseSerializer.cs"> |
80 | <SubType>Code</SubType> | 80 | <SubType>Code</SubType> |
81 | </Compile> | 81 | </Compile> |
82 | <Compile Include="XmlRpcClientProxy.cs"> | 82 | <Compile Include="Logger.cs"> |
83 | <SubType>Code</SubType> | 83 | <SubType>Code</SubType> |
84 | </Compile> | 84 | </Compile> |
85 | <Compile Include="XmlRpcDeserializer.cs"> | 85 | <Compile Include="XmlRpcRequestDeserializer.cs"> |
86 | <SubType>Code</SubType> | 86 | <SubType>Code</SubType> |
87 | </Compile> | 87 | </Compile> |
88 | <Compile Include="XmlRpcErrorCodes.cs"> | 88 | <Compile Include="XmlRpcExposedAttribute.cs"> |
89 | <SubType>Code</SubType> | 89 | <SubType>Code</SubType> |
90 | </Compile> | 90 | </Compile> |
91 | <Compile Include="XmlRpcException.cs"> | 91 | <Compile Include="XmlRpcResponse.cs"> |
92 | <SubType>Code</SubType> | 92 | <SubType>Code</SubType> |
93 | </Compile> | 93 | </Compile> |
94 | <Compile Include="XmlRpcExposedAttribute.cs"> | 94 | <Compile Include="XmlRpcException.cs"> |
95 | <SubType>Code</SubType> | 95 | <SubType>Code</SubType> |
96 | </Compile> | 96 | </Compile> |
97 | <Compile Include="XmlRpcRequest.cs"> | 97 | <Compile Include="XmlRpcResponder.cs"> |
98 | <SubType>Code</SubType> | 98 | <SubType>Code</SubType> |
99 | </Compile> | 99 | </Compile> |
100 | <Compile Include="XmlRpcRequestDeserializer.cs"> | 100 | <Compile Include="XmlRpcResponseDeserializer.cs"> |
101 | <SubType>Code</SubType> | 101 | <SubType>Code</SubType> |
102 | </Compile> | 102 | </Compile> |
103 | <Compile Include="XmlRpcRequestSerializer.cs"> | 103 | <Compile Include="XmlRpcServer.cs"> |
104 | <SubType>Code</SubType> | 104 | <SubType>Code</SubType> |
105 | </Compile> | 105 | </Compile> |
106 | <Compile Include="XmlRpcResponder.cs"> | 106 | <Compile Include="XmlRpcErrorCodes.cs"> |
107 | <SubType>Code</SubType> | 107 | <SubType>Code</SubType> |
108 | </Compile> | 108 | </Compile> |
109 | <Compile Include="XmlRpcResponse.cs"> | 109 | <Compile Include="XmlRpcSerializer.cs"> |
110 | <SubType>Code</SubType> | 110 | <SubType>Code</SubType> |
111 | </Compile> | 111 | </Compile> |
112 | <Compile Include="XmlRpcResponseDeserializer.cs"> | 112 | <Compile Include="XmlRpcSystemObject.cs"> |
113 | <SubType>Code</SubType> | 113 | <SubType>Code</SubType> |
114 | </Compile> | 114 | </Compile> |
115 | <Compile Include="XmlRpcResponseSerializer.cs"> | 115 | <Compile Include="SimpleHttpRequest.cs"> |
116 | <SubType>Code</SubType> | 116 | <SubType>Code</SubType> |
117 | </Compile> | 117 | </Compile> |
118 | <Compile Include="XmlRpcSerializer.cs"> | 118 | <Compile Include="XmlRpcClientProxy.cs"> |
119 | <SubType>Code</SubType> | 119 | <SubType>Code</SubType> |
120 | </Compile> | 120 | </Compile> |
121 | <Compile Include="XmlRpcServer.cs"> | 121 | <Compile Include="XmlRpcRequestSerializer.cs"> |
122 | <SubType>Code</SubType> | 122 | <SubType>Code</SubType> |
123 | </Compile> | 123 | </Compile> |
124 | <Compile Include="XmlRpcSystemObject.cs"> | 124 | <Compile Include="XmlRpcDeserializer.cs"> |
125 | <SubType>Code</SubType> | 125 | <SubType>Code</SubType> |
126 | </Compile> | 126 | </Compile> |
127 | <Compile Include="XmlRpcXmlTokens.cs"> | 127 | <Compile Include="XmlRpcXmlTokens.cs"> |
diff --git a/Common/XmlRpcCS/XMLRPC.csproj.user b/Common/XmlRpcCS/XMLRPC.csproj.user index 9bfaf67..082d673 100644 --- a/Common/XmlRpcCS/XMLRPC.csproj.user +++ b/Common/XmlRpcCS/XMLRPC.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Common/XmlRpcCS/XMLRPC.dll.build b/Common/XmlRpcCS/XMLRPC.dll.build index 2eabfcd..e7936c3 100644 --- a/Common/XmlRpcCS/XMLRPC.dll.build +++ b/Common/XmlRpcCS/XMLRPC.dll.build | |||
@@ -11,24 +11,24 @@ | |||
11 | <resources prefix="XMLRPC" dynamicprefix="true" > | 11 | <resources prefix="XMLRPC" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="Logger.cs" /> | ||
15 | <include name="SimpleHttpRequest.cs" /> | ||
16 | <include name="XmlRpcBoxcarRequest.cs" /> | 14 | <include name="XmlRpcBoxcarRequest.cs" /> |
17 | <include name="XmlRpcClientProxy.cs" /> | ||
18 | <include name="XmlRpcDeserializer.cs" /> | ||
19 | <include name="XmlRpcErrorCodes.cs" /> | ||
20 | <include name="XmlRpcException.cs" /> | ||
21 | <include name="XmlRpcExposedAttribute.cs" /> | ||
22 | <include name="XmlRpcRequest.cs" /> | 15 | <include name="XmlRpcRequest.cs" /> |
16 | <include name="XmlRpcResponseSerializer.cs" /> | ||
17 | <include name="Logger.cs" /> | ||
23 | <include name="XmlRpcRequestDeserializer.cs" /> | 18 | <include name="XmlRpcRequestDeserializer.cs" /> |
24 | <include name="XmlRpcRequestSerializer.cs" /> | 19 | <include name="XmlRpcExposedAttribute.cs" /> |
25 | <include name="XmlRpcResponder.cs" /> | ||
26 | <include name="XmlRpcResponse.cs" /> | 20 | <include name="XmlRpcResponse.cs" /> |
21 | <include name="XmlRpcException.cs" /> | ||
22 | <include name="XmlRpcResponder.cs" /> | ||
27 | <include name="XmlRpcResponseDeserializer.cs" /> | 23 | <include name="XmlRpcResponseDeserializer.cs" /> |
28 | <include name="XmlRpcResponseSerializer.cs" /> | ||
29 | <include name="XmlRpcSerializer.cs" /> | ||
30 | <include name="XmlRpcServer.cs" /> | 24 | <include name="XmlRpcServer.cs" /> |
25 | <include name="XmlRpcErrorCodes.cs" /> | ||
26 | <include name="XmlRpcSerializer.cs" /> | ||
31 | <include name="XmlRpcSystemObject.cs" /> | 27 | <include name="XmlRpcSystemObject.cs" /> |
28 | <include name="SimpleHttpRequest.cs" /> | ||
29 | <include name="XmlRpcClientProxy.cs" /> | ||
30 | <include name="XmlRpcRequestSerializer.cs" /> | ||
31 | <include name="XmlRpcDeserializer.cs" /> | ||
32 | <include name="XmlRpcXmlTokens.cs" /> | 32 | <include name="XmlRpcXmlTokens.cs" /> |
33 | </sources> | 33 | </sources> |
34 | <references basedir="${project::get-base-directory()}"> | 34 | <references basedir="${project::get-base-directory()}"> |
diff --git a/OpenGridServices/OpenGrid.Config/GridConfigDb4o/OpenGrid.Config.GridConfigDb4o.csproj.user b/OpenGridServices/OpenGrid.Config/GridConfigDb4o/OpenGrid.Config.GridConfigDb4o.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Config/GridConfigDb4o/OpenGrid.Config.GridConfigDb4o.csproj.user +++ b/OpenGridServices/OpenGrid.Config/GridConfigDb4o/OpenGrid.Config.GridConfigDb4o.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj b/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj index 6ced216..3b783ca 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj +++ b/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj | |||
@@ -1,116 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <PropertyGroup> | ||
4 | <ProjectType>Local</ProjectType> | ||
5 | <ProductVersion>8.0.50727</ProductVersion> | ||
6 | <SchemaVersion>2.0</SchemaVersion> | ||
7 | <ProjectGuid>{39BD9497-0000-0000-0000-000000000000}</ProjectGuid> | ||
8 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
9 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
10 | <ApplicationIcon></ApplicationIcon> | ||
11 | <AssemblyKeyContainerName> | ||
12 | </AssemblyKeyContainerName> | ||
13 | <AssemblyName>OpenGrid.Framework.Data.DB4o</AssemblyName> | ||
14 | <DefaultClientScript>JScript</DefaultClientScript> | ||
15 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
16 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
17 | <DelaySign>false</DelaySign> | ||
18 | <OutputType>Library</OutputType> | ||
19 | <AppDesignerFolder></AppDesignerFolder> | ||
20 | <RootNamespace>OpenGrid.Framework.Data.DB4o</RootNamespace> | ||
21 | <StartupObject></StartupObject> | ||
22 | <FileUpgradeFlags> | ||
23 | </FileUpgradeFlags> | ||
24 | </PropertyGroup> | ||
25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
26 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
27 | <BaseAddress>285212672</BaseAddress> | ||
28 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
29 | <ConfigurationOverrideFile> | ||
30 | </ConfigurationOverrideFile> | ||
31 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
32 | <DocumentationFile></DocumentationFile> | ||
33 | <DebugSymbols>True</DebugSymbols> | ||
34 | <FileAlignment>4096</FileAlignment> | ||
35 | <Optimize>False</Optimize> | ||
36 | <OutputPath>..\..\bin\</OutputPath> | ||
37 | <RegisterForComInterop>False</RegisterForComInterop> | ||
38 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
39 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
40 | <WarningLevel>4</WarningLevel> | ||
41 | <NoWarn></NoWarn> | ||
42 | </PropertyGroup> | ||
43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
44 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
45 | <BaseAddress>285212672</BaseAddress> | ||
46 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
47 | <ConfigurationOverrideFile> | ||
48 | </ConfigurationOverrideFile> | ||
49 | <DefineConstants>TRACE</DefineConstants> | ||
50 | <DocumentationFile></DocumentationFile> | ||
51 | <DebugSymbols>False</DebugSymbols> | ||
52 | <FileAlignment>4096</FileAlignment> | ||
53 | <Optimize>True</Optimize> | ||
54 | <OutputPath>..\..\bin\</OutputPath> | ||
55 | <RegisterForComInterop>False</RegisterForComInterop> | ||
56 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
57 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
58 | <WarningLevel>4</WarningLevel> | ||
59 | <NoWarn></NoWarn> | ||
60 | </PropertyGroup> | ||
61 | <ItemGroup> | ||
62 | <Reference Include="System" > | ||
63 | <HintPath>System.dll</HintPath> | ||
64 | <Private>False</Private> | ||
65 | </Reference> | ||
66 | <Reference Include="System.Xml" > | ||
67 | <HintPath>System.Xml.dll</HintPath> | ||
68 | <Private>False</Private> | ||
69 | </Reference> | ||
70 | <Reference Include="System.Data" > | ||
71 | <HintPath>System.Data.dll</HintPath> | ||
72 | <Private>False</Private> | ||
73 | </Reference> | ||
74 | <Reference Include="libsecondlife.dll" > | ||
75 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
76 | <Private>False</Private> | ||
77 | </Reference> | ||
78 | <Reference Include="Db4objects.Db4o.dll" > | ||
79 | <HintPath>..\..\bin\Db4objects.Db4o.dll</HintPath> | ||
80 | <Private>False</Private> | ||
81 | </Reference> | ||
82 | </ItemGroup> | ||
83 | <ItemGroup> | ||
84 | <ProjectReference Include="..\OpenGrid.Framework.Data\OpenGrid.Framework.Data.csproj"> | ||
85 | <Name>OpenGrid.Framework.Data</Name> | ||
86 | <Project>{62CDF671-0000-0000-0000-000000000000}</Project> | ||
87 | <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> | ||
88 | <Private>False</Private> | ||
89 | </ProjectReference> | ||
90 | </ItemGroup> | ||
91 | <ItemGroup> | ||
92 | <Compile Include="DB4oGridData.cs"> | ||
93 | <SubType>Code</SubType> | ||
94 | </Compile> | ||
95 | <Compile Include="DB4oManager.cs"> | ||
96 | <SubType>Code</SubType> | ||
97 | </Compile> | ||
98 | <Compile Include="DB4oUserData.cs"> | ||
99 | <SubType>Code</SubType> | ||
100 | </Compile> | ||
101 | <Compile Include="Properties\AssemblyInfo.cs"> | ||
102 | <SubType>Code</SubType> | ||
103 | </Compile> | ||
104 | </ItemGroup> | ||
105 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
106 | <PropertyGroup> | ||
107 | <PreBuildEvent> | ||
108 | </PreBuildEvent> | ||
109 | <PostBuildEvent> | ||
110 | </PostBuildEvent> | ||
111 | </PropertyGroup> | ||
112 | </Project> | ||
113 | ======= | ||
114 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
115 | <PropertyGroup> | 2 | <PropertyGroup> |
116 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -222,4 +109,3 @@ | |||
222 | </PostBuildEvent> | 109 | </PostBuildEvent> |
223 | </PropertyGroup> | 110 | </PropertyGroup> |
224 | </Project> | 111 | </Project> |
225 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj.user b/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Data.DB4o/OpenGrid.Framework.Data.DB4o.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Data.MSSQL/OpenGrid.Framework.Data.MSSQL.csproj.user b/OpenGridServices/OpenGrid.Framework.Data.MSSQL/OpenGrid.Framework.Data.MSSQL.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.MSSQL/OpenGrid.Framework.Data.MSSQL.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Data.MSSQL/OpenGrid.Framework.Data.MSSQL.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj b/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj index 351de2a..5fe0cf7 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj +++ b/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj | |||
@@ -1,122 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <PropertyGroup> | ||
4 | <ProjectType>Local</ProjectType> | ||
5 | <ProductVersion>8.0.50727</ProductVersion> | ||
6 | <SchemaVersion>2.0</SchemaVersion> | ||
7 | <ProjectGuid>{0F3C3AC1-0000-0000-0000-000000000000}</ProjectGuid> | ||
8 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
9 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
10 | <ApplicationIcon></ApplicationIcon> | ||
11 | <AssemblyKeyContainerName> | ||
12 | </AssemblyKeyContainerName> | ||
13 | <AssemblyName>OpenGrid.Framework.Data.MySQL</AssemblyName> | ||
14 | <DefaultClientScript>JScript</DefaultClientScript> | ||
15 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
16 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
17 | <DelaySign>false</DelaySign> | ||
18 | <OutputType>Library</OutputType> | ||
19 | <AppDesignerFolder></AppDesignerFolder> | ||
20 | <RootNamespace>OpenGrid.Framework.Data.MySQL</RootNamespace> | ||
21 | <StartupObject></StartupObject> | ||
22 | <FileUpgradeFlags> | ||
23 | </FileUpgradeFlags> | ||
24 | </PropertyGroup> | ||
25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
26 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
27 | <BaseAddress>285212672</BaseAddress> | ||
28 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
29 | <ConfigurationOverrideFile> | ||
30 | </ConfigurationOverrideFile> | ||
31 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
32 | <DocumentationFile></DocumentationFile> | ||
33 | <DebugSymbols>True</DebugSymbols> | ||
34 | <FileAlignment>4096</FileAlignment> | ||
35 | <Optimize>False</Optimize> | ||
36 | <OutputPath>..\..\bin\</OutputPath> | ||
37 | <RegisterForComInterop>False</RegisterForComInterop> | ||
38 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
39 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
40 | <WarningLevel>4</WarningLevel> | ||
41 | <NoWarn></NoWarn> | ||
42 | </PropertyGroup> | ||
43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
44 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
45 | <BaseAddress>285212672</BaseAddress> | ||
46 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
47 | <ConfigurationOverrideFile> | ||
48 | </ConfigurationOverrideFile> | ||
49 | <DefineConstants>TRACE</DefineConstants> | ||
50 | <DocumentationFile></DocumentationFile> | ||
51 | <DebugSymbols>False</DebugSymbols> | ||
52 | <FileAlignment>4096</FileAlignment> | ||
53 | <Optimize>True</Optimize> | ||
54 | <OutputPath>..\..\bin\</OutputPath> | ||
55 | <RegisterForComInterop>False</RegisterForComInterop> | ||
56 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
57 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
58 | <WarningLevel>4</WarningLevel> | ||
59 | <NoWarn></NoWarn> | ||
60 | </PropertyGroup> | ||
61 | <ItemGroup> | ||
62 | <Reference Include="System" > | ||
63 | <HintPath>System.dll</HintPath> | ||
64 | <Private>False</Private> | ||
65 | </Reference> | ||
66 | <Reference Include="System.Xml" > | ||
67 | <HintPath>System.Xml.dll</HintPath> | ||
68 | <Private>False</Private> | ||
69 | </Reference> | ||
70 | <Reference Include="System.Data" > | ||
71 | <HintPath>System.Data.dll</HintPath> | ||
72 | <Private>False</Private> | ||
73 | </Reference> | ||
74 | <Reference Include="libsecondlife.dll" > | ||
75 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
76 | <Private>False</Private> | ||
77 | </Reference> | ||
78 | <Reference Include="MySql.Data.dll" > | ||
79 | <HintPath>..\..\bin\MySql.Data.dll</HintPath> | ||
80 | <Private>False</Private> | ||
81 | </Reference> | ||
82 | </ItemGroup> | ||
83 | <ItemGroup> | ||
84 | <ProjectReference Include="..\OpenGrid.Framework.Data\OpenGrid.Framework.Data.csproj"> | ||
85 | <Name>OpenGrid.Framework.Data</Name> | ||
86 | <Project>{62CDF671-0000-0000-0000-000000000000}</Project> | ||
87 | <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> | ||
88 | <Private>False</Private> | ||
89 | </ProjectReference> | ||
90 | </ItemGroup> | ||
91 | <ItemGroup> | ||
92 | <Compile Include="MySQLGridData.cs"> | ||
93 | <SubType>Code</SubType> | ||
94 | </Compile> | ||
95 | <Compile Include="MySQLInventoryData.cs"> | ||
96 | <SubType>Code</SubType> | ||
97 | </Compile> | ||
98 | <Compile Include="MySQLLogData.cs"> | ||
99 | <SubType>Code</SubType> | ||
100 | </Compile> | ||
101 | <Compile Include="MySQLManager.cs"> | ||
102 | <SubType>Code</SubType> | ||
103 | </Compile> | ||
104 | <Compile Include="MySQLUserData.cs"> | ||
105 | <SubType>Code</SubType> | ||
106 | </Compile> | ||
107 | <Compile Include="Properties\AssemblyInfo.cs"> | ||
108 | <SubType>Code</SubType> | ||
109 | </Compile> | ||
110 | </ItemGroup> | ||
111 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
112 | <PropertyGroup> | ||
113 | <PreBuildEvent> | ||
114 | </PreBuildEvent> | ||
115 | <PostBuildEvent> | ||
116 | </PostBuildEvent> | ||
117 | </PropertyGroup> | ||
118 | </Project> | ||
119 | ======= | ||
120 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
121 | <PropertyGroup> | 2 | <PropertyGroup> |
122 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -234,4 +115,3 @@ | |||
234 | </PostBuildEvent> | 115 | </PostBuildEvent> |
235 | </PropertyGroup> | 116 | </PropertyGroup> |
236 | </Project> | 117 | </Project> |
237 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj.user b/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Data.MySQL/OpenGrid.Framework.Data.MySQL.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj b/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj index 4360031..fa17367 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj +++ b/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj | |||
@@ -1,113 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <PropertyGroup> | ||
4 | <ProjectType>Local</ProjectType> | ||
5 | <ProductVersion>8.0.50727</ProductVersion> | ||
6 | <SchemaVersion>2.0</SchemaVersion> | ||
7 | <ProjectGuid>{1E3F341A-0000-0000-0000-000000000000}</ProjectGuid> | ||
8 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
9 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
10 | <ApplicationIcon></ApplicationIcon> | ||
11 | <AssemblyKeyContainerName> | ||
12 | </AssemblyKeyContainerName> | ||
13 | <AssemblyName>OpenGrid.Framework.Data.SQLite</AssemblyName> | ||
14 | <DefaultClientScript>JScript</DefaultClientScript> | ||
15 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
16 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
17 | <DelaySign>false</DelaySign> | ||
18 | <OutputType>Library</OutputType> | ||
19 | <AppDesignerFolder></AppDesignerFolder> | ||
20 | <RootNamespace>OpenGrid.Framework.Data.SQLite</RootNamespace> | ||
21 | <StartupObject></StartupObject> | ||
22 | <FileUpgradeFlags> | ||
23 | </FileUpgradeFlags> | ||
24 | </PropertyGroup> | ||
25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
26 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
27 | <BaseAddress>285212672</BaseAddress> | ||
28 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
29 | <ConfigurationOverrideFile> | ||
30 | </ConfigurationOverrideFile> | ||
31 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
32 | <DocumentationFile></DocumentationFile> | ||
33 | <DebugSymbols>True</DebugSymbols> | ||
34 | <FileAlignment>4096</FileAlignment> | ||
35 | <Optimize>False</Optimize> | ||
36 | <OutputPath>..\..\bin\</OutputPath> | ||
37 | <RegisterForComInterop>False</RegisterForComInterop> | ||
38 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
39 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
40 | <WarningLevel>4</WarningLevel> | ||
41 | <NoWarn></NoWarn> | ||
42 | </PropertyGroup> | ||
43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
44 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
45 | <BaseAddress>285212672</BaseAddress> | ||
46 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
47 | <ConfigurationOverrideFile> | ||
48 | </ConfigurationOverrideFile> | ||
49 | <DefineConstants>TRACE</DefineConstants> | ||
50 | <DocumentationFile></DocumentationFile> | ||
51 | <DebugSymbols>False</DebugSymbols> | ||
52 | <FileAlignment>4096</FileAlignment> | ||
53 | <Optimize>True</Optimize> | ||
54 | <OutputPath>..\..\bin\</OutputPath> | ||
55 | <RegisterForComInterop>False</RegisterForComInterop> | ||
56 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
57 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
58 | <WarningLevel>4</WarningLevel> | ||
59 | <NoWarn></NoWarn> | ||
60 | </PropertyGroup> | ||
61 | <ItemGroup> | ||
62 | <Reference Include="System" > | ||
63 | <HintPath>System.dll</HintPath> | ||
64 | <Private>False</Private> | ||
65 | </Reference> | ||
66 | <Reference Include="System.Xml" > | ||
67 | <HintPath>System.Xml.dll</HintPath> | ||
68 | <Private>False</Private> | ||
69 | </Reference> | ||
70 | <Reference Include="System.Data" > | ||
71 | <HintPath>System.Data.dll</HintPath> | ||
72 | <Private>False</Private> | ||
73 | </Reference> | ||
74 | <Reference Include="System.Data.SQLite.dll" > | ||
75 | <HintPath>..\..\bin\System.Data.SQLite.dll</HintPath> | ||
76 | <Private>False</Private> | ||
77 | </Reference> | ||
78 | <Reference Include="libsecondlife.dll" > | ||
79 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
80 | <Private>False</Private> | ||
81 | </Reference> | ||
82 | </ItemGroup> | ||
83 | <ItemGroup> | ||
84 | <ProjectReference Include="..\OpenGrid.Framework.Data\OpenGrid.Framework.Data.csproj"> | ||
85 | <Name>OpenGrid.Framework.Data</Name> | ||
86 | <Project>{62CDF671-0000-0000-0000-000000000000}</Project> | ||
87 | <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> | ||
88 | <Private>False</Private> | ||
89 | </ProjectReference> | ||
90 | </ItemGroup> | ||
91 | <ItemGroup> | ||
92 | <Compile Include="SQLiteGridData.cs"> | ||
93 | <SubType>Code</SubType> | ||
94 | </Compile> | ||
95 | <Compile Include="SQLiteManager.cs"> | ||
96 | <SubType>Code</SubType> | ||
97 | </Compile> | ||
98 | <Compile Include="Properties\AssemblyInfo.cs"> | ||
99 | <SubType>Code</SubType> | ||
100 | </Compile> | ||
101 | </ItemGroup> | ||
102 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
103 | <PropertyGroup> | ||
104 | <PreBuildEvent> | ||
105 | </PreBuildEvent> | ||
106 | <PostBuildEvent> | ||
107 | </PostBuildEvent> | ||
108 | </PropertyGroup> | ||
109 | </Project> | ||
110 | ======= | ||
111 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
112 | <PropertyGroup> | 2 | <PropertyGroup> |
113 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -216,4 +106,3 @@ | |||
216 | </PostBuildEvent> | 106 | </PostBuildEvent> |
217 | </PropertyGroup> | 107 | </PropertyGroup> |
218 | </Project> | 108 | </Project> |
219 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj.user b/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Data.SQLite/OpenGrid.Framework.Data.SQLite.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj b/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj index c0684a2..990cd16 100644 --- a/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj +++ b/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj | |||
@@ -1,118 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <PropertyGroup> | ||
4 | <ProjectType>Local</ProjectType> | ||
5 | <ProductVersion>8.0.50727</ProductVersion> | ||
6 | <SchemaVersion>2.0</SchemaVersion> | ||
7 | <ProjectGuid>{62CDF671-0000-0000-0000-000000000000}</ProjectGuid> | ||
8 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
9 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
10 | <ApplicationIcon></ApplicationIcon> | ||
11 | <AssemblyKeyContainerName> | ||
12 | </AssemblyKeyContainerName> | ||
13 | <AssemblyName>OpenGrid.Framework.Data</AssemblyName> | ||
14 | <DefaultClientScript>JScript</DefaultClientScript> | ||
15 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
16 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
17 | <DelaySign>false</DelaySign> | ||
18 | <OutputType>Library</OutputType> | ||
19 | <AppDesignerFolder></AppDesignerFolder> | ||
20 | <RootNamespace>OpenGrid.Framework.Data</RootNamespace> | ||
21 | <StartupObject></StartupObject> | ||
22 | <FileUpgradeFlags> | ||
23 | </FileUpgradeFlags> | ||
24 | </PropertyGroup> | ||
25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
26 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
27 | <BaseAddress>285212672</BaseAddress> | ||
28 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
29 | <ConfigurationOverrideFile> | ||
30 | </ConfigurationOverrideFile> | ||
31 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
32 | <DocumentationFile></DocumentationFile> | ||
33 | <DebugSymbols>True</DebugSymbols> | ||
34 | <FileAlignment>4096</FileAlignment> | ||
35 | <Optimize>False</Optimize> | ||
36 | <OutputPath>..\..\bin\</OutputPath> | ||
37 | <RegisterForComInterop>False</RegisterForComInterop> | ||
38 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
39 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
40 | <WarningLevel>4</WarningLevel> | ||
41 | <NoWarn></NoWarn> | ||
42 | </PropertyGroup> | ||
43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
44 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
45 | <BaseAddress>285212672</BaseAddress> | ||
46 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
47 | <ConfigurationOverrideFile> | ||
48 | </ConfigurationOverrideFile> | ||
49 | <DefineConstants>TRACE</DefineConstants> | ||
50 | <DocumentationFile></DocumentationFile> | ||
51 | <DebugSymbols>False</DebugSymbols> | ||
52 | <FileAlignment>4096</FileAlignment> | ||
53 | <Optimize>True</Optimize> | ||
54 | <OutputPath>..\..\bin\</OutputPath> | ||
55 | <RegisterForComInterop>False</RegisterForComInterop> | ||
56 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
57 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
58 | <WarningLevel>4</WarningLevel> | ||
59 | <NoWarn></NoWarn> | ||
60 | </PropertyGroup> | ||
61 | <ItemGroup> | ||
62 | <Reference Include="System" > | ||
63 | <HintPath>System.dll</HintPath> | ||
64 | <Private>False</Private> | ||
65 | </Reference> | ||
66 | <Reference Include="System.Xml" > | ||
67 | <HintPath>System.Xml.dll</HintPath> | ||
68 | <Private>False</Private> | ||
69 | </Reference> | ||
70 | <Reference Include="System.Data" > | ||
71 | <HintPath>System.Data.dll</HintPath> | ||
72 | <Private>False</Private> | ||
73 | </Reference> | ||
74 | <Reference Include="libsecondlife.dll" > | ||
75 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
76 | <Private>False</Private> | ||
77 | </Reference> | ||
78 | </ItemGroup> | ||
79 | <ItemGroup> | ||
80 | </ItemGroup> | ||
81 | <ItemGroup> | ||
82 | <Compile Include="GridData.cs"> | ||
83 | <SubType>Code</SubType> | ||
84 | </Compile> | ||
85 | <Compile Include="ILogData.cs"> | ||
86 | <SubType>Code</SubType> | ||
87 | </Compile> | ||
88 | <Compile Include="IniConfig.cs"> | ||
89 | <SubType>Code</SubType> | ||
90 | </Compile> | ||
91 | <Compile Include="InventoryData.cs"> | ||
92 | <SubType>Code</SubType> | ||
93 | </Compile> | ||
94 | <Compile Include="SimProfileData.cs"> | ||
95 | <SubType>Code</SubType> | ||
96 | </Compile> | ||
97 | <Compile Include="UserData.cs"> | ||
98 | <SubType>Code</SubType> | ||
99 | </Compile> | ||
100 | <Compile Include="UserProfileData.cs"> | ||
101 | <SubType>Code</SubType> | ||
102 | </Compile> | ||
103 | <Compile Include="Properties\AssemblyInfo.cs"> | ||
104 | <SubType>Code</SubType> | ||
105 | </Compile> | ||
106 | </ItemGroup> | ||
107 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
108 | <PropertyGroup> | ||
109 | <PreBuildEvent> | ||
110 | </PreBuildEvent> | ||
111 | <PostBuildEvent> | ||
112 | </PostBuildEvent> | ||
113 | </PropertyGroup> | ||
114 | </Project> | ||
115 | ======= | ||
116 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
117 | <PropertyGroup> | 2 | <PropertyGroup> |
118 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -226,4 +111,3 @@ | |||
226 | </PostBuildEvent> | 111 | </PostBuildEvent> |
227 | </PropertyGroup> | 112 | </PropertyGroup> |
228 | </Project> | 113 | </Project> |
229 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj.user b/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Data/OpenGrid.Framework.Data.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj b/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj index dad56cb..ea7548a 100644 --- a/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj +++ b/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj | |||
@@ -62,12 +62,12 @@ | |||
62 | <HintPath>System.dll</HintPath> | 62 | <HintPath>System.dll</HintPath> |
63 | <Private>False</Private> | 63 | <Private>False</Private> |
64 | </Reference> | 64 | </Reference> |
65 | <Reference Include="OpenSim.Framework.dll" > | 65 | <Reference Include="OpenSim.Framework" > |
66 | <HintPath>..\..\bin\OpenSim.Framework.dll</HintPath> | 66 | <HintPath>OpenSim.Framework.dll</HintPath> |
67 | <Private>False</Private> | 67 | <Private>False</Private> |
68 | </Reference> | 68 | </Reference> |
69 | <Reference Include="OpenSim.Servers.dll" > | 69 | <Reference Include="OpenSim.Servers" > |
70 | <HintPath>..\..\bin\OpenSim.Servers.dll</HintPath> | 70 | <HintPath>OpenSim.Servers.dll</HintPath> |
71 | <Private>False</Private> | 71 | <Private>False</Private> |
72 | </Reference> | 72 | </Reference> |
73 | <Reference Include="libsecondlife.dll" > | 73 | <Reference Include="libsecondlife.dll" > |
diff --git a/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj.user b/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj.user +++ b/OpenGridServices/OpenGrid.Framework.Manager/OpenGrid.Framework.Manager.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj index 53afe16..a281e4f 100644 --- a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj +++ b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj | |||
@@ -1,4 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | <PropertyGroup> | 2 | <PropertyGroup> |
4 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -79,133 +78,6 @@ | |||
79 | <HintPath>OpenSim.Framework.Console.dll</HintPath> | 78 | <HintPath>OpenSim.Framework.Console.dll</HintPath> |
80 | <Private>False</Private> | 79 | <Private>False</Private> |
81 | </Reference> | 80 | </Reference> |
82 | <Reference Include="OpenSim.GridInterfaces.Local" > | ||
83 | <HintPath>OpenSim.GridInterfaces.Local.dll</HintPath> | ||
84 | <Private>False</Private> | ||
85 | </Reference> | ||
86 | <Reference Include="OpenSim.Servers" > | ||
87 | <HintPath>OpenSim.Servers.dll</HintPath> | ||
88 | <Private>False</Private> | ||
89 | </Reference> | ||
90 | <Reference Include="libsecondlife.dll" > | ||
91 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
92 | <Private>False</Private> | ||
93 | </Reference> | ||
94 | <Reference Include="Db4objects.Db4o.dll" > | ||
95 | <HintPath>..\..\bin\Db4objects.Db4o.dll</HintPath> | ||
96 | <Private>False</Private> | ||
97 | </Reference> | ||
98 | <Reference Include="XMLRPC" > | ||
99 | <HintPath>XMLRPC.dll</HintPath> | ||
100 | <Private>False</Private> | ||
101 | </Reference> | ||
102 | </ItemGroup> | ||
103 | <ItemGroup> | ||
104 | </ItemGroup> | ||
105 | <ItemGroup> | ||
106 | <Compile Include="AssetHttpServer.cs"> | ||
107 | <SubType>Code</SubType> | ||
108 | </Compile> | ||
109 | <Compile Include="Main.cs"> | ||
110 | <SubType>Code</SubType> | ||
111 | </Compile> | ||
112 | <Compile Include="Properties\AssemblyInfo.cs"> | ||
113 | <SubType>Code</SubType> | ||
114 | </Compile> | ||
115 | </ItemGroup> | ||
116 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
117 | <PropertyGroup> | ||
118 | <PreBuildEvent> | ||
119 | </PreBuildEvent> | ||
120 | <PostBuildEvent> | ||
121 | </PostBuildEvent> | ||
122 | </PropertyGroup> | ||
123 | </Project> | ||
124 | ======= | ||
125 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
126 | <PropertyGroup> | ||
127 | <ProjectType>Local</ProjectType> | ||
128 | <ProductVersion>8.0.50727</ProductVersion> | ||
129 | <SchemaVersion>2.0</SchemaVersion> | ||
130 | <ProjectGuid>{0021261B-0000-0000-0000-000000000000}</ProjectGuid> | ||
131 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
132 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
133 | <ApplicationIcon></ApplicationIcon> | ||
134 | <AssemblyKeyContainerName> | ||
135 | </AssemblyKeyContainerName> | ||
136 | <AssemblyName>OpenGridServices.AssetServer</AssemblyName> | ||
137 | <DefaultClientScript>JScript</DefaultClientScript> | ||
138 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
139 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
140 | <DelaySign>false</DelaySign> | ||
141 | <OutputType>Exe</OutputType> | ||
142 | <AppDesignerFolder></AppDesignerFolder> | ||
143 | <RootNamespace>OpenGridServices.AssetServer</RootNamespace> | ||
144 | <StartupObject></StartupObject> | ||
145 | <FileUpgradeFlags> | ||
146 | </FileUpgradeFlags> | ||
147 | </PropertyGroup> | ||
148 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
149 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
150 | <BaseAddress>285212672</BaseAddress> | ||
151 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
152 | <ConfigurationOverrideFile> | ||
153 | </ConfigurationOverrideFile> | ||
154 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
155 | <DocumentationFile></DocumentationFile> | ||
156 | <DebugSymbols>True</DebugSymbols> | ||
157 | <FileAlignment>4096</FileAlignment> | ||
158 | <Optimize>False</Optimize> | ||
159 | <OutputPath>..\..\bin\</OutputPath> | ||
160 | <RegisterForComInterop>False</RegisterForComInterop> | ||
161 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
162 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
163 | <WarningLevel>4</WarningLevel> | ||
164 | <NoWarn></NoWarn> | ||
165 | </PropertyGroup> | ||
166 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
167 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
168 | <BaseAddress>285212672</BaseAddress> | ||
169 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
170 | <ConfigurationOverrideFile> | ||
171 | </ConfigurationOverrideFile> | ||
172 | <DefineConstants>TRACE</DefineConstants> | ||
173 | <DocumentationFile></DocumentationFile> | ||
174 | <DebugSymbols>False</DebugSymbols> | ||
175 | <FileAlignment>4096</FileAlignment> | ||
176 | <Optimize>True</Optimize> | ||
177 | <OutputPath>..\..\bin\</OutputPath> | ||
178 | <RegisterForComInterop>False</RegisterForComInterop> | ||
179 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
180 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
181 | <WarningLevel>4</WarningLevel> | ||
182 | <NoWarn></NoWarn> | ||
183 | </PropertyGroup> | ||
184 | <ItemGroup> | ||
185 | <Reference Include="System" > | ||
186 | <HintPath>System.dll</HintPath> | ||
187 | <Private>False</Private> | ||
188 | </Reference> | ||
189 | <Reference Include="System.Data" > | ||
190 | <HintPath>System.Data.dll</HintPath> | ||
191 | <Private>False</Private> | ||
192 | </Reference> | ||
193 | <Reference Include="System.Xml" > | ||
194 | <HintPath>System.Xml.dll</HintPath> | ||
195 | <Private>False</Private> | ||
196 | </Reference> | ||
197 | <Reference Include="OpenSim.Framework" > | ||
198 | <HintPath>OpenSim.Framework.dll</HintPath> | ||
199 | <Private>False</Private> | ||
200 | </Reference> | ||
201 | <Reference Include="OpenSim.Framework.Console" > | ||
202 | <HintPath>OpenSim.Framework.Console.dll</HintPath> | ||
203 | <Private>False</Private> | ||
204 | </Reference> | ||
205 | <Reference Include="OpenSim.GridInterfaces.Local" > | ||
206 | <HintPath>OpenSim.GridInterfaces.Local.dll</HintPath> | ||
207 | <Private>False</Private> | ||
208 | </Reference> | ||
209 | <Reference Include="OpenSim.Servers" > | 81 | <Reference Include="OpenSim.Servers" > |
210 | <HintPath>OpenSim.Servers.dll</HintPath> | 82 | <HintPath>OpenSim.Servers.dll</HintPath> |
211 | <Private>False</Private> | 83 | <Private>False</Private> |
@@ -244,4 +116,3 @@ | |||
244 | </PostBuildEvent> | 116 | </PostBuildEvent> |
245 | </PropertyGroup> | 117 | </PropertyGroup> |
246 | </Project> | 118 | </Project> |
247 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj.user b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj.user +++ b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.exe.build b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.exe.build index 0da1d34..700e32b 100644 --- a/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.exe.build +++ b/OpenGridServices/OpenGridServices.AssetServer/OpenGridServices.AssetServer.exe.build | |||
@@ -25,7 +25,6 @@ | |||
25 | <include name="System.Xml.dll" /> | 25 | <include name="System.Xml.dll" /> |
26 | <include name="../../bin/OpenSim.Framework.dll" /> | 26 | <include name="../../bin/OpenSim.Framework.dll" /> |
27 | <include name="../../bin/OpenSim.Framework.Console.dll" /> | 27 | <include name="../../bin/OpenSim.Framework.Console.dll" /> |
28 | <include name="../../bin/OpenSim.GridInterfaces.Local.dll" /> | ||
29 | <include name="../../bin/OpenSim.Servers.dll" /> | 28 | <include name="../../bin/OpenSim.Servers.dll" /> |
30 | <include name="../../bin/libsecondlife.dll" /> | 29 | <include name="../../bin/libsecondlife.dll" /> |
31 | <include name="../../bin/Db4objects.Db4o.dll" /> | 30 | <include name="../../bin/Db4objects.Db4o.dll" /> |
diff --git a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj.user b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj.user +++ b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenGridServices.UserServer/OpenGridServices.UserServer.csproj.user b/OpenGridServices/OpenGridServices.UserServer/OpenGridServices.UserServer.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenGridServices.UserServer/OpenGridServices.UserServer.csproj.user +++ b/OpenGridServices/OpenGridServices.UserServer/OpenGridServices.UserServer.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/OpenUser.Config/UserConfigDb4o/OpenUser.Config.UserConfigDb4o.csproj.user b/OpenGridServices/OpenUser.Config/UserConfigDb4o/OpenUser.Config.UserConfigDb4o.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/OpenUser.Config/UserConfigDb4o/OpenUser.Config.UserConfigDb4o.csproj.user +++ b/OpenGridServices/OpenUser.Config/UserConfigDb4o/OpenUser.Config.UserConfigDb4o.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/ServiceManager/ServiceManager.csproj b/OpenGridServices/ServiceManager/ServiceManager.csproj index 0b89633..54d31b2 100644 --- a/OpenGridServices/ServiceManager/ServiceManager.csproj +++ b/OpenGridServices/ServiceManager/ServiceManager.csproj | |||
@@ -1,107 +1,3 @@ | |||
1 | <<<<<<< .mine | ||
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <PropertyGroup> | ||
4 | <ProjectType>Local</ProjectType> | ||
5 | <ProductVersion>8.0.50727</ProductVersion> | ||
6 | <SchemaVersion>2.0</SchemaVersion> | ||
7 | <ProjectGuid>{E141F4EE-0000-0000-0000-000000000000}</ProjectGuid> | ||
8 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
9 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
10 | <ApplicationIcon> | ||
11 | </ApplicationIcon> | ||
12 | <AssemblyKeyContainerName> | ||
13 | </AssemblyKeyContainerName> | ||
14 | <AssemblyName>ServiceManager</AssemblyName> | ||
15 | <DefaultClientScript>JScript</DefaultClientScript> | ||
16 | <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout> | ||
17 | <DefaultTargetSchema>IE50</DefaultTargetSchema> | ||
18 | <DelaySign>false</DelaySign> | ||
19 | <OutputType>Exe</OutputType> | ||
20 | <AppDesignerFolder> | ||
21 | </AppDesignerFolder> | ||
22 | <RootNamespace>ServiceManager</RootNamespace> | ||
23 | <StartupObject> | ||
24 | </StartupObject> | ||
25 | <FileUpgradeFlags> | ||
26 | </FileUpgradeFlags> | ||
27 | </PropertyGroup> | ||
28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
29 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
30 | <BaseAddress>285212672</BaseAddress> | ||
31 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
32 | <ConfigurationOverrideFile> | ||
33 | </ConfigurationOverrideFile> | ||
34 | <DefineConstants>TRACE;DEBUG</DefineConstants> | ||
35 | <DocumentationFile> | ||
36 | </DocumentationFile> | ||
37 | <DebugSymbols>True</DebugSymbols> | ||
38 | <FileAlignment>4096</FileAlignment> | ||
39 | <Optimize>False</Optimize> | ||
40 | <OutputPath>..\..\bin\</OutputPath> | ||
41 | <RegisterForComInterop>False</RegisterForComInterop> | ||
42 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
43 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
44 | <WarningLevel>4</WarningLevel> | ||
45 | <NoWarn> | ||
46 | </NoWarn> | ||
47 | </PropertyGroup> | ||
48 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
49 | <AllowUnsafeBlocks>False</AllowUnsafeBlocks> | ||
50 | <BaseAddress>285212672</BaseAddress> | ||
51 | <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> | ||
52 | <ConfigurationOverrideFile> | ||
53 | </ConfigurationOverrideFile> | ||
54 | <DefineConstants>TRACE</DefineConstants> | ||
55 | <DocumentationFile> | ||
56 | </DocumentationFile> | ||
57 | <DebugSymbols>False</DebugSymbols> | ||
58 | <FileAlignment>4096</FileAlignment> | ||
59 | <Optimize>True</Optimize> | ||
60 | <OutputPath>..\..\bin\</OutputPath> | ||
61 | <RegisterForComInterop>False</RegisterForComInterop> | ||
62 | <RemoveIntegerChecks>False</RemoveIntegerChecks> | ||
63 | <TreatWarningsAsErrors>False</TreatWarningsAsErrors> | ||
64 | <WarningLevel>4</WarningLevel> | ||
65 | <NoWarn> | ||
66 | </NoWarn> | ||
67 | </PropertyGroup> | ||
68 | <ItemGroup> | ||
69 | <Reference Include="System"> | ||
70 | <HintPath>System.dll</HintPath> | ||
71 | <Private>False</Private> | ||
72 | </Reference> | ||
73 | <Reference Include="System.ServiceProcess"> | ||
74 | <HintPath>System.ServiceProcess.dll</HintPath> | ||
75 | <Private>False</Private> | ||
76 | </Reference> | ||
77 | <Reference Include="System.Xml"> | ||
78 | <HintPath>System.Xml.dll</HintPath> | ||
79 | <Private>False</Private> | ||
80 | </Reference> | ||
81 | <Reference Include="libsecondlife.dll"> | ||
82 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
83 | <Private>False</Private> | ||
84 | </Reference> | ||
85 | <Reference Include="OpenSim.GenericConfig.Xml"> | ||
86 | <HintPath>OpenSim.GenericConfig.Xml.dll</HintPath> | ||
87 | <Private>False</Private> | ||
88 | </Reference> | ||
89 | </ItemGroup> | ||
90 | <ItemGroup> | ||
91 | </ItemGroup> | ||
92 | <ItemGroup> | ||
93 | <Compile Include="ServiceManager.cs"> | ||
94 | <SubType>Component</SubType> | ||
95 | </Compile> | ||
96 | </ItemGroup> | ||
97 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
98 | <PropertyGroup> | ||
99 | <PreBuildEvent> | ||
100 | </PreBuildEvent> | ||
101 | <PostBuildEvent> | ||
102 | </PostBuildEvent> | ||
103 | </PropertyGroup> | ||
104 | </Project>======= | ||
105 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
106 | <PropertyGroup> | 2 | <PropertyGroup> |
107 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
@@ -174,18 +70,6 @@ | |||
174 | <HintPath>System.Xml.dll</HintPath> | 70 | <HintPath>System.Xml.dll</HintPath> |
175 | <Private>False</Private> | 71 | <Private>False</Private> |
176 | </Reference> | 72 | </Reference> |
177 | <Reference Include="libsecondlife.dll" > | ||
178 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | ||
179 | <Private>False</Private> | ||
180 | </Reference> | ||
181 | <Reference Include="OpenSim.GenericConfig.Xml" > | ||
182 | <HintPath>OpenSim.GenericConfig.Xml.dll</HintPath> | ||
183 | <Private>False</Private> | ||
184 | </Reference> | ||
185 | <Reference Include="OpenSim.Framework.dll" > | ||
186 | <HintPath>..\..\bin\OpenSim.Framework.dll</HintPath> | ||
187 | <Private>False</Private> | ||
188 | </Reference> | ||
189 | </ItemGroup> | 73 | </ItemGroup> |
190 | <ItemGroup> | 74 | <ItemGroup> |
191 | </ItemGroup> | 75 | </ItemGroup> |
@@ -202,4 +86,3 @@ | |||
202 | </PostBuildEvent> | 86 | </PostBuildEvent> |
203 | </PropertyGroup> | 87 | </PropertyGroup> |
204 | </Project> | 88 | </Project> |
205 | >>>>>>> .r921 | ||
diff --git a/OpenGridServices/ServiceManager/ServiceManager.csproj.user b/OpenGridServices/ServiceManager/ServiceManager.csproj.user index 1b6b14d..082d673 100644 --- a/OpenGridServices/ServiceManager/ServiceManager.csproj.user +++ b/OpenGridServices/ServiceManager/ServiceManager.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\trunk\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenGridServices/ServiceManager/ServiceManager.exe.build b/OpenGridServices/ServiceManager/ServiceManager.exe.build index 5e1dd72..163e086 100644 --- a/OpenGridServices/ServiceManager/ServiceManager.exe.build +++ b/OpenGridServices/ServiceManager/ServiceManager.exe.build | |||
@@ -21,9 +21,6 @@ | |||
21 | <include name="System.dll" /> | 21 | <include name="System.dll" /> |
22 | <include name="System.ServiceProcess.dll" /> | 22 | <include name="System.ServiceProcess.dll" /> |
23 | <include name="System.Xml.dll" /> | 23 | <include name="System.Xml.dll" /> |
24 | <include name="../../bin/libsecondlife.dll" /> | ||
25 | <include name="../../bin/OpenSim.GenericConfig.Xml.dll" /> | ||
26 | <include name="../../bin/OpenSim.Framework.dll" /> | ||
27 | </references> | 24 | </references> |
28 | </csc> | 25 | </csc> |
29 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../../bin/" /> | 26 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../../bin/" /> |
diff --git a/OpenSim.build b/OpenSim.build index 51168a1..a600918 100644 --- a/OpenSim.build +++ b/OpenSim.build | |||
@@ -46,10 +46,12 @@ | |||
46 | <echo message="Deleting all builds from all configurations" /> | 46 | <echo message="Deleting all builds from all configurations" /> |
47 | <delete dir="${bin.dir}" failonerror="false" /> | 47 | <delete dir="${bin.dir}" failonerror="false" /> |
48 | <delete dir="${obj.dir}" failonerror="false" /> | 48 | <delete dir="${obj.dir}" failonerror="false" /> |
49 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="clean" /> | ||
49 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="clean" /> | 50 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="clean" /> |
50 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="clean" /> | 51 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="clean" /> |
51 | <nant buildfile="OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.dll.build" target="clean" /> | 52 | <nant buildfile="OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.dll.build" target="clean" /> |
52 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="clean" /> | 53 | <nant buildfile="Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.dll.build" target="clean" /> |
54 | <nant buildfile="OpenSim/OpenSim.World/OpenSim.World.dll.build" target="clean" /> | ||
53 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="clean" /> | 55 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="clean" /> |
54 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="clean" /> | 56 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="clean" /> |
55 | <nant buildfile="Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.dll.build" target="clean" /> | 57 | <nant buildfile="Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.dll.build" target="clean" /> |
@@ -71,6 +73,7 @@ | |||
71 | <nant buildfile="Common/OpenSim.Framework/OpenSim.Framework.dll.build" target="build" /> | 73 | <nant buildfile="Common/OpenSim.Framework/OpenSim.Framework.dll.build" target="build" /> |
72 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="build" /> | 74 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="build" /> |
73 | <nant buildfile="Common/OpenSim.Servers/OpenSim.Servers.dll.build" target="build" /> | 75 | <nant buildfile="Common/OpenSim.Servers/OpenSim.Servers.dll.build" target="build" /> |
76 | <nant buildfile="Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.dll.build" target="build" /> | ||
74 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="build" /> | 77 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="build" /> |
75 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.dll.build" target="build" /> | 78 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.dll.build" target="build" /> |
76 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="build" /> | 79 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="build" /> |
@@ -84,6 +87,7 @@ | |||
84 | <nant buildfile="OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build" target="build" /> | 87 | <nant buildfile="OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build" target="build" /> |
85 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="build" /> | 88 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="build" /> |
86 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="build" /> | 89 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="build" /> |
90 | <nant buildfile="OpenSim/OpenSim.World/OpenSim.World.dll.build" target="build" /> | ||
87 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="build" /> | 91 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="build" /> |
88 | </target> | 92 | </target> |
89 | 93 | ||
@@ -95,10 +99,12 @@ | |||
95 | 99 | ||
96 | <target name="doc" depends="build-release"> | 100 | <target name="doc" depends="build-release"> |
97 | <echo message="Generating all documentation from all builds" /> | 101 | <echo message="Generating all documentation from all builds" /> |
102 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="doc" /> | ||
98 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="doc" /> | 103 | <nant buildfile="OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.dll.build" target="doc" /> |
99 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="doc" /> | 104 | <nant buildfile="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.dll.build" target="doc" /> |
100 | <nant buildfile="OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.dll.build" target="doc" /> | 105 | <nant buildfile="OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.dll.build" target="doc" /> |
101 | <nant buildfile="Common/OpenSim.Framework.Console/OpenSim.Framework.Console.dll.build" target="doc" /> | 106 | <nant buildfile="Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.dll.build" target="doc" /> |
107 | <nant buildfile="OpenSim/OpenSim.World/OpenSim.World.dll.build" target="doc" /> | ||
102 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="doc" /> | 108 | <nant buildfile="OpenSim/OpenSim/OpenSim.exe.build" target="doc" /> |
103 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="doc" /> | 109 | <nant buildfile="OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build" target="doc" /> |
104 | <nant buildfile="Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.dll.build" target="doc" /> | 110 | <nant buildfile="Common/OpenSim.GenericConfig/Xml/OpenSim.GenericConfig.Xml.dll.build" target="doc" /> |
diff --git a/OpenSim.sln b/OpenSim.sln index d2036f0..33a7217 100644 --- a/OpenSim.sln +++ b/OpenSim.sln | |||
@@ -1,5 +1,5 @@ | |||
1 | Microsoft Visual Studio Solution File, Format Version 9.00 | 1 | Microsoft Visual Studio Solution File, Format Version 9.00 |
2 | # Visual C# Express 2005 | 2 | # Visual Studio 2005 |
3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Framework.Console", "Common\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj", "{A7CD0630-0000-0000-0000-000000000000}" | 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Framework.Console", "Common\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj", "{A7CD0630-0000-0000-0000-000000000000}" |
4 | EndProject | 4 | EndProject |
5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Terrain.BasicTerrain", "OpenSim\OpenSim.Terrain.BasicTerrain\OpenSim.Terrain.BasicTerrain.csproj", "{2270B8FE-0000-0000-0000-000000000000}" | 5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Terrain.BasicTerrain", "OpenSim\OpenSim.Terrain.BasicTerrain\OpenSim.Terrain.BasicTerrain.csproj", "{2270B8FE-0000-0000-0000-000000000000}" |
@@ -41,93 +41,144 @@ EndProject | |||
41 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLRPC", "Common\XmlRpcCS\XMLRPC.csproj", "{8E81D43C-0000-0000-0000-000000000000}" | 41 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLRPC", "Common\XmlRpcCS\XMLRPC.csproj", "{8E81D43C-0000-0000-0000-000000000000}" |
42 | EndProject | 42 | EndProject |
43 | Global | 43 | Global |
44 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | 44 | GlobalSection(SolutionConfigurationPlatforms) = preSolution |
45 | Debug|Any CPU = Debug|Any CPU | 45 | Debug|Any CPU = Debug|Any CPU |
46 | Release|Any CPU = Release|Any CPU | 46 | Release|Any CPU = Release|Any CPU |
47 | EndGlobalSection | 47 | EndGlobalSection |
48 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | 48 | GlobalSection(ProjectDependencies) = postSolution |
49 | {A7CD0630-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 49 | ({EE9E5D96-0000-0000-0000-000000000000}).6 = ({8ACA2445-0000-0000-0000-000000000000}) |
50 | {A7CD0630-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 50 | ({EE9E5D96-0000-0000-0000-000000000000}).7 = ({A7CD0630-0000-0000-0000-000000000000}) |
51 | {A7CD0630-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 51 | ({63A05FE9-0000-0000-0000-000000000000}).2 = ({8BE16150-0000-0000-0000-000000000000}) |
52 | {A7CD0630-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 52 | ({683344D5-0000-0000-0000-000000000000}).2 = ({8ACA2445-0000-0000-0000-000000000000}) |
53 | {2270B8FE-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 53 | ({642A14A8-0000-0000-0000-000000000000}).5 = ({2270B8FE-0000-0000-0000-000000000000}) |
54 | {2270B8FE-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 54 | ({642A14A8-0000-0000-0000-000000000000}).6 = ({8ACA2445-0000-0000-0000-000000000000}) |
55 | {2270B8FE-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 55 | ({642A14A8-0000-0000-0000-000000000000}).7 = ({A7CD0630-0000-0000-0000-000000000000}) |
56 | {2270B8FE-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 56 | ({642A14A8-0000-0000-0000-000000000000}).8 = ({E88EF749-0000-0000-0000-000000000000}) |
57 | {EE9E5D96-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 57 | ({642A14A8-0000-0000-0000-000000000000}).9 = ({8BE16150-0000-0000-0000-000000000000}) |
58 | {EE9E5D96-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 58 | ({642A14A8-0000-0000-0000-000000000000}).10 = ({8BB20F0A-0000-0000-0000-000000000000}) |
59 | {EE9E5D96-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 59 | ({642A14A8-0000-0000-0000-000000000000}).11 = ({8E81D43C-0000-0000-0000-000000000000}) |
60 | {EE9E5D96-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 60 | ({642A14A8-0000-0000-0000-000000000000}).12 = ({683344D5-0000-0000-0000-000000000000}) |
61 | {63A05FE9-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 61 | ({438A9556-0000-0000-0000-000000000000}).5 = ({2270B8FE-0000-0000-0000-000000000000}) |
62 | {63A05FE9-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 62 | ({438A9556-0000-0000-0000-000000000000}).6 = ({8ACA2445-0000-0000-0000-000000000000}) |
63 | {63A05FE9-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 63 | ({438A9556-0000-0000-0000-000000000000}).7 = ({A7CD0630-0000-0000-0000-000000000000}) |
64 | {63A05FE9-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 64 | ({438A9556-0000-0000-0000-000000000000}).8 = ({8BE16150-0000-0000-0000-000000000000}) |
65 | {683344D5-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 65 | ({438A9556-0000-0000-0000-000000000000}).9 = ({8BB20F0A-0000-0000-0000-000000000000}) |
66 | {683344D5-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 66 | ({438A9556-0000-0000-0000-000000000000}).10 = ({642A14A8-0000-0000-0000-000000000000}) |
67 | {683344D5-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 67 | ({438A9556-0000-0000-0000-000000000000}).11 = ({632E1BFD-0000-0000-0000-000000000000}) |
68 | {683344D5-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 68 | ({438A9556-0000-0000-0000-000000000000}).12 = ({E88EF749-0000-0000-0000-000000000000}) |
69 | {642A14A8-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 69 | ({438A9556-0000-0000-0000-000000000000}).13 = ({683344D5-0000-0000-0000-000000000000}) |
70 | {642A14A8-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 70 | ({438A9556-0000-0000-0000-000000000000}).14 = ({8E81D43C-0000-0000-0000-000000000000}) |
71 | {642A14A8-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 71 | ({632E1BFD-0000-0000-0000-000000000000}).5 = ({2270B8FE-0000-0000-0000-000000000000}) |
72 | {642A14A8-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 72 | ({632E1BFD-0000-0000-0000-000000000000}).6 = ({8ACA2445-0000-0000-0000-000000000000}) |
73 | {438A9556-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 73 | ({632E1BFD-0000-0000-0000-000000000000}).7 = ({A7CD0630-0000-0000-0000-000000000000}) |
74 | {438A9556-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 74 | ({632E1BFD-0000-0000-0000-000000000000}).8 = ({E88EF749-0000-0000-0000-000000000000}) |
75 | {438A9556-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 75 | ({632E1BFD-0000-0000-0000-000000000000}).9 = ({8BE16150-0000-0000-0000-000000000000}) |
76 | {438A9556-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 76 | ({632E1BFD-0000-0000-0000-000000000000}).10 = ({8BB20F0A-0000-0000-0000-000000000000}) |
77 | {632E1BFD-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 77 | ({632E1BFD-0000-0000-0000-000000000000}).11 = ({8E81D43C-0000-0000-0000-000000000000}) |
78 | {632E1BFD-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 78 | ({E88EF749-0000-0000-0000-000000000000}).2 = ({8ACA2445-0000-0000-0000-000000000000}) |
79 | {632E1BFD-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 79 | ({8BE16150-0000-0000-0000-000000000000}).3 = ({8ACA2445-0000-0000-0000-000000000000}) |
80 | {632E1BFD-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 80 | ({8BE16150-0000-0000-0000-000000000000}).4 = ({A7CD0630-0000-0000-0000-000000000000}) |
81 | {E88EF749-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 81 | ({4F874463-0000-0000-0000-000000000000}).2 = ({8BE16150-0000-0000-0000-000000000000}) |
82 | {E88EF749-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 82 | ({988F0AC4-0000-0000-0000-000000000000}).3 = ({8BE16150-0000-0000-0000-000000000000}) |
83 | {E88EF749-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 83 | ({B55C0B5D-0000-0000-0000-000000000000}).3 = ({8ACA2445-0000-0000-0000-000000000000}) |
84 | {E88EF749-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 84 | ({B55C0B5D-0000-0000-0000-000000000000}).4 = ({A7CD0630-0000-0000-0000-000000000000}) |
85 | {8BE16150-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 85 | ({B55C0B5D-0000-0000-0000-000000000000}).5 = ({8E81D43C-0000-0000-0000-000000000000}) |
86 | {8BE16150-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 86 | ({8ACA2445-0000-0000-0000-000000000000}).4 = ({8E81D43C-0000-0000-0000-000000000000}) |
87 | {8BE16150-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 87 | ({8ACA2445-0000-0000-0000-000000000000}).5 = ({A7CD0630-0000-0000-0000-000000000000}) |
88 | {8BE16150-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 88 | ({8BB20F0A-0000-0000-0000-000000000000}).2 = ({8ACA2445-0000-0000-0000-000000000000}) |
89 | {4F874463-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 89 | ({8BB20F0A-0000-0000-0000-000000000000}).3 = ({A7CD0630-0000-0000-0000-000000000000}) |
90 | {4F874463-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 90 | ({8BB20F0A-0000-0000-0000-000000000000}).5 = ({8E81D43C-0000-0000-0000-000000000000}) |
91 | {4F874463-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 91 | ({E1B79ECF-0000-0000-0000-000000000000}).4 = ({8ACA2445-0000-0000-0000-000000000000}) |
92 | {4F874463-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 92 | ({E1B79ECF-0000-0000-0000-000000000000}).5 = ({A7CD0630-0000-0000-0000-000000000000}) |
93 | {988F0AC4-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 93 | ({6B20B603-0000-0000-0000-000000000000}).5 = ({8ACA2445-0000-0000-0000-000000000000}) |
94 | {988F0AC4-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 94 | ({6B20B603-0000-0000-0000-000000000000}).6 = ({A7CD0630-0000-0000-0000-000000000000}) |
95 | {988F0AC4-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 95 | ({97A82740-0000-0000-0000-000000000000}).2 = ({8ACA2445-0000-0000-0000-000000000000}) |
96 | {988F0AC4-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 96 | ({546099CD-0000-0000-0000-000000000000}).4 = ({8ACA2445-0000-0000-0000-000000000000}) |
97 | {B55C0B5D-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 97 | ({546099CD-0000-0000-0000-000000000000}).5 = ({A7CD0630-0000-0000-0000-000000000000}) |
98 | {B55C0B5D-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 98 | EndGlobalSection |
99 | {B55C0B5D-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 99 | GlobalSection(ProjectConfigurationPlatforms) = postSolution |
100 | {B55C0B5D-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 100 | {A7CD0630-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
101 | {8ACA2445-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 101 | {A7CD0630-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
102 | {8ACA2445-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 102 | {A7CD0630-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
103 | {8ACA2445-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 103 | {A7CD0630-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
104 | {8ACA2445-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 104 | {2270B8FE-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
105 | {8BB20F0A-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 105 | {2270B8FE-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
106 | {8BB20F0A-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 106 | {2270B8FE-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
107 | {8BB20F0A-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 107 | {2270B8FE-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
108 | {8BB20F0A-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 108 | {EE9E5D96-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
109 | {E1B79ECF-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 109 | {EE9E5D96-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
110 | {E1B79ECF-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 110 | {EE9E5D96-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
111 | {E1B79ECF-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 111 | {EE9E5D96-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
112 | {E1B79ECF-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 112 | {63A05FE9-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
113 | {6B20B603-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 113 | {63A05FE9-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
114 | {6B20B603-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 114 | {63A05FE9-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
115 | {6B20B603-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 115 | {63A05FE9-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
116 | {6B20B603-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 116 | {683344D5-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
117 | {97A82740-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 117 | {683344D5-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
118 | {97A82740-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 118 | {683344D5-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
119 | {97A82740-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 119 | {683344D5-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
120 | {97A82740-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 120 | {642A14A8-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
121 | {546099CD-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 121 | {642A14A8-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
122 | {546099CD-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 122 | {642A14A8-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
123 | {546099CD-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 123 | {642A14A8-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
124 | {546099CD-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 124 | {438A9556-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
125 | {8E81D43C-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 125 | {438A9556-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
126 | {8E81D43C-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | 126 | {438A9556-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
127 | {8E81D43C-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | 127 | {438A9556-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
128 | {8E81D43C-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | 128 | {632E1BFD-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
129 | EndGlobalSection | 129 | {632E1BFD-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU |
130 | GlobalSection(SolutionProperties) = preSolution | 130 | {632E1BFD-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU |
131 | HideSolutionNode = FALSE | 131 | {632E1BFD-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU |
132 | EndGlobalSection | 132 | {E88EF749-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
133 | {E88EF749-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
134 | {E88EF749-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
135 | {E88EF749-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
136 | {8BE16150-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
137 | {8BE16150-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
138 | {8BE16150-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
139 | {8BE16150-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
140 | {4F874463-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
141 | {4F874463-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
142 | {4F874463-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
143 | {4F874463-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
144 | {988F0AC4-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
145 | {988F0AC4-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
146 | {988F0AC4-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
147 | {988F0AC4-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
148 | {B55C0B5D-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
149 | {B55C0B5D-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
150 | {B55C0B5D-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
151 | {B55C0B5D-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
152 | {8ACA2445-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
153 | {8ACA2445-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
154 | {8ACA2445-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
155 | {8ACA2445-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
156 | {8BB20F0A-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
157 | {8BB20F0A-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
158 | {8BB20F0A-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
159 | {8BB20F0A-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
160 | {E1B79ECF-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
161 | {E1B79ECF-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
162 | {E1B79ECF-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
163 | {E1B79ECF-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
164 | {6B20B603-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
165 | {6B20B603-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
166 | {6B20B603-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
167 | {6B20B603-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
168 | {97A82740-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
169 | {97A82740-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
170 | {97A82740-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
171 | {97A82740-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
172 | {546099CD-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
173 | {546099CD-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
174 | {546099CD-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
175 | {546099CD-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
176 | {8E81D43C-0000-0000-0000-000000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
177 | {8E81D43C-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
178 | {8E81D43C-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
179 | {8E81D43C-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU | ||
180 | EndGlobalSection | ||
181 | GlobalSection(SolutionProperties) = preSolution | ||
182 | HideSolutionNode = FALSE | ||
183 | EndGlobalSection | ||
133 | EndGlobal | 184 | EndGlobal |
diff --git a/OpenSim.suo b/OpenSim.suo index 9f36e20..8f2c6c9 100644 --- a/OpenSim.suo +++ b/OpenSim.suo | |||
Binary files differ | |||
diff --git a/OpenSim/OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.csproj.user b/OpenSim/OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.csproj.user +++ b/OpenSim/OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.csproj.user b/OpenSim/OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.csproj.user +++ b/OpenSim/OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.csproj.user b/OpenSim/OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.csproj.user +++ b/OpenSim/OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Physics/Manager/OpenSim.Physics.Manager.csproj.user b/OpenSim/OpenSim.Physics/Manager/OpenSim.Physics.Manager.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Physics/Manager/OpenSim.Physics.Manager.csproj.user +++ b/OpenSim/OpenSim.Physics/Manager/OpenSim.Physics.Manager.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.csproj.user b/OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.csproj.user +++ b/OpenSim/OpenSim.Physics/OdePlugin/OpenSim.Physics.OdePlugin.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.csproj.user b/OpenSim/OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.csproj.user +++ b/OpenSim/OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.API.cs b/OpenSim/OpenSim.RegionServer/ClientView.API.cs index 89c1f61..dd9adac 100644 --- a/OpenSim/OpenSim.RegionServer/ClientView.API.cs +++ b/OpenSim/OpenSim.RegionServer/ClientView.API.cs | |||
@@ -235,49 +235,6 @@ namespace OpenSim | |||
235 | } | 235 | } |
236 | } | 236 | } |
237 | 237 | ||
238 | /// <summary> | ||
239 | /// | ||
240 | /// </summary> | ||
241 | /// <param name="regionInfo"></param> | ||
242 | public void SendRegionHandshake(RegionInfo regionInfo) | ||
243 | { | ||
244 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.VERBOSE, "Avatar.cs:SendRegionHandshake() - Creating empty RegionHandshake packet"); | ||
245 | System.Text.Encoding _enc = System.Text.Encoding.ASCII; | ||
246 | RegionHandshakePacket handshake = new RegionHandshakePacket(); | ||
247 | |||
248 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.VERBOSE, "Avatar.cs:SendRegionhandshake() - Filling in RegionHandshake details"); | ||
249 | handshake.RegionInfo.BillableFactor = 0; | ||
250 | handshake.RegionInfo.IsEstateManager = false; | ||
251 | handshake.RegionInfo.TerrainHeightRange00 = regionInfo.TerrainHeightRange00; | ||
252 | handshake.RegionInfo.TerrainHeightRange01 = regionInfo.TerrainHeightRange01; | ||
253 | handshake.RegionInfo.TerrainHeightRange10 = regionInfo.TerrainHeightRange10; | ||
254 | handshake.RegionInfo.TerrainHeightRange11 = regionInfo.TerrainHeightRange11; | ||
255 | handshake.RegionInfo.TerrainStartHeight00 = regionInfo.TerrainStartHeight00; | ||
256 | handshake.RegionInfo.TerrainStartHeight01 = regionInfo.TerrainStartHeight01; | ||
257 | handshake.RegionInfo.TerrainStartHeight10 = regionInfo.TerrainStartHeight10; | ||
258 | handshake.RegionInfo.TerrainStartHeight11 = regionInfo.TerrainStartHeight11; | ||
259 | handshake.RegionInfo.SimAccess = 13; | ||
260 | handshake.RegionInfo.WaterHeight = regionInfo.RegionWaterHeight; | ||
261 | uint regionFlags = 72458694; | ||
262 | if (regionInfo.RegionTerraform) | ||
263 | { | ||
264 | regionFlags -= 64; | ||
265 | } | ||
266 | handshake.RegionInfo.RegionFlags = regionFlags; | ||
267 | handshake.RegionInfo.SimName = _enc.GetBytes(regionInfo.RegionName + "\0"); | ||
268 | handshake.RegionInfo.SimOwner = new LLUUID("00000000-0000-0000-0000-000000000000"); | ||
269 | handshake.RegionInfo.TerrainBase0 = regionInfo.TerrainBase0; | ||
270 | handshake.RegionInfo.TerrainBase1 = regionInfo.TerrainBase1; | ||
271 | handshake.RegionInfo.TerrainBase2 = regionInfo.TerrainBase2; | ||
272 | handshake.RegionInfo.TerrainBase3 = regionInfo.TerrainBase3; | ||
273 | handshake.RegionInfo.TerrainDetail0 = regionInfo.TerrainDetail0; | ||
274 | handshake.RegionInfo.TerrainDetail1 = regionInfo.TerrainDetail1; | ||
275 | handshake.RegionInfo.TerrainDetail2 = regionInfo.TerrainDetail2; | ||
276 | handshake.RegionInfo.TerrainDetail3 = regionInfo.TerrainDetail3; | ||
277 | handshake.RegionInfo.CacheID = new LLUUID("545ec0a5-5751-1026-8a0b-216e38a7ab37"); | ||
278 | |||
279 | OutPacket(handshake); | ||
280 | } | ||
281 | 238 | ||
282 | /// <summary> | 239 | /// <summary> |
283 | /// | 240 | /// |
diff --git a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj index 990b5c3..fa91d7d 100644 --- a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj +++ b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj | |||
@@ -124,7 +124,10 @@ | |||
124 | </ProjectReference> | 124 | </ProjectReference> |
125 | </ItemGroup> | 125 | </ItemGroup> |
126 | <ItemGroup> | 126 | <ItemGroup> |
127 | <Compile Include="AgentAssetUpload.cs"> | 127 | <Compile Include="NetworkServersInfo.cs"> |
128 | <SubType>Code</SubType> | ||
129 | </Compile> | ||
130 | <Compile Include="UDPServer.cs"> | ||
128 | <SubType>Code</SubType> | 131 | <SubType>Code</SubType> |
129 | </Compile> | 132 | </Compile> |
130 | <Compile Include="AuthenticateSessionsLocal.cs"> | 133 | <Compile Include="AuthenticateSessionsLocal.cs"> |
@@ -133,10 +136,10 @@ | |||
133 | <Compile Include="AuthenticateSessionsRemote.cs"> | 136 | <Compile Include="AuthenticateSessionsRemote.cs"> |
134 | <SubType>Code</SubType> | 137 | <SubType>Code</SubType> |
135 | </Compile> | 138 | </Compile> |
136 | <Compile Include="ClientView.API.cs"> | 139 | <Compile Include="OpenSimNetworkHandler.cs"> |
137 | <SubType>Code</SubType> | 140 | <SubType>Code</SubType> |
138 | </Compile> | 141 | </Compile> |
139 | <Compile Include="ClientView.cs"> | 142 | <Compile Include="UserConfigUtility.cs"> |
140 | <SubType>Code</SubType> | 143 | <SubType>Code</SubType> |
141 | </Compile> | 144 | </Compile> |
142 | <Compile Include="ClientView.Grid.cs"> | 145 | <Compile Include="ClientView.Grid.cs"> |
@@ -148,40 +151,37 @@ | |||
148 | <Compile Include="ClientView.ProcessPackets.cs"> | 151 | <Compile Include="ClientView.ProcessPackets.cs"> |
149 | <SubType>Code</SubType> | 152 | <SubType>Code</SubType> |
150 | </Compile> | 153 | </Compile> |
151 | <Compile Include="ClientViewBase.cs"> | 154 | <Compile Include="VersionInfo.cs"> |
152 | <SubType>Code</SubType> | ||
153 | </Compile> | ||
154 | <Compile Include="CommsManager.cs"> | ||
155 | <SubType>Code</SubType> | 155 | <SubType>Code</SubType> |
156 | </Compile> | 156 | </Compile> |
157 | <Compile Include="NetworkServersInfo.cs"> | 157 | <Compile Include="AgentAssetUpload.cs"> |
158 | <SubType>Code</SubType> | 158 | <SubType>Code</SubType> |
159 | </Compile> | 159 | </Compile> |
160 | <Compile Include="OpenSimNetworkHandler.cs"> | 160 | <Compile Include="ClientViewBase.cs"> |
161 | <SubType>Code</SubType> | 161 | <SubType>Code</SubType> |
162 | </Compile> | 162 | </Compile> |
163 | <Compile Include="PacketServer.cs"> | 163 | <Compile Include="RegionServerBase.cs"> |
164 | <SubType>Code</SubType> | 164 | <SubType>Code</SubType> |
165 | </Compile> | 165 | </Compile> |
166 | <Compile Include="RegionServerBase.cs"> | 166 | <Compile Include="CommsManager.cs"> |
167 | <SubType>Code</SubType> | 167 | <SubType>Code</SubType> |
168 | </Compile> | 168 | </Compile> |
169 | <Compile Include="UDPServer.cs"> | 169 | <Compile Include="ClientView.cs"> |
170 | <SubType>Code</SubType> | 170 | <SubType>Code</SubType> |
171 | </Compile> | 171 | </Compile> |
172 | <Compile Include="UserConfigUtility.cs"> | 172 | <Compile Include="PacketServer.cs"> |
173 | <SubType>Code</SubType> | 173 | <SubType>Code</SubType> |
174 | </Compile> | 174 | </Compile> |
175 | <Compile Include="VersionInfo.cs"> | 175 | <Compile Include="ClientView.API.cs"> |
176 | <SubType>Code</SubType> | 176 | <SubType>Code</SubType> |
177 | </Compile> | 177 | </Compile> |
178 | <Compile Include="Assets\AssetCache.cs"> | 178 | <Compile Include="CAPS\AdminWebFront.cs"> |
179 | <SubType>Code</SubType> | 179 | <SubType>Code</SubType> |
180 | </Compile> | 180 | </Compile> |
181 | <Compile Include="Assets\InventoryCache.cs"> | 181 | <Compile Include="Assets\InventoryCache.cs"> |
182 | <SubType>Code</SubType> | 182 | <SubType>Code</SubType> |
183 | </Compile> | 183 | </Compile> |
184 | <Compile Include="CAPS\AdminWebFront.cs"> | 184 | <Compile Include="Assets\AssetCache.cs"> |
185 | <SubType>Code</SubType> | 185 | <SubType>Code</SubType> |
186 | </Compile> | 186 | </Compile> |
187 | </ItemGroup> | 187 | </ItemGroup> |
diff --git a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj.user b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj.user +++ b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build index c984f5a..fc33eb9 100644 --- a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build +++ b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build | |||
@@ -11,47 +11,26 @@ | |||
11 | <resources prefix="OpenSim.RegionServer" dynamicprefix="true" > | 11 | <resources prefix="OpenSim.RegionServer" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="AgentAssetUpload.cs" /> | 14 | <include name="NetworkServersInfo.cs" /> |
15 | <include name="AuthenticateSessionsBase.cs" /> | 15 | <include name="UDPServer.cs" /> |
16 | <include name="AuthenticateSessionsLocal.cs" /> | 16 | <include name="AuthenticateSessionsLocal.cs" /> |
17 | <include name="AuthenticateSessionsRemote.cs" /> | 17 | <include name="AuthenticateSessionsRemote.cs" /> |
18 | <include name="ClientView.cs" /> | 18 | <include name="OpenSimNetworkHandler.cs" /> |
19 | <include name="UserConfigUtility.cs" /> | ||
19 | <include name="ClientView.Grid.cs" /> | 20 | <include name="ClientView.Grid.cs" /> |
20 | <include name="ClientView.PacketHandlers.cs" /> | 21 | <include name="ClientView.PacketHandlers.cs" /> |
21 | <include name="ClientView.ProcessPackets.cs" /> | 22 | <include name="ClientView.ProcessPackets.cs" /> |
23 | <include name="VersionInfo.cs" /> | ||
24 | <include name="AgentAssetUpload.cs" /> | ||
22 | <include name="ClientViewBase.cs" /> | 25 | <include name="ClientViewBase.cs" /> |
23 | <include name="Grid.cs" /> | ||
24 | <include name="OpenSimMain.cs" /> | ||
25 | <include name="OpenSimNetworkHandler.cs" /> | ||
26 | <include name="PacketServer.cs" /> | ||
27 | <include name="RegionInfo.cs" /> | ||
28 | <include name="RegionInfoBase.cs" /> | ||
29 | <include name="RegionServerBase.cs" /> | 26 | <include name="RegionServerBase.cs" /> |
30 | <include name="UDPServer.cs" /> | 27 | <include name="CommsManager.cs" /> |
31 | <include name="VersionInfo.cs" /> | 28 | <include name="ClientView.cs" /> |
32 | <include name="Assets/AssetCache.cs" /> | 29 | <include name="PacketServer.cs" /> |
33 | <include name="Assets/InventoryCache.cs" /> | 30 | <include name="ClientView.API.cs" /> |
34 | <include name="CAPS/AdminWebFront.cs" /> | 31 | <include name="CAPS/AdminWebFront.cs" /> |
35 | <include name="types/Mesh.cs" /> | 32 | <include name="Assets/InventoryCache.cs" /> |
36 | <include name="types/Triangle.cs" /> | 33 | <include name="Assets/AssetCache.cs" /> |
37 | <include name="world/Avatar.Client.cs" /> | ||
38 | <include name="world/Avatar.cs" /> | ||
39 | <include name="world/Avatar.Update.cs" /> | ||
40 | <include name="world/AvatarAnimations.cs" /> | ||
41 | <include name="world/Entity.cs" /> | ||
42 | <include name="world/Primitive.cs" /> | ||
43 | <include name="world/Primitive2.cs" /> | ||
44 | <include name="world/SceneObject.cs" /> | ||
45 | <include name="world/World.cs" /> | ||
46 | <include name="world/World.PacketHandlers.cs" /> | ||
47 | <include name="world/World.Scripting.cs" /> | ||
48 | <include name="world/WorldBase.cs" /> | ||
49 | <include name="world/scripting/IScriptContext.cs" /> | ||
50 | <include name="world/scripting/IScriptEntity.cs" /> | ||
51 | <include name="world/scripting/IScriptHandler.cs" /> | ||
52 | <include name="world/scripting/Script.cs" /> | ||
53 | <include name="world/scripting/ScriptFactory.cs" /> | ||
54 | <include name="world/scripting/Scripts/FollowRandomAvatar.cs" /> | ||
55 | </sources> | 34 | </sources> |
56 | <references basedir="${project::get-base-directory()}"> | 35 | <references basedir="${project::get-base-directory()}"> |
57 | <lib> | 36 | <lib> |
diff --git a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj index bd1a332..6ffcf9e 100644 --- a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj +++ b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj | |||
@@ -76,66 +76,66 @@ | |||
76 | </ProjectReference> | 76 | </ProjectReference> |
77 | </ItemGroup> | 77 | </ItemGroup> |
78 | <ItemGroup> | 78 | <ItemGroup> |
79 | <Compile Include="ClassInstance.cs"> | 79 | <Compile Include="MainMemory.cs"> |
80 | <SubType>Code</SubType> | ||
81 | </Compile> | ||
82 | <Compile Include="ClassRecord.cs"> | ||
83 | <SubType>Code</SubType> | 80 | <SubType>Code</SubType> |
84 | </Compile> | 81 | </Compile> |
85 | <Compile Include="Heap.cs"> | 82 | <Compile Include="Heap.cs"> |
86 | <SubType>Code</SubType> | 83 | <SubType>Code</SubType> |
87 | </Compile> | 84 | </Compile> |
88 | <Compile Include="Interpreter.cs"> | 85 | <Compile Include="StackFrame.cs"> |
89 | <SubType>Code</SubType> | 86 | <SubType>Code</SubType> |
90 | </Compile> | 87 | </Compile> |
91 | <Compile Include="InterpreterLogic.cs"> | 88 | <Compile Include="InterpreterLogic.cs"> |
92 | <SubType>Code</SubType> | 89 | <SubType>Code</SubType> |
93 | </Compile> | 90 | </Compile> |
94 | <Compile Include="InterpreterMethods.cs"> | 91 | <Compile Include="OpenSimJVM.cs"> |
95 | <SubType>Code</SubType> | 92 | <SubType>Code</SubType> |
96 | </Compile> | 93 | </Compile> |
97 | <Compile Include="InterpreterReturn.cs"> | 94 | <Compile Include="InterpreterMethods.cs"> |
98 | <SubType>Code</SubType> | 95 | <SubType>Code</SubType> |
99 | </Compile> | 96 | </Compile> |
100 | <Compile Include="MainMemory.cs"> | 97 | <Compile Include="ClassInstance.cs"> |
101 | <SubType>Code</SubType> | 98 | <SubType>Code</SubType> |
102 | </Compile> | 99 | </Compile> |
103 | <Compile Include="MethodMemory.cs"> | 100 | <Compile Include="InterpreterReturn.cs"> |
104 | <SubType>Code</SubType> | 101 | <SubType>Code</SubType> |
105 | </Compile> | 102 | </Compile> |
106 | <Compile Include="Object.cs"> | 103 | <Compile Include="Interpreter.cs"> |
107 | <SubType>Code</SubType> | 104 | <SubType>Code</SubType> |
108 | </Compile> | 105 | </Compile> |
109 | <Compile Include="OpenSimJVM.cs"> | 106 | <Compile Include="ClassRecord.cs"> |
110 | <SubType>Code</SubType> | 107 | <SubType>Code</SubType> |
111 | </Compile> | 108 | </Compile> |
112 | <Compile Include="Stack.cs"> | 109 | <Compile Include="Stack.cs"> |
113 | <SubType>Code</SubType> | 110 | <SubType>Code</SubType> |
114 | </Compile> | 111 | </Compile> |
115 | <Compile Include="StackFrame.cs"> | 112 | <Compile Include="Object.cs"> |
116 | <SubType>Code</SubType> | 113 | <SubType>Code</SubType> |
117 | </Compile> | 114 | </Compile> |
118 | <Compile Include="Thread.cs"> | 115 | <Compile Include="Thread.cs"> |
119 | <SubType>Code</SubType> | 116 | <SubType>Code</SubType> |
120 | </Compile> | 117 | </Compile> |
121 | <Compile Include="Properties\AssemblyInfo.cs"> | 118 | <Compile Include="MethodMemory.cs"> |
122 | <SubType>Code</SubType> | 119 | <SubType>Code</SubType> |
123 | </Compile> | 120 | </Compile> |
124 | <Compile Include="Types\ArrayReference.cs"> | 121 | <Compile Include="Properties\AssemblyInfo.cs"> |
125 | <SubType>Code</SubType> | 122 | <SubType>Code</SubType> |
126 | </Compile> | 123 | </Compile> |
127 | <Compile Include="Types\BaseType.cs"> | 124 | <Compile Include="Types\BaseType.cs"> |
128 | <SubType>Code</SubType> | 125 | <SubType>Code</SubType> |
129 | </Compile> | 126 | </Compile> |
130 | <Compile Include="Types\ObjectReference.cs"> | 127 | <Compile Include="Types\ArrayReference.cs"> |
131 | <SubType>Code</SubType> | 128 | <SubType>Code</SubType> |
132 | </Compile> | 129 | </Compile> |
133 | <Compile Include="Types\PrimitiveTypes\Byte.cs"> | 130 | <Compile Include="Types\ObjectReference.cs"> |
134 | <SubType>Code</SubType> | 131 | <SubType>Code</SubType> |
135 | </Compile> | 132 | </Compile> |
136 | <Compile Include="Types\PrimitiveTypes\Char.cs"> | 133 | <Compile Include="Types\PrimitiveTypes\Char.cs"> |
137 | <SubType>Code</SubType> | 134 | <SubType>Code</SubType> |
138 | </Compile> | 135 | </Compile> |
136 | <Compile Include="Types\PrimitiveTypes\Byte.cs"> | ||
137 | <SubType>Code</SubType> | ||
138 | </Compile> | ||
139 | <Compile Include="Types\PrimitiveTypes\Float.cs"> | 139 | <Compile Include="Types\PrimitiveTypes\Float.cs"> |
140 | <SubType>Code</SubType> | 140 | <SubType>Code</SubType> |
141 | </Compile> | 141 | </Compile> |
diff --git a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj.user b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj.user +++ b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build index c5255db..ac4d564 100644 --- a/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build +++ b/OpenSim/OpenSim.Scripting/EmbeddedJVM/OpenSim.Scripting.EmbeddedJVM.dll.build | |||
@@ -11,26 +11,26 @@ | |||
11 | <resources prefix="OpenSim.Scripting.EmbeddedJVM" dynamicprefix="true" > | 11 | <resources prefix="OpenSim.Scripting.EmbeddedJVM" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="ClassInstance.cs" /> | 14 | <include name="MainMemory.cs" /> |
15 | <include name="ClassRecord.cs" /> | ||
16 | <include name="Heap.cs" /> | 15 | <include name="Heap.cs" /> |
17 | <include name="Interpreter.cs" /> | 16 | <include name="StackFrame.cs" /> |
18 | <include name="InterpreterLogic.cs" /> | 17 | <include name="InterpreterLogic.cs" /> |
18 | <include name="OpenSimJVM.cs" /> | ||
19 | <include name="InterpreterMethods.cs" /> | 19 | <include name="InterpreterMethods.cs" /> |
20 | <include name="ClassInstance.cs" /> | ||
20 | <include name="InterpreterReturn.cs" /> | 21 | <include name="InterpreterReturn.cs" /> |
21 | <include name="MainMemory.cs" /> | 22 | <include name="Interpreter.cs" /> |
22 | <include name="MethodMemory.cs" /> | 23 | <include name="ClassRecord.cs" /> |
23 | <include name="Object.cs" /> | ||
24 | <include name="OpenSimJVM.cs" /> | ||
25 | <include name="Stack.cs" /> | 24 | <include name="Stack.cs" /> |
26 | <include name="StackFrame.cs" /> | 25 | <include name="Object.cs" /> |
27 | <include name="Thread.cs" /> | 26 | <include name="Thread.cs" /> |
27 | <include name="MethodMemory.cs" /> | ||
28 | <include name="Properties/AssemblyInfo.cs" /> | 28 | <include name="Properties/AssemblyInfo.cs" /> |
29 | <include name="Types/ArrayReference.cs" /> | ||
30 | <include name="Types/BaseType.cs" /> | 29 | <include name="Types/BaseType.cs" /> |
30 | <include name="Types/ArrayReference.cs" /> | ||
31 | <include name="Types/ObjectReference.cs" /> | 31 | <include name="Types/ObjectReference.cs" /> |
32 | <include name="Types/PrimitiveTypes/Byte.cs" /> | ||
33 | <include name="Types/PrimitiveTypes/Char.cs" /> | 32 | <include name="Types/PrimitiveTypes/Char.cs" /> |
33 | <include name="Types/PrimitiveTypes/Byte.cs" /> | ||
34 | <include name="Types/PrimitiveTypes/Float.cs" /> | 34 | <include name="Types/PrimitiveTypes/Float.cs" /> |
35 | <include name="Types/PrimitiveTypes/Int.cs" /> | 35 | <include name="Types/PrimitiveTypes/Int.cs" /> |
36 | </sources> | 36 | </sources> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/BDBLocalStorage.cs b/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/BDBLocalStorage.cs index 30abd84..ab3c34c 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/BDBLocalStorage.cs +++ b/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/BDBLocalStorage.cs | |||
@@ -1,5 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) OpenSim project, http://sim.opensecondlife.org/ | 2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
3 | * | 4 | * |
4 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
5 | * modification, are permitted provided that the following conditions are met: | 6 | * modification, are permitted provided that the following conditions are met: |
@@ -8,14 +9,14 @@ | |||
8 | * * Redistributions in binary form must reproduce the above copyright | 9 | * * Redistributions in binary form must reproduce the above copyright |
9 | * notice, this list of conditions and the following disclaimer in the | 10 | * notice, this list of conditions and the following disclaimer in the |
10 | * documentation and/or other materials provided with the distribution. | 11 | * documentation and/or other materials provided with the distribution. |
11 | * * Neither the name of the <organization> nor the | 12 | * * Neither the name of the OpenSim Project nor the |
12 | * names of its contributors may be used to endorse or promote products | 13 | * names of its contributors may be used to endorse or promote products |
13 | * derived from this software without specific prior written permission. | 14 | * derived from this software without specific prior written permission. |
14 | * | 15 | * |
15 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | 16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY |
16 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
18 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | 19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY |
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
@@ -85,6 +86,28 @@ namespace OpenSim.Storage.LocalStorageBDB | |||
85 | { | 86 | { |
86 | 87 | ||
87 | } | 88 | } |
89 | |||
90 | public void SaveParcels(ParcelData[] parcel_data) | ||
91 | { | ||
92 | } | ||
93 | |||
94 | public void SaveParcel(ParcelData parcel) | ||
95 | { | ||
96 | } | ||
97 | |||
98 | public void RemoveParcel(ParcelData parcel) | ||
99 | { | ||
100 | } | ||
101 | |||
102 | public void RemoveAllParcels() | ||
103 | { | ||
104 | } | ||
105 | |||
106 | public void LoadParcels(ILocalStorageParcelReceiver recv) | ||
107 | { | ||
108 | recv.NoParcelDataFromStorage(); | ||
109 | } | ||
110 | |||
88 | public void ShutDown() | 111 | public void ShutDown() |
89 | { | 112 | { |
90 | sim.GetDb().Close(); | 113 | sim.GetDb().Close(); |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.csproj.user b/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.csproj.user +++ b/OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB/OpenSim.Storage.LocalStorageBerkeleyDB.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs b/OpenSim/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs index a50795a..93f55d6 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs | |||
@@ -1,5 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) OpenSim project, http://sim.opensecondlife.org/ | 2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
3 | * | 4 | * |
4 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
5 | * modification, are permitted provided that the following conditions are met: | 6 | * modification, are permitted provided that the following conditions are met: |
@@ -8,14 +9,14 @@ | |||
8 | * * Redistributions in binary form must reproduce the above copyright | 9 | * * Redistributions in binary form must reproduce the above copyright |
9 | * notice, this list of conditions and the following disclaimer in the | 10 | * notice, this list of conditions and the following disclaimer in the |
10 | * documentation and/or other materials provided with the distribution. | 11 | * documentation and/or other materials provided with the distribution. |
11 | * * Neither the name of the <organization> nor the | 12 | * * Neither the name of the OpenSim Project nor the |
12 | * names of its contributors may be used to endorse or promote products | 13 | * names of its contributors may be used to endorse or promote products |
13 | * derived from this software without specific prior written permission. | 14 | * derived from this software without specific prior written permission. |
14 | * | 15 | * |
15 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | 16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY |
16 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
18 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | 19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY |
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
@@ -28,133 +29,120 @@ using System; | |||
28 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
29 | using Db4objects.Db4o; | 30 | using Db4objects.Db4o; |
30 | using Db4objects.Db4o.Query; | 31 | using Db4objects.Db4o.Query; |
32 | |||
31 | using libsecondlife; | 33 | using libsecondlife; |
32 | using OpenSim.Framework.Interfaces; | 34 | using OpenSim.Framework.Interfaces; |
33 | using OpenSim.Framework.Types; | 35 | using OpenSim.Framework.Types; |
36 | using OpenSim.Framework.Console; | ||
34 | 37 | ||
35 | 38 | ||
36 | namespace OpenSim.Storage.LocalStorageDb4o | 39 | namespace OpenSim.Storage.LocalStorageDb4o |
37 | { | 40 | { |
38 | /// <summary> | 41 | /// <summary> |
39 | /// | 42 | /// |
40 | /// </summary> | 43 | /// </summary> |
41 | public class Db4LocalStorage : ILocalStorage | 44 | public class Db4LocalStorage : ILocalStorage |
42 | { | 45 | { |
43 | private IObjectContainer db; | 46 | private IObjectContainer db; |
44 | private string datastore; | 47 | private string datastore; |
45 | 48 | ||
46 | public Db4LocalStorage() | 49 | public Db4LocalStorage() |
47 | { | 50 | { |
48 | 51 | ||
49 | } | 52 | } |
50 | 53 | ||
51 | public void Initialise(string dfile) | 54 | public void Initialise(string dfile) |
52 | { | 55 | { |
53 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,"Db4LocalStorage Opening " + dfile); | 56 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Db4LocalStorage Opening " + dfile); |
54 | datastore = dfile; | 57 | datastore = dfile; |
55 | try | 58 | try |
56 | { | 59 | { |
57 | db = Db4oFactory.OpenFile(datastore); | 60 | db = Db4oFactory.OpenFile(datastore); |
58 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Db4LocalStorage creation"); | 61 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Db4LocalStorage creation"); |
59 | } | 62 | } |
60 | catch (Exception e) | 63 | catch (Exception e) |
61 | { | 64 | { |
62 | db.Close(); | 65 | db.Close(); |
63 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,"Db4LocalStorage :Constructor - Exception occured"); | 66 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Db4LocalStorage :Constructor - Exception occured"); |
64 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,e.ToString()); | 67 | OpenSim.Framework.Console.MainConsole.Instance.Warn(e.ToString()); |
65 | } | 68 | } |
66 | } | 69 | } |
67 | 70 | ||
68 | public void StorePrim(PrimData prim) | 71 | public void StorePrim(PrimData prim) |
69 | { | 72 | { |
70 | IObjectSet result = db.Query(new UUIDQuery(prim.FullID)); | 73 | IObjectSet result = db.Query(new UUIDPrimQuery(prim.FullID)); |
71 | if(result.Count>0) | 74 | if (result.Count > 0) |
72 | { | 75 | { |
73 | //prim already in storage | 76 | //prim already in storage |
74 | //so update it | 77 | //so update it |
75 | PrimData found = (PrimData) result.Next(); | 78 | PrimData found = (PrimData)result.Next(); |
76 | found.PathBegin = prim.PathBegin; | 79 | found.PathBegin = prim.PathBegin; |
77 | found.PathCurve= prim.PathCurve; | 80 | found.PathCurve = prim.PathCurve; |
78 | found.PathEnd = prim.PathEnd; | 81 | found.PathEnd = prim.PathEnd; |
79 | found.PathRadiusOffset = prim.PathRadiusOffset; | 82 | found.PathRadiusOffset = prim.PathRadiusOffset; |
80 | found.PathRevolutions = prim.PathRevolutions; | 83 | found.PathRevolutions = prim.PathRevolutions; |
81 | found.PathScaleX= prim.PathScaleX; | 84 | found.PathScaleX = prim.PathScaleX; |
82 | found.PathScaleY = prim.PathScaleY; | 85 | found.PathScaleY = prim.PathScaleY; |
83 | found.PathShearX = prim.PathShearX; | 86 | found.PathShearX = prim.PathShearX; |
84 | found.PathShearY = prim.PathShearY; | 87 | found.PathShearY = prim.PathShearY; |
85 | found.PathSkew = prim.PathSkew; | 88 | found.PathSkew = prim.PathSkew; |
86 | found.PathTaperX = prim.PathTaperX; | 89 | found.PathTaperX = prim.PathTaperX; |
87 | found.PathTaperY = prim.PathTaperY; | 90 | found.PathTaperY = prim.PathTaperY; |
88 | found.PathTwist = prim.PathTwist; | 91 | found.PathTwist = prim.PathTwist; |
89 | found.PathTwistBegin = prim.PathTwistBegin; | 92 | found.PathTwistBegin = prim.PathTwistBegin; |
90 | found.PCode = prim.PCode; | 93 | found.PCode = prim.PCode; |
91 | found.ProfileBegin = prim.ProfileBegin; | 94 | found.ProfileBegin = prim.ProfileBegin; |
92 | found.ProfileCurve = prim.ProfileCurve; | 95 | found.ProfileCurve = prim.ProfileCurve; |
93 | found.ProfileEnd = prim.ProfileEnd; | 96 | found.ProfileEnd = prim.ProfileEnd; |
94 | found.ProfileHollow = prim.ProfileHollow; | 97 | found.ProfileHollow = prim.ProfileHollow; |
95 | found.Position = prim.Position; | 98 | found.Position = prim.Position; |
96 | found.Rotation = prim.Rotation; | 99 | found.Rotation = prim.Rotation; |
97 | found.Texture = prim.Texture; | 100 | found.Texture = prim.Texture; |
98 | db.Set(found); | 101 | db.Set(found); |
99 | db.Commit(); | 102 | db.Commit(); |
100 | } | 103 | } |
101 | else | 104 | else |
102 | { | 105 | { |
103 | //not in storage | 106 | //not in storage |
104 | db.Set(prim); | 107 | db.Set(prim); |
105 | db.Commit(); | 108 | db.Commit(); |
106 | } | 109 | } |
107 | } | 110 | } |
108 | 111 | ||
109 | public void RemovePrim(LLUUID primID) | 112 | public void RemovePrim(LLUUID primID) |
110 | { | 113 | { |
111 | IObjectSet result = db.Query(new UUIDQuery(primID)); | 114 | IObjectSet result = db.Query(new UUIDPrimQuery(primID)); |
112 | if(result.Count>0) | 115 | if (result.Count > 0) |
113 | { | 116 | { |
114 | PrimData found = (PrimData) result.Next(); | 117 | PrimData found = (PrimData)result.Next(); |
115 | db.Delete(found); | 118 | db.Delete(found); |
116 | } | 119 | } |
117 | } | 120 | } |
118 | 121 | ||
119 | 122 | ||
120 | public void LoadPrimitives(ILocalStorageReceiver receiver) | 123 | public void LoadPrimitives(ILocalStorageReceiver receiver) |
121 | { | 124 | { |
122 | IObjectSet result = db.Get(typeof(PrimData)); | 125 | IObjectSet result = db.Get(typeof(PrimData)); |
123 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Db4LocalStorage.cs: LoadPrimitives() - number of prims in storages is "+result.Count); | 126 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Db4LocalStorage.cs: LoadPrimitives() - number of prims in storages is " + result.Count); |
124 | foreach (PrimData prim in result) { | 127 | foreach (PrimData prim in result) |
125 | receiver.PrimFromStorage(prim); | 128 | { |
126 | } | 129 | receiver.PrimFromStorage(prim); |
127 | } | 130 | } |
131 | } | ||
128 | 132 | ||
129 | public float[] LoadWorld() | 133 | public float[] LoadWorld() |
130 | { | 134 | { |
131 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"LoadWorld() - Loading world...."); | 135 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("LoadWorld() - Loading world...."); |
132 | //World blank = new World(); | ||
133 | float[] heightmap = null; | 136 | float[] heightmap = null; |
134 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"LoadWorld() - Looking for a heightmap in local DB"); | 137 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("LoadWorld() - Looking for a heightmap in local DB"); |
135 | IObjectSet world_result = db.Get(typeof(MapStorage)); | 138 | IObjectSet world_result = db.Get(typeof(MapStorage)); |
136 | if (world_result.Count > 0) | 139 | if (world_result.Count > 0) |
137 | { | 140 | { |
138 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"LoadWorld() - Found a heightmap in local database, loading"); | 141 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("LoadWorld() - Found a heightmap in local database, loading"); |
139 | MapStorage map = (MapStorage)world_result.Next(); | 142 | MapStorage map = (MapStorage)world_result.Next(); |
140 | //blank.LandMap = map.Map; | 143 | //blank.LandMap = map.Map; |
141 | heightmap = map.Map; | 144 | heightmap = map.Map; |
142 | } | 145 | } |
143 | else | ||
144 | { | ||
145 | /* | ||
146 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - No heightmap found, generating new one"); | ||
147 | HeightmapGenHills hills = new HeightmapGenHills(); | ||
148 | // blank.LandMap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false); | ||
149 | // heightmap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false); | ||
150 | heightmap = new float[256, 256]; | ||
151 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - Saving heightmap to local database"); | ||
152 | MapStorage map = new MapStorage(); | ||
153 | map.Map = heightmap; //blank.LandMap; | ||
154 | db.Set(map); | ||
155 | db.Commit(); | ||
156 | */ | ||
157 | } | ||
158 | return heightmap; | 146 | return heightmap; |
159 | } | 147 | } |
160 | 148 | ||
@@ -163,7 +151,7 @@ namespace OpenSim.Storage.LocalStorageDb4o | |||
163 | IObjectSet world_result = db.Get(typeof(MapStorage)); | 151 | IObjectSet world_result = db.Get(typeof(MapStorage)); |
164 | if (world_result.Count > 0) | 152 | if (world_result.Count > 0) |
165 | { | 153 | { |
166 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"SaveWorld() - updating saved copy of heightmap in local database"); | 154 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("SaveWorld() - updating saved copy of heightmap in local database"); |
167 | MapStorage map = (MapStorage)world_result.Next(); | 155 | MapStorage map = (MapStorage)world_result.Next(); |
168 | db.Delete(map); | 156 | db.Delete(map); |
169 | } | 157 | } |
@@ -173,10 +161,111 @@ namespace OpenSim.Storage.LocalStorageDb4o | |||
173 | db.Commit(); | 161 | db.Commit(); |
174 | } | 162 | } |
175 | 163 | ||
176 | public void ShutDown() | 164 | public void SaveParcel(ParcelData parcel) |
177 | { | 165 | { |
178 | db.Commit(); | 166 | IObjectSet result = db.Query(new UUIDParcelQuery(parcel.globalID)); |
179 | db.Close(); | 167 | if (result.Count > 0) |
180 | } | 168 | { |
181 | } | 169 | //Old Parcel |
182 | } | 170 | ParcelData updateParcel = (ParcelData)result.Next(); |
171 | updateParcel.AABBMax = parcel.AABBMax; | ||
172 | updateParcel.AABBMin = parcel.AABBMin; | ||
173 | updateParcel.area = parcel.area; | ||
174 | updateParcel.auctionID = parcel.auctionID; | ||
175 | updateParcel.authBuyerID = parcel.authBuyerID; | ||
176 | updateParcel.category = parcel.category; | ||
177 | updateParcel.claimDate = parcel.claimDate; | ||
178 | updateParcel.claimPrice = parcel.claimPrice; | ||
179 | updateParcel.groupID = parcel.groupID; | ||
180 | updateParcel.groupPrims = parcel.groupPrims; | ||
181 | updateParcel.isGroupOwned = parcel.isGroupOwned; | ||
182 | updateParcel.landingType = parcel.landingType; | ||
183 | updateParcel.mediaAutoScale = parcel.mediaAutoScale; | ||
184 | updateParcel.mediaID = parcel.mediaID; | ||
185 | updateParcel.mediaURL = parcel.mediaURL; | ||
186 | updateParcel.musicURL = parcel.musicURL; | ||
187 | updateParcel.localID = parcel.localID; | ||
188 | updateParcel.ownerID = parcel.ownerID; | ||
189 | updateParcel.passHours = parcel.passHours; | ||
190 | updateParcel.passPrice = parcel.passPrice; | ||
191 | updateParcel.parcelBitmapByteArray = (byte[])parcel.parcelBitmapByteArray.Clone(); | ||
192 | updateParcel.parcelDesc = parcel.parcelDesc; | ||
193 | updateParcel.parcelFlags = parcel.parcelFlags; | ||
194 | updateParcel.parcelName = parcel.parcelName; | ||
195 | updateParcel.parcelStatus = parcel.parcelStatus; | ||
196 | updateParcel.salePrice = parcel.salePrice; | ||
197 | updateParcel.snapshotID = parcel.snapshotID; | ||
198 | updateParcel.userLocation = parcel.userLocation; | ||
199 | updateParcel.userLookAt = parcel.userLookAt; | ||
200 | |||
201 | db.Set(updateParcel); | ||
202 | } | ||
203 | else | ||
204 | { | ||
205 | db.Set(parcel); | ||
206 | } | ||
207 | db.Commit(); | ||
208 | } | ||
209 | |||
210 | public void SaveParcels(ParcelData[] parcel_data) | ||
211 | { | ||
212 | MainConsole.Instance.Notice("Parcel Backup: Saving Parcels..."); | ||
213 | int i; | ||
214 | for (i = 0; i < parcel_data.GetLength(0); i++) | ||
215 | { | ||
216 | |||
217 | SaveParcel(parcel_data[i]); | ||
218 | |||
219 | } | ||
220 | MainConsole.Instance.Notice("Parcel Backup: Parcel Save Complete"); | ||
221 | } | ||
222 | |||
223 | public void RemoveParcel(ParcelData parcel) | ||
224 | { | ||
225 | IObjectSet result = db.Query(new UUIDParcelQuery(parcel.globalID)); | ||
226 | if (result.Count > 0) | ||
227 | { | ||
228 | db.Delete(result[0]); | ||
229 | } | ||
230 | db.Commit(); | ||
231 | } | ||
232 | public void RemoveAllParcels() | ||
233 | { | ||
234 | MainConsole.Instance.Notice("Parcel Backup: Removing all parcels..."); | ||
235 | IObjectSet result = db.Get(typeof(ParcelData)); | ||
236 | if (result.Count > 0) | ||
237 | { | ||
238 | foreach (ParcelData parcelData in result) | ||
239 | { | ||
240 | RemoveParcel(parcelData); | ||
241 | } | ||
242 | } | ||
243 | } | ||
244 | |||
245 | public void LoadParcels(ILocalStorageParcelReceiver recv) | ||
246 | { | ||
247 | MainConsole.Instance.Notice("Parcel Backup: Loading Parcels..."); | ||
248 | IObjectSet result = db.Get(typeof(ParcelData)); | ||
249 | if (result.Count > 0) | ||
250 | { | ||
251 | MainConsole.Instance.Notice("Parcel Backup: Parcels exist in database."); | ||
252 | foreach (ParcelData parcelData in result) | ||
253 | { | ||
254 | |||
255 | recv.ParcelFromStorage(parcelData); | ||
256 | } | ||
257 | } | ||
258 | else | ||
259 | { | ||
260 | MainConsole.Instance.Notice("Parcel Backup: No parcels exist. Creating basic parcel."); | ||
261 | recv.NoParcelDataFromStorage(); | ||
262 | } | ||
263 | MainConsole.Instance.Notice("Parcel Backup: Parcels Restored"); | ||
264 | } | ||
265 | public void ShutDown() | ||
266 | { | ||
267 | db.Commit(); | ||
268 | db.Close(); | ||
269 | } | ||
270 | } | ||
271 | } \ No newline at end of file | ||
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj index 9b4ff5d..7d90947 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj | |||
@@ -93,13 +93,16 @@ | |||
93 | <Compile Include="AssemblyInfo.cs"> | 93 | <Compile Include="AssemblyInfo.cs"> |
94 | <SubType>Code</SubType> | 94 | <SubType>Code</SubType> |
95 | </Compile> | 95 | </Compile> |
96 | <Compile Include="Db4LocalStorage.cs"> | 96 | <Compile Include="MapStorage.cs"> |
97 | <SubType>Code</SubType> | 97 | <SubType>Code</SubType> |
98 | </Compile> | 98 | </Compile> |
99 | <Compile Include="MapStorage.cs"> | 99 | <Compile Include="UUIDPrimQuery.cs"> |
100 | <SubType>Code</SubType> | 100 | <SubType>Code</SubType> |
101 | </Compile> | 101 | </Compile> |
102 | <Compile Include="UUIDQuery.cs"> | 102 | <Compile Include="UUIDParcelQuery.cs"> |
103 | <SubType>Code</SubType> | ||
104 | </Compile> | ||
105 | <Compile Include="Db4LocalStorage.cs"> | ||
103 | <SubType>Code</SubType> | 106 | <SubType>Code</SubType> |
104 | </Compile> | 107 | </Compile> |
105 | </ItemGroup> | 108 | </ItemGroup> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj.user b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj.user +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build index da2db14..9789712 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build | |||
@@ -12,9 +12,10 @@ | |||
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="AssemblyInfo.cs" /> | 14 | <include name="AssemblyInfo.cs" /> |
15 | <include name="Db4LocalStorage.cs" /> | ||
16 | <include name="MapStorage.cs" /> | 15 | <include name="MapStorage.cs" /> |
17 | <include name="UUIDQuery.cs" /> | 16 | <include name="UUIDPrimQuery.cs" /> |
17 | <include name="UUIDParcelQuery.cs" /> | ||
18 | <include name="Db4LocalStorage.cs" /> | ||
18 | </sources> | 19 | </sources> |
19 | <references basedir="${project::get-base-directory()}"> | 20 | <references basedir="${project::get-base-directory()}"> |
20 | <lib> | 21 | <lib> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDParcelQuery.cs b/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDParcelQuery.cs new file mode 100644 index 0000000..d24fb5f --- /dev/null +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDParcelQuery.cs | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using Db4objects.Db4o; | ||
32 | using Db4objects.Db4o.Query; | ||
33 | using libsecondlife; | ||
34 | using OpenSim.Framework.Interfaces; | ||
35 | using OpenSim.Framework.Types; | ||
36 | |||
37 | namespace OpenSim.Storage.LocalStorageDb4o | ||
38 | { | ||
39 | public class UUIDParcelQuery : Predicate | ||
40 | { | ||
41 | private LLUUID globalIDSearch; | ||
42 | |||
43 | public UUIDParcelQuery(LLUUID find) | ||
44 | { | ||
45 | globalIDSearch = find; | ||
46 | } | ||
47 | public bool Match(ParcelData parcel) | ||
48 | { | ||
49 | return (parcel.globalID == globalIDSearch); | ||
50 | } | ||
51 | } | ||
52 | } | ||
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDPrimQuery.cs b/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDPrimQuery.cs new file mode 100644 index 0000000..b2e8a91 --- /dev/null +++ b/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDPrimQuery.cs | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using Db4objects.Db4o; | ||
32 | using Db4objects.Db4o.Query; | ||
33 | using libsecondlife; | ||
34 | using OpenSim.Framework.Interfaces; | ||
35 | using OpenSim.Framework.Types; | ||
36 | |||
37 | namespace OpenSim.Storage.LocalStorageDb4o | ||
38 | { | ||
39 | public class UUIDPrimQuery : Predicate | ||
40 | { | ||
41 | private LLUUID _findID; | ||
42 | |||
43 | public UUIDPrimQuery(LLUUID find) | ||
44 | { | ||
45 | _findID = find; | ||
46 | } | ||
47 | public bool Match(PrimData prim) | ||
48 | { | ||
49 | return (prim.FullID == _findID); | ||
50 | } | ||
51 | } | ||
52 | } | ||
diff --git a/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDQuery.cs b/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDQuery.cs deleted file mode 100644 index ba9e139..0000000 --- a/OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDQuery.cs +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using Db4objects.Db4o; | ||
5 | using Db4objects.Db4o.Query; | ||
6 | using libsecondlife; | ||
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Framework.Types; | ||
9 | |||
10 | namespace OpenSim.Storage.LocalStorageDb4o | ||
11 | { | ||
12 | public class UUIDQuery : Predicate | ||
13 | { | ||
14 | private LLUUID _findID; | ||
15 | |||
16 | public UUIDQuery(LLUUID find) | ||
17 | { | ||
18 | _findID = find; | ||
19 | } | ||
20 | public bool Match(PrimData prim) | ||
21 | { | ||
22 | return (prim.FullID == _findID); | ||
23 | } | ||
24 | } | ||
25 | } | ||
diff --git a/OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.csproj.user b/OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.csproj.user +++ b/OpenSim/OpenSim.Storage/LocalStorageSQLite/OpenSim.Storage.LocalStorageSQLite.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs index 11eca0f..ee8b9ff 100644 --- a/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs +++ b/OpenSim/OpenSim.Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | |||
@@ -1,5 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) OpenSim project, http://sim.opensecondlife.org/ | 2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
3 | * | 4 | * |
4 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
5 | * modification, are permitted provided that the following conditions are met: | 6 | * modification, are permitted provided that the following conditions are met: |
@@ -8,14 +9,14 @@ | |||
8 | * * Redistributions in binary form must reproduce the above copyright | 9 | * * Redistributions in binary form must reproduce the above copyright |
9 | * notice, this list of conditions and the following disclaimer in the | 10 | * notice, this list of conditions and the following disclaimer in the |
10 | * documentation and/or other materials provided with the distribution. | 11 | * documentation and/or other materials provided with the distribution. |
11 | * * Neither the name of the <organization> nor the | 12 | * * Neither the name of the OpenSim Project nor the |
12 | * names of its contributors may be used to endorse or promote products | 13 | * names of its contributors may be used to endorse or promote products |
13 | * derived from this software without specific prior written permission. | 14 | * derived from this software without specific prior written permission. |
14 | * | 15 | * |
15 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | 16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY |
16 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
18 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | 19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY |
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
@@ -36,7 +37,6 @@ using libsecondlife; | |||
36 | using OpenSim.Framework.Interfaces; | 37 | using OpenSim.Framework.Interfaces; |
37 | using OpenSim.Framework.Types; | 38 | using OpenSim.Framework.Types; |
38 | 39 | ||
39 | |||
40 | namespace OpenSim.Storage.LocalStorageSQLite | 40 | namespace OpenSim.Storage.LocalStorageSQLite |
41 | { | 41 | { |
42 | public class SQLiteLocalStorage : ILocalStorage | 42 | public class SQLiteLocalStorage : ILocalStorage |
@@ -54,8 +54,8 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
54 | catch (Exception e) | 54 | catch (Exception e) |
55 | { | 55 | { |
56 | db.Close(); | 56 | db.Close(); |
57 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,"SQLiteLocalStorage :Constructor - Exception occured"); | 57 | OpenSim.Framework.Console.MainConsole.Instance.Warn("SQLiteLocalStorage :Constructor - Exception occured"); |
58 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,e.ToString()); | 58 | OpenSim.Framework.Console.MainConsole.Instance.Warn(e.ToString()); |
59 | } | 59 | } |
60 | } | 60 | } |
61 | 61 | ||
@@ -117,8 +117,8 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
117 | } | 117 | } |
118 | catch (Exception e) | 118 | catch (Exception e) |
119 | { | 119 | { |
120 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,"SQLiteLocalStorage :StorePrim - Exception occured"); | 120 | OpenSim.Framework.Console.MainConsole.Instance.Warn("SQLiteLocalStorage :StorePrim - Exception occured"); |
121 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,e.ToString()); | 121 | OpenSim.Framework.Console.MainConsole.Instance.Warn(e.ToString()); |
122 | } | 122 | } |
123 | 123 | ||
124 | cmd.Dispose(); | 124 | cmd.Dispose(); |
@@ -144,8 +144,8 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
144 | } | 144 | } |
145 | catch (Exception e) | 145 | catch (Exception e) |
146 | { | 146 | { |
147 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,"SQLiteLocalStorage :RemovePrim - Exception occured"); | 147 | OpenSim.Framework.Console.MainConsole.Instance.Warn("SQLiteLocalStorage :RemovePrim - Exception occured"); |
148 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.MEDIUM,e.ToString()); | 148 | OpenSim.Framework.Console.MainConsole.Instance.Warn(e.ToString()); |
149 | } | 149 | } |
150 | 150 | ||
151 | cmd.Dispose(); | 151 | cmd.Dispose(); |
@@ -167,6 +167,28 @@ namespace OpenSim.Storage.LocalStorageSQLite | |||
167 | 167 | ||
168 | } | 168 | } |
169 | 169 | ||
170 | public void SaveParcels(ParcelData[] parcel_manager) | ||
171 | { | ||
172 | |||
173 | } | ||
174 | |||
175 | public void SaveParcel(ParcelData parcel) | ||
176 | { | ||
177 | } | ||
178 | |||
179 | public void RemoveParcel(ParcelData parcel) | ||
180 | { | ||
181 | } | ||
182 | |||
183 | public void RemoveAllParcels() | ||
184 | { | ||
185 | } | ||
186 | |||
187 | public void LoadParcels(ILocalStorageParcelReceiver recv) | ||
188 | { | ||
189 | recv.NoParcelDataFromStorage(); | ||
190 | } | ||
191 | |||
170 | public void ShutDown() | 192 | public void ShutDown() |
171 | { | 193 | { |
172 | db.Close(); | 194 | db.Close(); |
diff --git a/OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.csproj.user b/OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.csproj.user +++ b/OpenSim/OpenSim.Terrain.BasicTerrain/OpenSim.Terrain.BasicTerrain.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.World/Avatar.Update.cs b/OpenSim/OpenSim.World/Avatar.Update.cs index 478f224..04879a6 100644 --- a/OpenSim/OpenSim.World/Avatar.Update.cs +++ b/OpenSim/OpenSim.World/Avatar.Update.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.world | |||
43 | public void SendInitialPosition() | 43 | public void SendInitialPosition() |
44 | { | 44 | { |
45 | Console.WriteLine("sending initial Avatar data"); | 45 | Console.WriteLine("sending initial Avatar data"); |
46 | this.ControllingClient.SendAvatarData(this.regionData, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); | 46 | this.ControllingClient.SendAvatarData(this.m_world.m_regInfo, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); |
47 | } | 47 | } |
48 | 48 | ||
49 | /// <summary> | 49 | /// <summary> |
diff --git a/OpenSim/OpenSim.World/Avatar.cs b/OpenSim/OpenSim.World/Avatar.cs index ecd938b..368bc53 100644 --- a/OpenSim/OpenSim.World/Avatar.cs +++ b/OpenSim/OpenSim.World/Avatar.cs | |||
@@ -33,11 +33,7 @@ namespace OpenSim.world | |||
33 | private LLVector3 positionLastFrame = new LLVector3(0, 0, 0); | 33 | private LLVector3 positionLastFrame = new LLVector3(0, 0, 0); |
34 | private ulong m_regionHandle; | 34 | private ulong m_regionHandle; |
35 | private Dictionary<uint, IClientAPI> m_clientThreads; | 35 | private Dictionary<uint, IClientAPI> m_clientThreads; |
36 | private string m_regionName; | ||
37 | private ushort m_regionWaterHeight; | ||
38 | private bool m_regionTerraform; | ||
39 | private bool childAvatar = false; | 36 | private bool childAvatar = false; |
40 | private RegionInfo regionData; | ||
41 | 37 | ||
42 | /// <summary> | 38 | /// <summary> |
43 | /// | 39 | /// |
@@ -46,17 +42,13 @@ namespace OpenSim.world | |||
46 | /// <param name="world"></param> | 42 | /// <param name="world"></param> |
47 | /// <param name="clientThreads"></param> | 43 | /// <param name="clientThreads"></param> |
48 | /// <param name="regionDat"></param> | 44 | /// <param name="regionDat"></param> |
49 | public Avatar(IClientAPI theClient, World world, Dictionary<uint, IClientAPI> clientThreads, RegionInfo regionDat) | 45 | public Avatar(IClientAPI theClient, World world, Dictionary<uint, IClientAPI> clientThreads) |
50 | { | 46 | { |
51 | 47 | ||
52 | m_world = world; | 48 | m_world = world; |
53 | m_clientThreads = clientThreads; | 49 | m_clientThreads = clientThreads; |
54 | regionData = regionDat; | ||
55 | this.uuid = theClient.AgentId; | 50 | this.uuid = theClient.AgentId; |
56 | m_regionName = regionData.RegionName; | 51 | |
57 | m_regionHandle = regionData.RegionHandle; | ||
58 | m_regionTerraform = regionData.RegionTerraform; | ||
59 | m_regionWaterHeight = regionData.RegionWaterHeight; | ||
60 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Avatar.cs - Loading details from grid (DUMMY)"); | 52 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Avatar.cs - Loading details from grid (DUMMY)"); |
61 | ControllingClient = theClient; | 53 | ControllingClient = theClient; |
62 | this.firstname = ControllingClient.FirstName; | 54 | this.firstname = ControllingClient.FirstName; |
@@ -148,7 +140,7 @@ namespace OpenSim.world | |||
148 | /// </summary> | 140 | /// </summary> |
149 | public void CompleteMovement() | 141 | public void CompleteMovement() |
150 | { | 142 | { |
151 | this.ControllingClient.MoveAgentIntoRegion(this.regionData); | 143 | this.ControllingClient.MoveAgentIntoRegion(this.m_world.m_regInfo); |
152 | } | 144 | } |
153 | 145 | ||
154 | /// <summary> | 146 | /// <summary> |
@@ -174,7 +166,7 @@ namespace OpenSim.world | |||
174 | /// </summary> | 166 | /// </summary> |
175 | public void SendRegionHandshake() | 167 | public void SendRegionHandshake() |
176 | { | 168 | { |
177 | this.ControllingClient.SendRegionHandshake(this.regionData); | 169 | this.m_world.estateManager.sendRegionHandshake(this.ControllingClient); |
178 | } | 170 | } |
179 | 171 | ||
180 | /// <summary> | 172 | /// <summary> |
diff --git a/OpenSim/OpenSim.World/Estate/EstateManager.cs b/OpenSim/OpenSim.World/Estate/EstateManager.cs new file mode 100644 index 0000000..37abc6d --- /dev/null +++ b/OpenSim/OpenSim.World/Estate/EstateManager.cs | |||
@@ -0,0 +1,296 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | using OpenSim.Framework.Types; | ||
6 | using OpenSim.Framework.Interfaces; | ||
7 | using OpenSim.world; | ||
8 | using OpenSim; | ||
9 | |||
10 | using libsecondlife; | ||
11 | using libsecondlife.Packets; | ||
12 | |||
13 | namespace OpenSim.world.Estate | ||
14 | { | ||
15 | |||
16 | /// <summary> | ||
17 | /// Processes requests regarding estates. Refer to EstateSettings.cs in OpenSim.Framework. Types for all of the core settings | ||
18 | /// </summary> | ||
19 | public class EstateManager | ||
20 | { | ||
21 | private World m_world; | ||
22 | |||
23 | public EstateManager(World world) | ||
24 | { | ||
25 | m_world = world; //Estate settings found at world.m_regInfo.estateSettings | ||
26 | } | ||
27 | |||
28 | private bool convertParamStringToBool(byte[] field) | ||
29 | { | ||
30 | string s = Helpers.FieldToUTF8String(field); | ||
31 | if (s == "1" || s.ToLower() == "y" || s.ToLower() == "yes" || s.ToLower() == "t" || s.ToLower() == "true") | ||
32 | { | ||
33 | return true; | ||
34 | } | ||
35 | return false; | ||
36 | } | ||
37 | |||
38 | public void handleEstateOwnerMessage(EstateOwnerMessagePacket packet, IClientAPI remote_client) | ||
39 | { | ||
40 | if (remote_client.AgentId == m_world.m_regInfo.MasterAvatarAssignedUUID) | ||
41 | { | ||
42 | switch (Helpers.FieldToUTF8String(packet.MethodData.Method)) | ||
43 | { | ||
44 | case "getinfo": | ||
45 | Console.WriteLine("GETINFO Requested"); | ||
46 | this.sendRegionInfoPacketToAll(); | ||
47 | |||
48 | break; | ||
49 | case "setregioninfo": | ||
50 | if (packet.ParamList.Length != 9) | ||
51 | { | ||
52 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: SetRegionInfo method has a ParamList of invalid length"); | ||
53 | } | ||
54 | else | ||
55 | { | ||
56 | m_world.m_regInfo.estateSettings.regionFlags = libsecondlife.Simulator.RegionFlags.None; | ||
57 | |||
58 | if (convertParamStringToBool(packet.ParamList[0].Parameter)) | ||
59 | { | ||
60 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.BlockTerraform; | ||
61 | } | ||
62 | |||
63 | if (convertParamStringToBool(packet.ParamList[1].Parameter)) | ||
64 | { | ||
65 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.NoFly; | ||
66 | } | ||
67 | |||
68 | if (convertParamStringToBool(packet.ParamList[2].Parameter)) | ||
69 | { | ||
70 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.AllowDamage; | ||
71 | } | ||
72 | |||
73 | if (convertParamStringToBool(packet.ParamList[3].Parameter) == false) | ||
74 | { | ||
75 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.BlockLandResell; | ||
76 | } | ||
77 | |||
78 | |||
79 | int tempMaxAgents = Convert.ToInt16(Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[4].Parameter))); | ||
80 | m_world.m_regInfo.estateSettings.maxAgents = (byte)tempMaxAgents; | ||
81 | |||
82 | float tempObjectBonusFactor = (float)Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[5].Parameter)); | ||
83 | m_world.m_regInfo.estateSettings.objectBonusFactor = tempObjectBonusFactor; | ||
84 | |||
85 | int tempMatureLevel = Convert.ToInt16(Helpers.FieldToUTF8String(packet.ParamList[6].Parameter)); | ||
86 | m_world.m_regInfo.estateSettings.simAccess = (libsecondlife.Simulator.SimAccess)tempMatureLevel; | ||
87 | |||
88 | |||
89 | if (convertParamStringToBool(packet.ParamList[7].Parameter)) | ||
90 | { | ||
91 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.RestrictPushObject; | ||
92 | } | ||
93 | |||
94 | if (convertParamStringToBool(packet.ParamList[8].Parameter)) | ||
95 | { | ||
96 | m_world.m_regInfo.estateSettings.regionFlags = m_world.m_regInfo.estateSettings.regionFlags | libsecondlife.Simulator.RegionFlags.AllowParcelChanges; | ||
97 | } | ||
98 | |||
99 | sendRegionInfoPacketToAll(); | ||
100 | |||
101 | } | ||
102 | break; | ||
103 | case "texturebase": | ||
104 | foreach (EstateOwnerMessagePacket.ParamListBlock block in packet.ParamList) | ||
105 | { | ||
106 | string s = Helpers.FieldToUTF8String(block.Parameter); | ||
107 | string[] splitField = s.Split(' '); | ||
108 | if (splitField.Length == 2) | ||
109 | { | ||
110 | LLUUID tempUUID = new LLUUID(splitField[1]); | ||
111 | switch (Convert.ToInt16(splitField[0])) | ||
112 | { | ||
113 | case 0: | ||
114 | m_world.m_regInfo.estateSettings.terrainBase0 = tempUUID; | ||
115 | break; | ||
116 | case 1: | ||
117 | m_world.m_regInfo.estateSettings.terrainBase1 = tempUUID; | ||
118 | break; | ||
119 | case 2: | ||
120 | m_world.m_regInfo.estateSettings.terrainBase2 = tempUUID; | ||
121 | break; | ||
122 | case 3: | ||
123 | m_world.m_regInfo.estateSettings.terrainBase3 = tempUUID; | ||
124 | break; | ||
125 | } | ||
126 | } | ||
127 | } | ||
128 | break; | ||
129 | case "texturedetail": | ||
130 | foreach (EstateOwnerMessagePacket.ParamListBlock block in packet.ParamList) | ||
131 | { | ||
132 | |||
133 | string s = Helpers.FieldToUTF8String(block.Parameter); | ||
134 | string[] splitField = s.Split(' '); | ||
135 | if (splitField.Length == 2) | ||
136 | { | ||
137 | LLUUID tempUUID = new LLUUID(splitField[1]); | ||
138 | switch (Convert.ToInt16(splitField[0])) | ||
139 | { | ||
140 | case 0: | ||
141 | m_world.m_regInfo.estateSettings.terrainDetail0 = tempUUID; | ||
142 | break; | ||
143 | case 1: | ||
144 | m_world.m_regInfo.estateSettings.terrainDetail1 = tempUUID; | ||
145 | break; | ||
146 | case 2: | ||
147 | m_world.m_regInfo.estateSettings.terrainDetail2 = tempUUID; | ||
148 | break; | ||
149 | case 3: | ||
150 | m_world.m_regInfo.estateSettings.terrainDetail3 = tempUUID; | ||
151 | break; | ||
152 | } | ||
153 | } | ||
154 | } | ||
155 | break; | ||
156 | case "textureheights": | ||
157 | foreach (EstateOwnerMessagePacket.ParamListBlock block in packet.ParamList) | ||
158 | { | ||
159 | |||
160 | string s = Helpers.FieldToUTF8String(block.Parameter); | ||
161 | string[] splitField = s.Split(' '); | ||
162 | if (splitField.Length == 3) | ||
163 | { | ||
164 | |||
165 | float tempHeightLow = (float)Convert.ToDecimal(splitField[1]); | ||
166 | float tempHeightHigh = (float)Convert.ToDecimal(splitField[2]); | ||
167 | |||
168 | switch (Convert.ToInt16(splitField[0])) | ||
169 | { | ||
170 | case 0: | ||
171 | m_world.m_regInfo.estateSettings.terrainStartHeight0 = tempHeightLow; | ||
172 | m_world.m_regInfo.estateSettings.terrainHeightRange0 = tempHeightHigh; | ||
173 | break; | ||
174 | case 1: | ||
175 | m_world.m_regInfo.estateSettings.terrainStartHeight1 = tempHeightLow; | ||
176 | m_world.m_regInfo.estateSettings.terrainHeightRange1 = tempHeightHigh; | ||
177 | break; | ||
178 | case 2: | ||
179 | m_world.m_regInfo.estateSettings.terrainStartHeight2 = tempHeightLow; | ||
180 | m_world.m_regInfo.estateSettings.terrainHeightRange2 = tempHeightHigh; | ||
181 | break; | ||
182 | case 3: | ||
183 | m_world.m_regInfo.estateSettings.terrainStartHeight3 = tempHeightLow; | ||
184 | m_world.m_regInfo.estateSettings.terrainHeightRange3 = tempHeightHigh; | ||
185 | break; | ||
186 | } | ||
187 | } | ||
188 | } | ||
189 | break; | ||
190 | case "texturecommit": | ||
191 | sendRegionHandshakeToAll(); | ||
192 | break; | ||
193 | case "setregionterrain": | ||
194 | if (packet.ParamList.Length != 9) | ||
195 | { | ||
196 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: SetRegionTerrain method has a ParamList of invalid length"); | ||
197 | } | ||
198 | else | ||
199 | { | ||
200 | m_world.m_regInfo.estateSettings.waterHeight = (float)Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[0].Parameter)); | ||
201 | m_world.m_regInfo.estateSettings.terrainRaiseLimit = (float)Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[1].Parameter)); | ||
202 | m_world.m_regInfo.estateSettings.terrainLowerLimit = (float)Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[2].Parameter)); | ||
203 | m_world.m_regInfo.estateSettings.useFixedSun = this.convertParamStringToBool(packet.ParamList[4].Parameter); | ||
204 | m_world.m_regInfo.estateSettings.sunHour = (float)Convert.ToDecimal(Helpers.FieldToUTF8String(packet.ParamList[5].Parameter)); | ||
205 | |||
206 | sendRegionInfoPacketToAll(); | ||
207 | } | ||
208 | break; | ||
209 | default: | ||
210 | OpenSim.Framework.Console.MainConsole.Instance.Error("EstateOwnerMessage: Unknown method requested\n" + packet.ToString()); | ||
211 | break; | ||
212 | } | ||
213 | } | ||
214 | } | ||
215 | |||
216 | public void sendRegionInfoPacketToAll() | ||
217 | { | ||
218 | foreach (OpenSim.world.Avatar av in m_world.Avatars.Values) | ||
219 | { | ||
220 | this.sendRegionInfoPacket(av.ControllingClient); | ||
221 | } | ||
222 | } | ||
223 | |||
224 | public void sendRegionHandshakeToAll() | ||
225 | { | ||
226 | foreach (OpenSim.world.Avatar av in m_world.Avatars.Values) | ||
227 | { | ||
228 | this.sendRegionHandshake(av.ControllingClient); | ||
229 | } | ||
230 | } | ||
231 | |||
232 | public void sendRegionInfoPacket(IClientAPI remote_client) | ||
233 | { | ||
234 | |||
235 | AgentCircuitData circuitData = remote_client.RequestClientInfo(); | ||
236 | |||
237 | RegionInfoPacket regionInfoPacket = new RegionInfoPacket(); | ||
238 | regionInfoPacket.AgentData.AgentID = circuitData.AgentID; | ||
239 | regionInfoPacket.AgentData.SessionID = circuitData.SessionID; | ||
240 | regionInfoPacket.RegionInfo.BillableFactor = m_world.m_regInfo.estateSettings.billableFactor; | ||
241 | regionInfoPacket.RegionInfo.EstateID = m_world.m_regInfo.estateSettings.estateID; | ||
242 | regionInfoPacket.RegionInfo.MaxAgents = m_world.m_regInfo.estateSettings.maxAgents; | ||
243 | regionInfoPacket.RegionInfo.ObjectBonusFactor = m_world.m_regInfo.estateSettings.objectBonusFactor; | ||
244 | regionInfoPacket.RegionInfo.ParentEstateID = m_world.m_regInfo.estateSettings.parentEstateID; | ||
245 | regionInfoPacket.RegionInfo.PricePerMeter = m_world.m_regInfo.estateSettings.pricePerMeter; | ||
246 | regionInfoPacket.RegionInfo.RedirectGridX = m_world.m_regInfo.estateSettings.redirectGridX; | ||
247 | regionInfoPacket.RegionInfo.RedirectGridY = m_world.m_regInfo.estateSettings.redirectGridY; | ||
248 | regionInfoPacket.RegionInfo.RegionFlags = (uint)m_world.m_regInfo.estateSettings.regionFlags; | ||
249 | regionInfoPacket.RegionInfo.SimAccess = (byte)m_world.m_regInfo.estateSettings.simAccess; | ||
250 | regionInfoPacket.RegionInfo.SimName = Helpers.StringToField(m_world.m_regInfo.RegionName); | ||
251 | regionInfoPacket.RegionInfo.SunHour = m_world.m_regInfo.estateSettings.sunHour; | ||
252 | regionInfoPacket.RegionInfo.TerrainLowerLimit = m_world.m_regInfo.estateSettings.terrainLowerLimit; | ||
253 | regionInfoPacket.RegionInfo.TerrainRaiseLimit = m_world.m_regInfo.estateSettings.terrainRaiseLimit; | ||
254 | regionInfoPacket.RegionInfo.UseEstateSun = !m_world.m_regInfo.estateSettings.useFixedSun; | ||
255 | regionInfoPacket.RegionInfo.WaterHeight = m_world.m_regInfo.estateSettings.waterHeight; | ||
256 | |||
257 | remote_client.OutPacket(regionInfoPacket); | ||
258 | } | ||
259 | |||
260 | public void sendRegionHandshake(IClientAPI remote_client) | ||
261 | { | ||
262 | System.Text.Encoding _enc = System.Text.Encoding.ASCII; | ||
263 | RegionHandshakePacket handshake = new RegionHandshakePacket(); | ||
264 | |||
265 | handshake.RegionInfo.BillableFactor = m_world.m_regInfo.estateSettings.billableFactor; | ||
266 | handshake.RegionInfo.IsEstateManager = false; | ||
267 | handshake.RegionInfo.TerrainHeightRange00 = m_world.m_regInfo.estateSettings.terrainHeightRange0; | ||
268 | handshake.RegionInfo.TerrainHeightRange01 = m_world.m_regInfo.estateSettings.terrainHeightRange1; | ||
269 | handshake.RegionInfo.TerrainHeightRange10 = m_world.m_regInfo.estateSettings.terrainHeightRange2; | ||
270 | handshake.RegionInfo.TerrainHeightRange11 = m_world.m_regInfo.estateSettings.terrainHeightRange3; | ||
271 | handshake.RegionInfo.TerrainStartHeight00 = m_world.m_regInfo.estateSettings.terrainStartHeight0; | ||
272 | handshake.RegionInfo.TerrainStartHeight01 = m_world.m_regInfo.estateSettings.terrainStartHeight1; | ||
273 | handshake.RegionInfo.TerrainStartHeight10 = m_world.m_regInfo.estateSettings.terrainStartHeight2; | ||
274 | handshake.RegionInfo.TerrainStartHeight11 = m_world.m_regInfo.estateSettings.terrainStartHeight3; | ||
275 | handshake.RegionInfo.SimAccess = (byte)m_world.m_regInfo.estateSettings.simAccess; | ||
276 | handshake.RegionInfo.WaterHeight = m_world.m_regInfo.estateSettings.waterHeight; | ||
277 | |||
278 | |||
279 | handshake.RegionInfo.RegionFlags = (uint)m_world.m_regInfo.estateSettings.regionFlags; | ||
280 | |||
281 | handshake.RegionInfo.SimName = _enc.GetBytes(m_world.m_regInfo.estateSettings.waterHeight + "\0"); | ||
282 | handshake.RegionInfo.SimOwner = m_world.m_regInfo.MasterAvatarAssignedUUID; | ||
283 | handshake.RegionInfo.TerrainBase0 = m_world.m_regInfo.estateSettings.terrainBase0; | ||
284 | handshake.RegionInfo.TerrainBase1 = m_world.m_regInfo.estateSettings.terrainBase1; | ||
285 | handshake.RegionInfo.TerrainBase2 = m_world.m_regInfo.estateSettings.terrainBase2; | ||
286 | handshake.RegionInfo.TerrainBase3 = m_world.m_regInfo.estateSettings.terrainBase3; | ||
287 | handshake.RegionInfo.TerrainDetail0 = m_world.m_regInfo.estateSettings.terrainDetail0; | ||
288 | handshake.RegionInfo.TerrainDetail1 = m_world.m_regInfo.estateSettings.terrainDetail1; | ||
289 | handshake.RegionInfo.TerrainDetail2 = m_world.m_regInfo.estateSettings.terrainDetail2; | ||
290 | handshake.RegionInfo.TerrainDetail3 = m_world.m_regInfo.estateSettings.terrainDetail3; | ||
291 | handshake.RegionInfo.CacheID = LLUUID.Random(); //I guess this is for the client to remember an old setting? | ||
292 | |||
293 | remote_client.OutPacket(handshake); | ||
294 | } | ||
295 | } | ||
296 | } | ||
diff --git a/OpenSim/OpenSim.World/OpenSim.World.csproj b/OpenSim/OpenSim.World/OpenSim.World.csproj index dd469a9..f3c7b1f 100644 --- a/OpenSim/OpenSim.World/OpenSim.World.csproj +++ b/OpenSim/OpenSim.World/OpenSim.World.csproj | |||
@@ -133,49 +133,52 @@ | |||
133 | <Compile Include="Avatar.Client.cs"> | 133 | <Compile Include="Avatar.Client.cs"> |
134 | <SubType>Code</SubType> | 134 | <SubType>Code</SubType> |
135 | </Compile> | 135 | </Compile> |
136 | <Compile Include="Avatar.cs"> | 136 | <Compile Include="Entity.cs"> |
137 | <SubType>Code</SubType> | 137 | <SubType>Code</SubType> |
138 | </Compile> | 138 | </Compile> |
139 | <Compile Include="Avatar.Update.cs"> | 139 | <Compile Include="World.PacketHandlers.cs"> |
140 | <SubType>Code</SubType> | 140 | <SubType>Code</SubType> |
141 | </Compile> | 141 | </Compile> |
142 | <Compile Include="AvatarAnimations.cs"> | 142 | <Compile Include="AvatarAnimations.cs"> |
143 | <SubType>Code</SubType> | 143 | <SubType>Code</SubType> |
144 | </Compile> | 144 | </Compile> |
145 | <Compile Include="Entity.cs"> | 145 | <Compile Include="SceneObject.cs"> |
146 | <SubType>Code</SubType> | 146 | <SubType>Code</SubType> |
147 | </Compile> | 147 | </Compile> |
148 | <Compile Include="Primitive.cs"> | 148 | <Compile Include="Primitive.cs"> |
149 | <SubType>Code</SubType> | 149 | <SubType>Code</SubType> |
150 | </Compile> | 150 | </Compile> |
151 | <Compile Include="SceneObject.cs"> | 151 | <Compile Include="World.Scripting.cs"> |
152 | <SubType>Code</SubType> | 152 | <SubType>Code</SubType> |
153 | </Compile> | 153 | </Compile> |
154 | <Compile Include="World.cs"> | 154 | <Compile Include="WorldBase.cs"> |
155 | <SubType>Code</SubType> | 155 | <SubType>Code</SubType> |
156 | </Compile> | 156 | </Compile> |
157 | <Compile Include="World.PacketHandlers.cs"> | 157 | <Compile Include="ParcelManager.cs"> |
158 | <SubType>Code</SubType> | 158 | <SubType>Code</SubType> |
159 | </Compile> | 159 | </Compile> |
160 | <Compile Include="World.Scripting.cs"> | 160 | <Compile Include="Avatar.Update.cs"> |
161 | <SubType>Code</SubType> | 161 | <SubType>Code</SubType> |
162 | </Compile> | 162 | </Compile> |
163 | <Compile Include="WorldBase.cs"> | 163 | <Compile Include="World.cs"> |
164 | <SubType>Code</SubType> | 164 | <SubType>Code</SubType> |
165 | </Compile> | 165 | </Compile> |
166 | <Compile Include="scripting\IScriptContext.cs"> | 166 | <Compile Include="Avatar.cs"> |
167 | <SubType>Code</SubType> | 167 | <SubType>Code</SubType> |
168 | </Compile> | 168 | </Compile> |
169 | <Compile Include="scripting\IScriptEntity.cs"> | 169 | <Compile Include="scripting\IScriptHandler.cs"> |
170 | <SubType>Code</SubType> | 170 | <SubType>Code</SubType> |
171 | </Compile> | 171 | </Compile> |
172 | <Compile Include="scripting\IScriptHandler.cs"> | 172 | <Compile Include="scripting\ScriptFactory.cs"> |
173 | <SubType>Code</SubType> | ||
174 | </Compile> | ||
175 | <Compile Include="scripting\IScriptContext.cs"> | ||
173 | <SubType>Code</SubType> | 176 | <SubType>Code</SubType> |
174 | </Compile> | 177 | </Compile> |
175 | <Compile Include="scripting\Script.cs"> | 178 | <Compile Include="scripting\Script.cs"> |
176 | <SubType>Code</SubType> | 179 | <SubType>Code</SubType> |
177 | </Compile> | 180 | </Compile> |
178 | <Compile Include="scripting\ScriptFactory.cs"> | 181 | <Compile Include="scripting\IScriptEntity.cs"> |
179 | <SubType>Code</SubType> | 182 | <SubType>Code</SubType> |
180 | </Compile> | 183 | </Compile> |
181 | <Compile Include="scripting\Scripts\FollowRandomAvatar.cs"> | 184 | <Compile Include="scripting\Scripts\FollowRandomAvatar.cs"> |
@@ -187,6 +190,9 @@ | |||
187 | <Compile Include="types\Triangle.cs"> | 190 | <Compile Include="types\Triangle.cs"> |
188 | <SubType>Code</SubType> | 191 | <SubType>Code</SubType> |
189 | </Compile> | 192 | </Compile> |
193 | <Compile Include="Estate\EstateManager.cs"> | ||
194 | <SubType>Code</SubType> | ||
195 | </Compile> | ||
190 | </ItemGroup> | 196 | </ItemGroup> |
191 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | 197 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> |
192 | <PropertyGroup> | 198 | <PropertyGroup> |
diff --git a/OpenSim/OpenSim.World/OpenSim.World.csproj.user b/OpenSim/OpenSim.World/OpenSim.World.csproj.user index 9bfaf67..082d673 100644 --- a/OpenSim/OpenSim.World/OpenSim.World.csproj.user +++ b/OpenSim/OpenSim.World/OpenSim.World.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim.World/ParcelManager.cs b/OpenSim/OpenSim.World/ParcelManager.cs new file mode 100644 index 0000000..d571150 --- /dev/null +++ b/OpenSim/OpenSim.World/ParcelManager.cs | |||
@@ -0,0 +1,832 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using libsecondlife; | ||
32 | using libsecondlife.Packets; | ||
33 | using OpenSim.Framework.Interfaces; | ||
34 | using OpenSim.Framework.Types; | ||
35 | |||
36 | namespace OpenSim.world | ||
37 | { | ||
38 | |||
39 | |||
40 | #region ParcelManager Class | ||
41 | /// <summary> | ||
42 | /// Handles Parcel objects and operations requiring information from other Parcel objects (divide, join, etc) | ||
43 | /// </summary> | ||
44 | public class ParcelManager : OpenSim.Framework.Interfaces.ILocalStorageParcelReceiver | ||
45 | { | ||
46 | |||
47 | #region Constants | ||
48 | //Parcel types set with flags in ParcelOverlay. | ||
49 | //Only one of these can be used. | ||
50 | public const byte PARCEL_TYPE_PUBLIC = (byte)0; //Equals 00000000 | ||
51 | public const byte PARCEL_TYPE_OWNED_BY_OTHER = (byte)1; //Equals 00000001 | ||
52 | public const byte PARCEL_TYPE_OWNED_BY_GROUP = (byte)2; //Equals 00000010 | ||
53 | public const byte PARCEL_TYPE_OWNED_BY_REQUESTER = (byte)3; //Equals 00000011 | ||
54 | public const byte PARCEL_TYPE_IS_FOR_SALE = (byte)4; //Equals 00000100 | ||
55 | public const byte PARCEL_TYPE_IS_BEING_AUCTIONED = (byte)5; //Equals 00000101 | ||
56 | |||
57 | |||
58 | //Flags that when set, a border on the given side will be placed | ||
59 | //NOTE: North and East is assumable by the west and south sides (if parcel to east has a west border, then I have an east border; etc) | ||
60 | //This took forever to figure out -- jeesh. /blame LL for even having to send these | ||
61 | public const byte PARCEL_FLAG_PROPERTY_BORDER_WEST = (byte)64; //Equals 01000000 | ||
62 | public const byte PARCEL_FLAG_PROPERTY_BORDER_SOUTH = (byte)128; //Equals 10000000 | ||
63 | |||
64 | //RequestResults (I think these are right, they seem to work): | ||
65 | public const int PARCEL_RESULT_ONE_PARCEL = 0; // The request they made contained only one parcel | ||
66 | public const int PARCEL_RESULT_MULTIPLE_PARCELS = 1; // The request they made contained more than one parcel | ||
67 | |||
68 | //These are other constants. Yay! | ||
69 | public const int START_PARCEL_LOCAL_ID = 1; | ||
70 | #endregion | ||
71 | |||
72 | #region Member Variables | ||
73 | public Dictionary<int, Parcel> parcelList = new Dictionary<int, Parcel>(); | ||
74 | private int lastParcelLocalID = START_PARCEL_LOCAL_ID - 1; | ||
75 | private int[,] parcelIDList = new int[64, 64]; | ||
76 | |||
77 | private static World m_world; | ||
78 | #endregion | ||
79 | |||
80 | #region Constructors | ||
81 | public ParcelManager(World world) | ||
82 | { | ||
83 | |||
84 | m_world = world; | ||
85 | parcelIDList.Initialize(); | ||
86 | |||
87 | } | ||
88 | #endregion | ||
89 | |||
90 | #region Member Functions | ||
91 | |||
92 | #region Parcel From Storage Functions | ||
93 | public void ParcelFromStorage(ParcelData data) | ||
94 | { | ||
95 | Parcel new_parcel = new Parcel(data.ownerID, data.isGroupOwned, m_world); | ||
96 | new_parcel.parcelData = data.Copy(); | ||
97 | new_parcel.setParcelBitmapFromByteArray(); | ||
98 | addParcel(new_parcel); | ||
99 | |||
100 | } | ||
101 | |||
102 | public void NoParcelDataFromStorage() | ||
103 | { | ||
104 | resetSimParcels(); | ||
105 | } | ||
106 | #endregion | ||
107 | |||
108 | #region Parcel Add/Remove/Get/Create | ||
109 | /// <summary> | ||
110 | /// Creates a basic Parcel object without an owner (a zeroed key) | ||
111 | /// </summary> | ||
112 | /// <returns></returns> | ||
113 | public Parcel createBaseParcel() | ||
114 | { | ||
115 | return new Parcel(new LLUUID(), false, m_world); | ||
116 | } | ||
117 | |||
118 | /// <summary> | ||
119 | /// Adds a parcel to the stored list and adds them to the parcelIDList to what they own | ||
120 | /// </summary> | ||
121 | /// <param name="new_parcel">The parcel being added</param> | ||
122 | public void addParcel(Parcel new_parcel) | ||
123 | { | ||
124 | lastParcelLocalID++; | ||
125 | new_parcel.parcelData.localID = lastParcelLocalID; | ||
126 | parcelList.Add(lastParcelLocalID, new_parcel.Copy()); | ||
127 | |||
128 | |||
129 | bool[,] parcelBitmap = new_parcel.getParcelBitmap(); | ||
130 | int x, y; | ||
131 | for (x = 0; x < 64; x++) | ||
132 | { | ||
133 | for (y = 0; y < 64; y++) | ||
134 | { | ||
135 | if (parcelBitmap[x, y]) | ||
136 | { | ||
137 | parcelIDList[x, y] = lastParcelLocalID; | ||
138 | } | ||
139 | } | ||
140 | } | ||
141 | parcelList[lastParcelLocalID].forceUpdateParcelInfo(); | ||
142 | |||
143 | |||
144 | } | ||
145 | /// <summary> | ||
146 | /// Removes a parcel from the list. Will not remove if local_id is still owning an area in parcelIDList | ||
147 | /// </summary> | ||
148 | /// <param name="local_id">Parcel.localID of the parcel to remove.</param> | ||
149 | public void removeParcel(int local_id) | ||
150 | { | ||
151 | int x, y; | ||
152 | for (x = 0; x < 64; x++) | ||
153 | { | ||
154 | for (y = 0; y < 64; y++) | ||
155 | { | ||
156 | if (parcelIDList[x, y] == local_id) | ||
157 | { | ||
158 | throw new Exception("Could not remove parcel. Still being used at " + x + ", " + y); | ||
159 | } | ||
160 | } | ||
161 | } | ||
162 | m_world.localStorage.RemoveParcel(parcelList[local_id].parcelData); | ||
163 | parcelList.Remove(local_id); | ||
164 | } | ||
165 | |||
166 | public void performFinalParcelJoin(Parcel master, Parcel slave) | ||
167 | { | ||
168 | int x, y; | ||
169 | bool[,] parcelBitmapSlave = slave.getParcelBitmap(); | ||
170 | for (x = 0; x < 64; x++) | ||
171 | { | ||
172 | for (y = 0; y < 64; y++) | ||
173 | { | ||
174 | if (parcelBitmapSlave[x, y]) | ||
175 | { | ||
176 | parcelIDList[x, y] = master.parcelData.localID; | ||
177 | } | ||
178 | } | ||
179 | } | ||
180 | removeParcel(slave.parcelData.localID); | ||
181 | } | ||
182 | /// <summary> | ||
183 | /// Get the parcel at the specified point | ||
184 | /// </summary> | ||
185 | /// <param name="x">Value between 0 - 256 on the x axis of the point</param> | ||
186 | /// <param name="y">Value between 0 - 256 on the y axis of the point</param> | ||
187 | /// <returns>Parcel at the point supplied</returns> | ||
188 | public Parcel getParcel(int x, int y) | ||
189 | { | ||
190 | if (x > 256 || y > 256 || x < 0 || y < 0) | ||
191 | { | ||
192 | throw new Exception("Error: Parcel not found at point " + x + ", " + y); | ||
193 | } | ||
194 | else | ||
195 | { | ||
196 | return parcelList[parcelIDList[x / 4, y / 4]]; | ||
197 | } | ||
198 | |||
199 | } | ||
200 | #endregion | ||
201 | |||
202 | #region Parcel Modification | ||
203 | /// <summary> | ||
204 | /// Subdivides a parcel | ||
205 | /// </summary> | ||
206 | /// <param name="start_x">West Point</param> | ||
207 | /// <param name="start_y">South Point</param> | ||
208 | /// <param name="end_x">East Point</param> | ||
209 | /// <param name="end_y">North Point</param> | ||
210 | /// <param name="attempting_user_id">LLUUID of user who is trying to subdivide</param> | ||
211 | /// <returns>Returns true if successful</returns> | ||
212 | public bool subdivide(int start_x, int start_y, int end_x, int end_y, LLUUID attempting_user_id) | ||
213 | { | ||
214 | //First, lets loop through the points and make sure they are all in the same parcel | ||
215 | //Get the parcel at start | ||
216 | Parcel startParcel = getParcel(start_x, start_y); | ||
217 | if (startParcel == null) return false; //No such parcel at the beginning | ||
218 | |||
219 | //Loop through the points | ||
220 | try | ||
221 | { | ||
222 | int totalX = end_x - start_x; | ||
223 | int totalY = end_y - start_y; | ||
224 | int x, y; | ||
225 | for (y = 0; y < totalY; y++) | ||
226 | { | ||
227 | for (x = 0; x < totalX; x++) | ||
228 | { | ||
229 | Parcel tempParcel = getParcel(start_x + x, start_y + y); | ||
230 | if (tempParcel == null) return false; //No such parcel at that point | ||
231 | if (tempParcel != startParcel) return false; //Subdividing over 2 parcels; no-no | ||
232 | } | ||
233 | } | ||
234 | } | ||
235 | catch (Exception e) | ||
236 | { | ||
237 | return false; //Exception. For now, lets skip subdivision | ||
238 | } | ||
239 | |||
240 | //If we are still here, then they are subdividing within one parcel | ||
241 | //Check owner | ||
242 | if (startParcel.parcelData.ownerID != attempting_user_id) | ||
243 | { | ||
244 | return false; //They cant do this! | ||
245 | } | ||
246 | |||
247 | //Lets create a new parcel with bitmap activated at that point (keeping the old parcels info) | ||
248 | Parcel newParcel = startParcel.Copy(); | ||
249 | newParcel.parcelData.parcelName = "Subdivision of " + newParcel.parcelData.parcelName; | ||
250 | newParcel.parcelData.globalID = LLUUID.Random(); | ||
251 | |||
252 | newParcel.setParcelBitmap(Parcel.getSquareParcelBitmap(start_x, start_y, end_x, end_y)); | ||
253 | |||
254 | //Now, lets set the subdivision area of the original to false | ||
255 | int startParcelIndex = startParcel.parcelData.localID; | ||
256 | parcelList[startParcelIndex].setParcelBitmap(Parcel.modifyParcelBitmapSquare(startParcel.getParcelBitmap(), start_x, start_y, end_x, end_y, false)); | ||
257 | parcelList[startParcelIndex].forceUpdateParcelInfo(); | ||
258 | |||
259 | |||
260 | //Now add the new parcel | ||
261 | addParcel(newParcel); | ||
262 | |||
263 | |||
264 | |||
265 | |||
266 | |||
267 | return true; | ||
268 | } | ||
269 | /// <summary> | ||
270 | /// Join 2 parcels together | ||
271 | /// </summary> | ||
272 | /// <param name="start_x">x value in first parcel</param> | ||
273 | /// <param name="start_y">y value in first parcel</param> | ||
274 | /// <param name="end_x">x value in second parcel</param> | ||
275 | /// <param name="end_y">y value in second parcel</param> | ||
276 | /// <param name="attempting_user_id">LLUUID of the avatar trying to join the parcels</param> | ||
277 | /// <returns>Returns true if successful</returns> | ||
278 | public bool join(int start_x, int start_y, int end_x, int end_y, LLUUID attempting_user_id) | ||
279 | { | ||
280 | end_x -= 4; | ||
281 | end_y -= 4; | ||
282 | |||
283 | //NOTE: The following only connects the parcels in each corner and not all the parcels that are within the selection box! | ||
284 | //This should be fixed later -- somewhat "incomplete code" --Ming | ||
285 | Parcel startParcel, endParcel; | ||
286 | |||
287 | try | ||
288 | { | ||
289 | startParcel = getParcel(start_x, start_y); | ||
290 | endParcel = getParcel(end_x, end_y); | ||
291 | } | ||
292 | catch (Exception e) | ||
293 | { | ||
294 | return false; //Error occured when trying to get the start and end parcels | ||
295 | } | ||
296 | if (startParcel == endParcel) | ||
297 | { | ||
298 | return false; //Subdivision of the same parcel is not allowed | ||
299 | } | ||
300 | |||
301 | //Check the parcel owners: | ||
302 | if (startParcel.parcelData.ownerID != endParcel.parcelData.ownerID) | ||
303 | { | ||
304 | return false; | ||
305 | } | ||
306 | if (startParcel.parcelData.ownerID != attempting_user_id) | ||
307 | { | ||
308 | //TODO: Group editing stuff. Avatar owner support for now | ||
309 | return false; | ||
310 | } | ||
311 | |||
312 | //Same owners! Lets join them | ||
313 | //Merge them to startParcel | ||
314 | parcelList[startParcel.parcelData.localID].setParcelBitmap(Parcel.mergeParcelBitmaps(startParcel.getParcelBitmap(), endParcel.getParcelBitmap())); | ||
315 | performFinalParcelJoin(startParcel, endParcel); | ||
316 | |||
317 | return true; | ||
318 | |||
319 | |||
320 | |||
321 | } | ||
322 | #endregion | ||
323 | |||
324 | #region Parcel Updating | ||
325 | /// <summary> | ||
326 | /// Where we send the ParcelOverlay packet to the client | ||
327 | /// </summary> | ||
328 | /// <param name="remote_client">The object representing the client</param> | ||
329 | public void sendParcelOverlay(IClientAPI remote_client) | ||
330 | { | ||
331 | const int PARCEL_BLOCKS_PER_PACKET = 1024; | ||
332 | int x, y = 0; | ||
333 | byte[] byteArray = new byte[PARCEL_BLOCKS_PER_PACKET]; | ||
334 | int byteArrayCount = 0; | ||
335 | int sequenceID = 0; | ||
336 | ParcelOverlayPacket packet; | ||
337 | |||
338 | for (y = 0; y < 64; y++) | ||
339 | { | ||
340 | for (x = 0; x < 64; x++) | ||
341 | { | ||
342 | byte tempByte = (byte)0; //This represents the byte for the current 4x4 | ||
343 | Parcel currentParcelBlock = getParcel(x * 4, y * 4); | ||
344 | |||
345 | if (currentParcelBlock.parcelData.ownerID == remote_client.AgentId) | ||
346 | { | ||
347 | //Owner Flag | ||
348 | tempByte = Convert.ToByte(tempByte | PARCEL_TYPE_OWNED_BY_REQUESTER); | ||
349 | } | ||
350 | else if (currentParcelBlock.parcelData.salePrice > 0 && (currentParcelBlock.parcelData.authBuyerID == LLUUID.Zero || currentParcelBlock.parcelData.authBuyerID == remote_client.AgentId)) | ||
351 | { | ||
352 | //Sale Flag | ||
353 | tempByte = Convert.ToByte(tempByte | PARCEL_TYPE_IS_FOR_SALE); | ||
354 | } | ||
355 | else if (currentParcelBlock.parcelData.ownerID == LLUUID.Zero) | ||
356 | { | ||
357 | //Public Flag | ||
358 | tempByte = Convert.ToByte(tempByte | PARCEL_TYPE_PUBLIC); | ||
359 | } | ||
360 | else | ||
361 | { | ||
362 | //Other Flag | ||
363 | tempByte = Convert.ToByte(tempByte | PARCEL_TYPE_OWNED_BY_OTHER); | ||
364 | } | ||
365 | |||
366 | |||
367 | //Now for border control | ||
368 | if (x == 0) | ||
369 | { | ||
370 | tempByte = Convert.ToByte(tempByte | PARCEL_FLAG_PROPERTY_BORDER_WEST); | ||
371 | } | ||
372 | else if (getParcel((x - 1) * 4, y * 4) != currentParcelBlock) | ||
373 | { | ||
374 | tempByte = Convert.ToByte(tempByte | PARCEL_FLAG_PROPERTY_BORDER_WEST); | ||
375 | } | ||
376 | |||
377 | if (y == 0) | ||
378 | { | ||
379 | tempByte = Convert.ToByte(tempByte | PARCEL_FLAG_PROPERTY_BORDER_SOUTH); | ||
380 | } | ||
381 | else if (getParcel(x * 4, (y - 1) * 4) != currentParcelBlock) | ||
382 | { | ||
383 | tempByte = Convert.ToByte(tempByte | PARCEL_FLAG_PROPERTY_BORDER_SOUTH); | ||
384 | } | ||
385 | |||
386 | byteArray[byteArrayCount] = tempByte; | ||
387 | byteArrayCount++; | ||
388 | if (byteArrayCount >= PARCEL_BLOCKS_PER_PACKET) | ||
389 | { | ||
390 | byteArrayCount = 0; | ||
391 | packet = new ParcelOverlayPacket(); | ||
392 | packet.ParcelData.Data = byteArray; | ||
393 | packet.ParcelData.SequenceID = sequenceID; | ||
394 | remote_client.OutPacket((Packet)packet); | ||
395 | sequenceID++; | ||
396 | byteArray = new byte[PARCEL_BLOCKS_PER_PACKET]; | ||
397 | } | ||
398 | } | ||
399 | } | ||
400 | |||
401 | packet = new ParcelOverlayPacket(); | ||
402 | packet.ParcelData.Data = byteArray; | ||
403 | packet.ParcelData.SequenceID = sequenceID; //Eh? | ||
404 | remote_client.OutPacket((Packet)packet); | ||
405 | } | ||
406 | #endregion | ||
407 | |||
408 | /// <summary> | ||
409 | /// Resets the sim to the default parcel (full sim parcel owned by the default user) | ||
410 | /// </summary> | ||
411 | public void resetSimParcels() | ||
412 | { | ||
413 | //Remove all the parcels in the sim and add a blank, full sim parcel set to public | ||
414 | parcelList.Clear(); | ||
415 | lastParcelLocalID = START_PARCEL_LOCAL_ID - 1; | ||
416 | parcelIDList.Initialize(); | ||
417 | |||
418 | Parcel fullSimParcel = new Parcel(LLUUID.Zero, false, m_world); | ||
419 | |||
420 | fullSimParcel.setParcelBitmap(Parcel.getSquareParcelBitmap(0, 0, 256, 256)); | ||
421 | fullSimParcel.parcelData.parcelName = "Your Sim Parcel"; | ||
422 | fullSimParcel.parcelData.parcelDesc = ""; | ||
423 | |||
424 | fullSimParcel.parcelData.ownerID = m_world.m_regInfo.MasterAvatarAssignedUUID; | ||
425 | fullSimParcel.parcelData.salePrice = 1; | ||
426 | fullSimParcel.parcelData.parcelFlags = libsecondlife.Parcel.ParcelFlags.ForSale; | ||
427 | fullSimParcel.parcelData.parcelStatus = libsecondlife.Parcel.ParcelStatus.Leased; | ||
428 | |||
429 | addParcel(fullSimParcel); | ||
430 | |||
431 | } | ||
432 | #endregion | ||
433 | } | ||
434 | #endregion | ||
435 | |||
436 | |||
437 | #region Parcel Class | ||
438 | /// <summary> | ||
439 | /// Keeps track of a specific parcel's information | ||
440 | /// </summary> | ||
441 | public class Parcel | ||
442 | { | ||
443 | #region Member Variables | ||
444 | public ParcelData parcelData = new ParcelData(); | ||
445 | public World m_world; | ||
446 | |||
447 | private bool[,] parcelBitmap = new bool[64, 64]; | ||
448 | |||
449 | #endregion | ||
450 | |||
451 | |||
452 | #region Constructors | ||
453 | public Parcel(LLUUID owner_id, bool is_group_owned, World world) | ||
454 | { | ||
455 | m_world = world; | ||
456 | parcelData.ownerID = owner_id; | ||
457 | parcelData.isGroupOwned = is_group_owned; | ||
458 | |||
459 | } | ||
460 | #endregion | ||
461 | |||
462 | |||
463 | #region Member Functions | ||
464 | |||
465 | #region General Functions | ||
466 | /// <summary> | ||
467 | /// Checks to see if this parcel contains a point | ||
468 | /// </summary> | ||
469 | /// <param name="x"></param> | ||
470 | /// <param name="y"></param> | ||
471 | /// <returns>Returns true if the parcel contains the specified point</returns> | ||
472 | public bool containsPoint(int x, int y) | ||
473 | { | ||
474 | if (x >= 0 && y >= 0 && x <= 256 && x <= 256) | ||
475 | { | ||
476 | return (parcelBitmap[x / 4, y / 4] == true); | ||
477 | } | ||
478 | else | ||
479 | { | ||
480 | return false; | ||
481 | } | ||
482 | } | ||
483 | |||
484 | public Parcel Copy() | ||
485 | { | ||
486 | Parcel newParcel = new Parcel(this.parcelData.ownerID, this.parcelData.isGroupOwned, m_world); | ||
487 | |||
488 | //Place all new variables here! | ||
489 | newParcel.parcelBitmap = (bool[,])(this.parcelBitmap.Clone()); | ||
490 | newParcel.parcelData = parcelData.Copy(); | ||
491 | |||
492 | return newParcel; | ||
493 | } | ||
494 | |||
495 | #endregion | ||
496 | |||
497 | |||
498 | #region Packet Request Handling | ||
499 | /// <summary> | ||
500 | /// Sends parcel properties as requested | ||
501 | /// </summary> | ||
502 | /// <param name="sequence_id">ID sent by client for them to keep track of</param> | ||
503 | /// <param name="snap_selection">Bool sent by client for them to use</param> | ||
504 | /// <param name="remote_client">Object representing the client</param> | ||
505 | public void sendParcelProperties(int sequence_id, bool snap_selection, int request_result, IClientAPI remote_client) | ||
506 | { | ||
507 | |||
508 | ParcelPropertiesPacket updatePacket = new ParcelPropertiesPacket(); | ||
509 | updatePacket.ParcelData.AABBMax = parcelData.AABBMax; | ||
510 | updatePacket.ParcelData.AABBMin = parcelData.AABBMin; | ||
511 | updatePacket.ParcelData.Area = parcelData.area; | ||
512 | updatePacket.ParcelData.AuctionID = parcelData.auctionID; | ||
513 | updatePacket.ParcelData.AuthBuyerID =parcelData.authBuyerID; //unemplemented | ||
514 | |||
515 | updatePacket.ParcelData.Bitmap = parcelData.parcelBitmapByteArray; | ||
516 | |||
517 | updatePacket.ParcelData.Desc = libsecondlife.Helpers.StringToField(parcelData.parcelDesc); | ||
518 | updatePacket.ParcelData.Category = (byte)parcelData.category; | ||
519 | updatePacket.ParcelData.ClaimDate = parcelData.claimDate; | ||
520 | updatePacket.ParcelData.ClaimPrice = parcelData.claimPrice; | ||
521 | updatePacket.ParcelData.GroupID = parcelData.groupID; | ||
522 | updatePacket.ParcelData.GroupPrims = parcelData.groupPrims; | ||
523 | updatePacket.ParcelData.IsGroupOwned = parcelData.isGroupOwned; | ||
524 | updatePacket.ParcelData.LandingType = (byte)parcelData.landingType; | ||
525 | updatePacket.ParcelData.LocalID = parcelData.localID; | ||
526 | updatePacket.ParcelData.MaxPrims = 1000; //unemplemented | ||
527 | updatePacket.ParcelData.MediaAutoScale = parcelData.mediaAutoScale; | ||
528 | updatePacket.ParcelData.MediaID = parcelData.mediaID; | ||
529 | updatePacket.ParcelData.MediaURL = Helpers.StringToField(parcelData.mediaURL); | ||
530 | updatePacket.ParcelData.MusicURL = Helpers.StringToField(parcelData.musicURL); | ||
531 | updatePacket.ParcelData.Name = Helpers.StringToField(parcelData.parcelName); | ||
532 | updatePacket.ParcelData.OtherCleanTime = 0; //unemplemented | ||
533 | updatePacket.ParcelData.OtherCount = 0; //unemplemented | ||
534 | updatePacket.ParcelData.OtherPrims = 0; //unemplented | ||
535 | updatePacket.ParcelData.OwnerID = parcelData.ownerID; | ||
536 | updatePacket.ParcelData.OwnerPrims = 0; //unemplemented | ||
537 | updatePacket.ParcelData.ParcelFlags = (uint)parcelData.parcelFlags; //unemplemented | ||
538 | updatePacket.ParcelData.ParcelPrimBonus = (float)1.0; //unemplemented | ||
539 | updatePacket.ParcelData.PassHours = parcelData.passHours; | ||
540 | updatePacket.ParcelData.PassPrice = parcelData.passPrice; | ||
541 | updatePacket.ParcelData.PublicCount = 0; //unemplemented | ||
542 | updatePacket.ParcelData.RegionDenyAnonymous = false; //unemplemented | ||
543 | updatePacket.ParcelData.RegionDenyIdentified = false; //unemplemented | ||
544 | updatePacket.ParcelData.RegionDenyTransacted = false; //unemplemented | ||
545 | updatePacket.ParcelData.RegionPushOverride = true; //unemplemented | ||
546 | updatePacket.ParcelData.RentPrice = 0; //?? | ||
547 | updatePacket.ParcelData.RequestResult = request_result; | ||
548 | updatePacket.ParcelData.SalePrice = parcelData.salePrice; //unemplemented | ||
549 | updatePacket.ParcelData.SelectedPrims = 0; //unemeplemented | ||
550 | updatePacket.ParcelData.SelfCount = 0;//unemplemented | ||
551 | updatePacket.ParcelData.SequenceID = sequence_id; | ||
552 | updatePacket.ParcelData.SimWideMaxPrims = 15000; //unemplemented | ||
553 | updatePacket.ParcelData.SimWideTotalPrims = 0; //unemplemented | ||
554 | updatePacket.ParcelData.SnapSelection = snap_selection; | ||
555 | updatePacket.ParcelData.SnapshotID = parcelData.snapshotID; | ||
556 | updatePacket.ParcelData.Status = (byte)parcelData.parcelStatus; | ||
557 | updatePacket.ParcelData.TotalPrims = 0; //unemplemented | ||
558 | updatePacket.ParcelData.UserLocation = parcelData.userLocation; | ||
559 | updatePacket.ParcelData.UserLookAt = parcelData.userLookAt; | ||
560 | remote_client.OutPacket((Packet)updatePacket); | ||
561 | } | ||
562 | |||
563 | public void updateParcelProperties(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client) | ||
564 | { | ||
565 | if (remote_client.AgentId == parcelData.ownerID) | ||
566 | { | ||
567 | //Needs later group support | ||
568 | parcelData.authBuyerID = packet.ParcelData.AuthBuyerID; | ||
569 | parcelData.category = (libsecondlife.Parcel.ParcelCategory)packet.ParcelData.Category; | ||
570 | parcelData.parcelDesc = Helpers.FieldToUTF8String(packet.ParcelData.Desc); | ||
571 | parcelData.groupID = packet.ParcelData.GroupID; | ||
572 | parcelData.landingType = packet.ParcelData.LandingType; | ||
573 | parcelData.mediaAutoScale = packet.ParcelData.MediaAutoScale; | ||
574 | parcelData.mediaID = packet.ParcelData.MediaID; | ||
575 | parcelData.mediaURL = Helpers.FieldToUTF8String(packet.ParcelData.MediaURL); | ||
576 | parcelData.musicURL = Helpers.FieldToUTF8String(packet.ParcelData.MusicURL); | ||
577 | parcelData.parcelName = libsecondlife.Helpers.FieldToUTF8String(packet.ParcelData.Name); | ||
578 | parcelData.parcelFlags = (libsecondlife.Parcel.ParcelFlags)packet.ParcelData.ParcelFlags; | ||
579 | parcelData.passHours = packet.ParcelData.PassHours; | ||
580 | parcelData.passPrice = packet.ParcelData.PassPrice; | ||
581 | parcelData.salePrice = packet.ParcelData.SalePrice; | ||
582 | parcelData.snapshotID = packet.ParcelData.SnapshotID; | ||
583 | parcelData.userLocation = packet.ParcelData.UserLocation; | ||
584 | parcelData.userLookAt = packet.ParcelData.UserLookAt; | ||
585 | |||
586 | foreach (Avatar av in m_world.Avatars.Values) | ||
587 | { | ||
588 | Parcel over = m_world.parcelManager.getParcel((int)Math.Round(av.Pos.X), (int)Math.Round(av.Pos.Y)); | ||
589 | if (over == this) | ||
590 | { | ||
591 | sendParcelProperties(0, false, 0, av.ControllingClient); | ||
592 | } | ||
593 | } | ||
594 | } | ||
595 | } | ||
596 | #endregion | ||
597 | |||
598 | |||
599 | #region Update Functions | ||
600 | /// <summary> | ||
601 | /// Updates the AABBMin and AABBMax values after area/shape modification of parcel | ||
602 | /// </summary> | ||
603 | private void updateAABBAndAreaValues() | ||
604 | { | ||
605 | int min_x = 64; | ||
606 | int min_y = 64; | ||
607 | int max_x = 0; | ||
608 | int max_y = 0; | ||
609 | int tempArea = 0; | ||
610 | int x, y; | ||
611 | for (x = 0; x < 64; x++) | ||
612 | { | ||
613 | for (y = 0; y < 64; y++) | ||
614 | { | ||
615 | if (parcelBitmap[x, y] == true) | ||
616 | { | ||
617 | if (min_x > x) min_x = x; | ||
618 | if (min_y > y) min_y = y; | ||
619 | if (max_x < x) max_x = x; | ||
620 | if (max_y < y) max_y = y; | ||
621 | tempArea += 16; //16sqm parcel | ||
622 | } | ||
623 | } | ||
624 | } | ||
625 | parcelData.AABBMin = new LLVector3((float)(min_x * 4), (float)(min_y * 4), m_world.Terrain[(min_x * 4), (min_y * 4)]); | ||
626 | parcelData.AABBMax = new LLVector3((float)(max_x * 4), (float)(max_y * 4), m_world.Terrain[(max_x * 4), (max_y * 4)]); | ||
627 | parcelData.area = tempArea; | ||
628 | } | ||
629 | |||
630 | public void updateParcelBitmapByteArray() | ||
631 | { | ||
632 | parcelData.parcelBitmapByteArray = convertParcelBitmapToBytes(); | ||
633 | } | ||
634 | |||
635 | /// <summary> | ||
636 | /// Update all settings in parcel such as area, bitmap byte array, etc | ||
637 | /// </summary> | ||
638 | public void forceUpdateParcelInfo() | ||
639 | { | ||
640 | this.updateAABBAndAreaValues(); | ||
641 | this.updateParcelBitmapByteArray(); | ||
642 | } | ||
643 | |||
644 | public void setParcelBitmapFromByteArray() | ||
645 | { | ||
646 | parcelBitmap = convertBytesToParcelBitmap(); | ||
647 | } | ||
648 | #endregion | ||
649 | |||
650 | |||
651 | #region Parcel Bitmap Functions | ||
652 | /// <summary> | ||
653 | /// Sets the parcel's bitmap manually | ||
654 | /// </summary> | ||
655 | /// <param name="bitmap">64x64 block representing where this parcel is on a map</param> | ||
656 | public void setParcelBitmap(bool[,] bitmap) | ||
657 | { | ||
658 | if (bitmap.GetLength(0) != 64 || bitmap.GetLength(1) != 64 || bitmap.Rank != 2) | ||
659 | { | ||
660 | //Throw an exception - The bitmap is not 64x64 | ||
661 | throw new Exception("Error: Invalid Parcel Bitmap"); | ||
662 | } | ||
663 | else | ||
664 | { | ||
665 | //Valid: Lets set it | ||
666 | parcelBitmap = bitmap; | ||
667 | forceUpdateParcelInfo(); | ||
668 | |||
669 | } | ||
670 | } | ||
671 | /// <summary> | ||
672 | /// Gets the parcels bitmap manually | ||
673 | /// </summary> | ||
674 | /// <returns></returns> | ||
675 | public bool[,] getParcelBitmap() | ||
676 | { | ||
677 | return parcelBitmap; | ||
678 | } | ||
679 | /// <summary> | ||
680 | /// Converts the parcel bitmap to a packet friendly byte array | ||
681 | /// </summary> | ||
682 | /// <returns></returns> | ||
683 | private byte[] convertParcelBitmapToBytes() | ||
684 | { | ||
685 | byte[] tempConvertArr = new byte[512]; | ||
686 | byte tempByte = 0; | ||
687 | int x, y, i, byteNum = 0; | ||
688 | i = 0; | ||
689 | for (y = 0; y < 64; y++) | ||
690 | { | ||
691 | for (x = 0; x < 64; x++) | ||
692 | { | ||
693 | tempByte = Convert.ToByte(tempByte | Convert.ToByte(parcelBitmap[x, y]) << (i++ % 8)); | ||
694 | if (i % 8 == 0) | ||
695 | { | ||
696 | tempConvertArr[byteNum] = tempByte; | ||
697 | tempByte = (byte)0; | ||
698 | i = 0; | ||
699 | byteNum++; | ||
700 | } | ||
701 | } | ||
702 | } | ||
703 | return tempConvertArr; | ||
704 | } | ||
705 | |||
706 | private bool[,] convertBytesToParcelBitmap() | ||
707 | { | ||
708 | bool[,] tempConvertMap = new bool[64, 64]; | ||
709 | tempConvertMap.Initialize(); | ||
710 | byte tempByte = 0; | ||
711 | int x = 0, y = 0, i = 0, bitNum = 0; | ||
712 | for(i = 0; i < 512; i++) | ||
713 | { | ||
714 | tempByte = parcelData.parcelBitmapByteArray[i]; | ||
715 | for(bitNum = 0; bitNum < 8; bitNum++) | ||
716 | { | ||
717 | bool bit = Convert.ToBoolean(Convert.ToByte(tempByte >> bitNum) & (byte)1); | ||
718 | tempConvertMap[x, y] = bit; | ||
719 | x++; | ||
720 | if(x > 63) | ||
721 | { | ||
722 | x = 0; | ||
723 | y++; | ||
724 | } | ||
725 | |||
726 | } | ||
727 | |||
728 | } | ||
729 | return tempConvertMap; | ||
730 | } | ||
731 | /// <summary> | ||
732 | /// Full sim parcel creation | ||
733 | /// </summary> | ||
734 | /// <returns></returns> | ||
735 | public static bool[,] basicFullRegionParcelBitmap() | ||
736 | { | ||
737 | return getSquareParcelBitmap(0, 0, 256, 256); | ||
738 | } | ||
739 | |||
740 | /// <summary> | ||
741 | /// Used to modify the bitmap between the x and y points. Points use 64 scale | ||
742 | /// </summary> | ||
743 | /// <param name="start_x"></param> | ||
744 | /// <param name="start_y"></param> | ||
745 | /// <param name="end_x"></param> | ||
746 | /// <param name="end_y"></param> | ||
747 | /// <returns></returns> | ||
748 | public static bool[,] getSquareParcelBitmap(int start_x, int start_y, int end_x, int end_y) | ||
749 | { | ||
750 | |||
751 | bool[,] tempBitmap = new bool[64, 64]; | ||
752 | tempBitmap.Initialize(); | ||
753 | |||
754 | tempBitmap = modifyParcelBitmapSquare(tempBitmap, start_x, start_y, end_x, end_y, true); | ||
755 | return tempBitmap; | ||
756 | } | ||
757 | |||
758 | /// <summary> | ||
759 | /// Change a parcel's bitmap at within a square and set those points to a specific value | ||
760 | /// </summary> | ||
761 | /// <param name="parcel_bitmap"></param> | ||
762 | /// <param name="start_x"></param> | ||
763 | /// <param name="start_y"></param> | ||
764 | /// <param name="end_x"></param> | ||
765 | /// <param name="end_y"></param> | ||
766 | /// <param name="set_value"></param> | ||
767 | /// <returns></returns> | ||
768 | public static bool[,] modifyParcelBitmapSquare(bool[,] parcel_bitmap, int start_x, int start_y, int end_x, int end_y, bool set_value) | ||
769 | { | ||
770 | if (parcel_bitmap.GetLength(0) != 64 || parcel_bitmap.GetLength(1) != 64 || parcel_bitmap.Rank != 2) | ||
771 | { | ||
772 | //Throw an exception - The bitmap is not 64x64 | ||
773 | throw new Exception("Error: Invalid Parcel Bitmap in modifyParcelBitmapSquare()"); | ||
774 | } | ||
775 | |||
776 | int x, y; | ||
777 | for (y = 0; y < 64; y++) | ||
778 | { | ||
779 | for (x = 0; x < 64; x++) | ||
780 | { | ||
781 | if (x >= start_x / 4 && x < end_x / 4 | ||
782 | && y >= start_y / 4 && y < end_y / 4) | ||
783 | { | ||
784 | parcel_bitmap[x, y] = set_value; | ||
785 | } | ||
786 | } | ||
787 | } | ||
788 | return parcel_bitmap; | ||
789 | } | ||
790 | /// <summary> | ||
791 | /// Join the true values of 2 bitmaps together | ||
792 | /// </summary> | ||
793 | /// <param name="bitmap_base"></param> | ||
794 | /// <param name="bitmap_add"></param> | ||
795 | /// <returns></returns> | ||
796 | public static bool[,] mergeParcelBitmaps(bool[,] bitmap_base, bool[,] bitmap_add) | ||
797 | { | ||
798 | if (bitmap_base.GetLength(0) != 64 || bitmap_base.GetLength(1) != 64 || bitmap_base.Rank != 2) | ||
799 | { | ||
800 | //Throw an exception - The bitmap is not 64x64 | ||
801 | throw new Exception("Error: Invalid Parcel Bitmap - Bitmap_base in mergeParcelBitmaps"); | ||
802 | } | ||
803 | if (bitmap_add.GetLength(0) != 64 || bitmap_add.GetLength(1) != 64 || bitmap_add.Rank != 2) | ||
804 | { | ||
805 | //Throw an exception - The bitmap is not 64x64 | ||
806 | throw new Exception("Error: Invalid Parcel Bitmap - Bitmap_add in mergeParcelBitmaps"); | ||
807 | |||
808 | } | ||
809 | |||
810 | int x, y; | ||
811 | for (y = 0; y < 64; y++) | ||
812 | { | ||
813 | for (x = 0; x < 64; x++) | ||
814 | { | ||
815 | if (bitmap_add[x, y]) | ||
816 | { | ||
817 | bitmap_base[x, y] = true; | ||
818 | } | ||
819 | } | ||
820 | } | ||
821 | return bitmap_base; | ||
822 | } | ||
823 | #endregion | ||
824 | |||
825 | #endregion | ||
826 | |||
827 | |||
828 | } | ||
829 | #endregion | ||
830 | |||
831 | |||
832 | } | ||
diff --git a/OpenSim/OpenSim.World/World.cs b/OpenSim/OpenSim.World/World.cs index 1d56ea3..1f97820 100644 --- a/OpenSim/OpenSim.World/World.cs +++ b/OpenSim/OpenSim.World/World.cs | |||
@@ -15,6 +15,8 @@ using OpenSim.Framework; | |||
15 | using OpenSim.RegionServer.world.scripting; | 15 | using OpenSim.RegionServer.world.scripting; |
16 | using OpenSim.Terrain; | 16 | using OpenSim.Terrain; |
17 | using OpenGrid.Framework.Communications; | 17 | using OpenGrid.Framework.Communications; |
18 | using OpenSim.world.Estate; | ||
19 | |||
18 | 20 | ||
19 | namespace OpenSim.world | 21 | namespace OpenSim.world |
20 | { | 22 | { |
@@ -40,6 +42,9 @@ namespace OpenSim.world | |||
40 | protected RegionCommsHostBase regionCommsHost; | 42 | protected RegionCommsHostBase regionCommsHost; |
41 | protected RegionServerCommsManager commsManager; | 43 | protected RegionServerCommsManager commsManager; |
42 | 44 | ||
45 | public ParcelManager parcelManager; | ||
46 | public EstateManager estateManager; | ||
47 | |||
43 | #region Properties | 48 | #region Properties |
44 | /// <summary> | 49 | /// <summary> |
45 | /// | 50 | /// |
@@ -444,7 +449,7 @@ namespace OpenSim.world | |||
444 | /// <summary> | 449 | /// <summary> |
445 | /// | 450 | /// |
446 | /// </summary> | 451 | /// </summary> |
447 | /// <param name="remoteClient"></param> | 452 | /// <param name="remoteClient"></param |
448 | /// <param name="agentID"></param> | 453 | /// <param name="agentID"></param> |
449 | /// <param name="child"></param> | 454 | /// <param name="child"></param> |
450 | public override void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child) | 455 | public override void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child) |
@@ -458,7 +463,7 @@ namespace OpenSim.world | |||
458 | try | 463 | try |
459 | { | 464 | { |
460 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Creating new avatar for remote viewer agent"); | 465 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Creating new avatar for remote viewer agent"); |
461 | newAvatar = new Avatar(remoteClient, this, m_clientThreads, this.m_regInfo); | 466 | newAvatar = new Avatar(remoteClient, this, m_clientThreads); |
462 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Adding new avatar to world"); | 467 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Adding new avatar to world"); |
463 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Starting RegionHandshake "); | 468 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Starting RegionHandshake "); |
464 | newAvatar.SendRegionHandshake(); | 469 | newAvatar.SendRegionHandshake(); |
diff --git a/OpenSim/OpenSim.World/WorldBase.cs b/OpenSim/OpenSim.World/WorldBase.cs index 19a8fb5..4d806e3 100644 --- a/OpenSim/OpenSim.World/WorldBase.cs +++ b/OpenSim/OpenSim.World/WorldBase.cs | |||
@@ -23,7 +23,7 @@ namespace OpenSim.world | |||
23 | protected string m_regionName; | 23 | protected string m_regionName; |
24 | // protected InventoryCache _inventoryCache; | 24 | // protected InventoryCache _inventoryCache; |
25 | // protected AssetCache _assetCache; | 25 | // protected AssetCache _assetCache; |
26 | protected RegionInfo m_regInfo; | 26 | public RegionInfo m_regInfo; |
27 | 27 | ||
28 | public TerrainEngine Terrain; //TODO: Replace TerrainManager with this. | 28 | public TerrainEngine Terrain; //TODO: Replace TerrainManager with this. |
29 | protected libsecondlife.TerrainManager TerrainManager; // To be referenced via TerrainEngine | 29 | protected libsecondlife.TerrainManager TerrainManager; // To be referenced via TerrainEngine |
diff --git a/OpenSim/OpenSim/OpenSim.csproj.user b/OpenSim/OpenSim/OpenSim.csproj.user index ba0418b..66e2cb4 100644 --- a/OpenSim/OpenSim/OpenSim.csproj.user +++ b/OpenSim/OpenSim/OpenSim.csproj.user | |||
@@ -3,7 +3,7 @@ | |||
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <StartArguments>-loginserver -sandbox -accounts</StartArguments> | 5 | <StartArguments>-loginserver -sandbox -accounts</StartArguments> |
6 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 6 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
7 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 7 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
8 | <ProjectView>ProjectFiles</ProjectView> | 8 | <ProjectView>ProjectFiles</ProjectView> |
9 | <ProjectTrust>0</ProjectTrust> | 9 | <ProjectTrust>0</ProjectTrust> |
diff --git a/OpenSim/OpenSim/OpenSim.exe.build b/OpenSim/OpenSim/OpenSim.exe.build index 4f8ca8a..9c209ac 100644 --- a/OpenSim/OpenSim/OpenSim.exe.build +++ b/OpenSim/OpenSim/OpenSim.exe.build | |||
@@ -29,8 +29,10 @@ | |||
29 | <include name="../../bin/OpenSim.Framework.Console.dll" /> | 29 | <include name="../../bin/OpenSim.Framework.Console.dll" /> |
30 | <include name="../../bin/OpenSim.Physics.Manager.dll" /> | 30 | <include name="../../bin/OpenSim.Physics.Manager.dll" /> |
31 | <include name="../../bin/OpenSim.Servers.dll" /> | 31 | <include name="../../bin/OpenSim.Servers.dll" /> |
32 | <include name="../../bin/OpenSim.World.dll" /> | ||
32 | <include name="../../bin/OpenSim.RegionServer.dll" /> | 33 | <include name="../../bin/OpenSim.RegionServer.dll" /> |
33 | <include name="../../bin/OpenSim.GenericConfig.Xml.dll" /> | 34 | <include name="../../bin/OpenSim.GenericConfig.Xml.dll" /> |
35 | <include name="../../bin/OpenGrid.Framework.Communications.dll" /> | ||
34 | <include name="../../bin/XMLRPC.dll" /> | 36 | <include name="../../bin/XMLRPC.dll" /> |
35 | </references> | 37 | </references> |
36 | </csc> | 38 | </csc> |
diff --git a/OpenSim/OpenSim/OpenSimMain.cs b/OpenSim/OpenSim/OpenSimMain.cs index 7c83dee..cbcf3db 100644 --- a/OpenSim/OpenSim/OpenSimMain.cs +++ b/OpenSim/OpenSim/OpenSimMain.cs | |||
@@ -69,7 +69,6 @@ namespace OpenSim | |||
69 | m_loginserver = startLoginServer; | 69 | m_loginserver = startLoginServer; |
70 | m_physicsEngine = physicsEngine; | 70 | m_physicsEngine = physicsEngine; |
71 | m_config = configFile; | 71 | m_config = configFile; |
72 | |||
73 | m_console = new ConsoleBase("region-console-" + Guid.NewGuid().ToString() + ".log", "Region", this, silent); | 72 | m_console = new ConsoleBase("region-console-" + Guid.NewGuid().ToString() + ".log", "Region", this, silent); |
74 | OpenSim.Framework.Console.MainConsole.Instance = m_console; | 73 | OpenSim.Framework.Console.MainConsole.Instance = m_console; |
75 | } | 74 | } |
diff --git a/Prebuild/src/Prebuild.csproj b/Prebuild/src/Prebuild.csproj index 55efffa..df6b4f4 100644 --- a/Prebuild/src/Prebuild.csproj +++ b/Prebuild/src/Prebuild.csproj | |||
@@ -83,9 +83,6 @@ | |||
83 | <Compile Include="Prebuild.cs"> | 83 | <Compile Include="Prebuild.cs"> |
84 | <SubType>Code</SubType> | 84 | <SubType>Code</SubType> |
85 | </Compile> | 85 | </Compile> |
86 | <Compile Include="Core\FatalException.cs"> | ||
87 | <SubType>Code</SubType> | ||
88 | </Compile> | ||
89 | <Compile Include="Core\Kernel.cs"> | 86 | <Compile Include="Core\Kernel.cs"> |
90 | <SubType>Code</SubType> | 87 | <SubType>Code</SubType> |
91 | </Compile> | 88 | </Compile> |
@@ -95,19 +92,25 @@ | |||
95 | <Compile Include="Core\WarningException.cs"> | 92 | <Compile Include="Core\WarningException.cs"> |
96 | <SubType>Code</SubType> | 93 | <SubType>Code</SubType> |
97 | </Compile> | 94 | </Compile> |
98 | <Compile Include="Core\Attributes\DataNodeAttribute.cs"> | 95 | <Compile Include="Core\FatalException.cs"> |
96 | <SubType>Code</SubType> | ||
97 | </Compile> | ||
98 | <Compile Include="Core\Interfaces\ITarget.cs"> | ||
99 | <SubType>Code</SubType> | ||
100 | </Compile> | ||
101 | <Compile Include="Core\Interfaces\IDataNode.cs"> | ||
99 | <SubType>Code</SubType> | 102 | <SubType>Code</SubType> |
100 | </Compile> | 103 | </Compile> |
101 | <Compile Include="Core\Attributes\OptionNodeAttribute.cs"> | 104 | <Compile Include="Core\Attributes\OptionNodeAttribute.cs"> |
102 | <SubType>Code</SubType> | 105 | <SubType>Code</SubType> |
103 | </Compile> | 106 | </Compile> |
104 | <Compile Include="Core\Attributes\TargetAttribute.cs"> | 107 | <Compile Include="Core\Attributes\DataNodeAttribute.cs"> |
105 | <SubType>Code</SubType> | 108 | <SubType>Code</SubType> |
106 | </Compile> | 109 | </Compile> |
107 | <Compile Include="Core\Interfaces\IDataNode.cs"> | 110 | <Compile Include="Core\Attributes\TargetAttribute.cs"> |
108 | <SubType>Code</SubType> | 111 | <SubType>Code</SubType> |
109 | </Compile> | 112 | </Compile> |
110 | <Compile Include="Core\Interfaces\ITarget.cs"> | 113 | <Compile Include="Core\Nodes\ProjectNode.cs"> |
111 | <SubType>Code</SubType> | 114 | <SubType>Code</SubType> |
112 | </Compile> | 115 | </Compile> |
113 | <Compile Include="Core\Nodes\ConfigurationNode.cs"> | 116 | <Compile Include="Core\Nodes\ConfigurationNode.cs"> |
@@ -119,76 +122,73 @@ | |||
119 | <Compile Include="Core\Nodes\ExcludeNode.cs"> | 122 | <Compile Include="Core\Nodes\ExcludeNode.cs"> |
120 | <SubType>Code</SubType> | 123 | <SubType>Code</SubType> |
121 | </Compile> | 124 | </Compile> |
122 | <Compile Include="Core\Nodes\FileNode.cs"> | 125 | <Compile Include="Core\Nodes\OptionsNode.cs"> |
123 | <SubType>Code</SubType> | 126 | <SubType>Code</SubType> |
124 | </Compile> | 127 | </Compile> |
125 | <Compile Include="Core\Nodes\FilesNode.cs"> | 128 | <Compile Include="Core\Nodes\ReferencePathNode.cs"> |
126 | <SubType>Code</SubType> | 129 | <SubType>Code</SubType> |
127 | </Compile> | 130 | </Compile> |
128 | <Compile Include="Core\Nodes\MatchNode.cs"> | 131 | <Compile Include="Core\Nodes\MatchNode.cs"> |
129 | <SubType>Code</SubType> | 132 | <SubType>Code</SubType> |
130 | </Compile> | 133 | </Compile> |
131 | <Compile Include="Core\Nodes\OptionsNode.cs"> | 134 | <Compile Include="Core\Nodes\SolutionNode.cs"> |
132 | <SubType>Code</SubType> | 135 | <SubType>Code</SubType> |
133 | </Compile> | 136 | </Compile> |
134 | <Compile Include="Core\Nodes\ProcessNode.cs"> | 137 | <Compile Include="Core\Nodes\ProcessNode.cs"> |
135 | <SubType>Code</SubType> | 138 | <SubType>Code</SubType> |
136 | </Compile> | 139 | </Compile> |
137 | <Compile Include="Core\Nodes\ProjectNode.cs"> | ||
138 | <SubType>Code</SubType> | ||
139 | </Compile> | ||
140 | <Compile Include="Core\Nodes\ReferenceNode.cs"> | 140 | <Compile Include="Core\Nodes\ReferenceNode.cs"> |
141 | <SubType>Code</SubType> | 141 | <SubType>Code</SubType> |
142 | </Compile> | 142 | </Compile> |
143 | <Compile Include="Core\Nodes\ReferencePathNode.cs"> | 143 | <Compile Include="Core\Nodes\FileNode.cs"> |
144 | <SubType>Code</SubType> | 144 | <SubType>Code</SubType> |
145 | </Compile> | 145 | </Compile> |
146 | <Compile Include="Core\Nodes\SolutionNode.cs"> | 146 | <Compile Include="Core\Nodes\FilesNode.cs"> |
147 | <SubType>Code</SubType> | 147 | <SubType>Code</SubType> |
148 | </Compile> | 148 | </Compile> |
149 | <Compile Include="Core\Parse\IfContext.cs"> | 149 | <Compile Include="Core\Targets\DebugTarget.cs"> |
150 | <SubType>Code</SubType> | 150 | <SubType>Code</SubType> |
151 | </Compile> | 151 | </Compile> |
152 | <Compile Include="Core\Parse\Preprocessor.cs"> | 152 | <Compile Include="Core\Targets\MonoDevelopTarget.cs"> |
153 | <SubType>Code</SubType> | 153 | <SubType>Code</SubType> |
154 | </Compile> | 154 | </Compile> |
155 | <Compile Include="Core\Targets\AutotoolsTarget.cs"> | 155 | <Compile Include="Core\Targets\AutotoolsTarget.cs"> |
156 | <SubType>Code</SubType> | 156 | <SubType>Code</SubType> |
157 | </Compile> | 157 | </Compile> |
158 | <Compile Include="Core\Targets\DebugTarget.cs"> | 158 | <Compile Include="Core\Targets\SharpDevelopTarget.cs"> |
159 | <SubType>Code</SubType> | 159 | <SubType>Code</SubType> |
160 | </Compile> | 160 | </Compile> |
161 | <Compile Include="Core\Targets\MonoDevelopTarget.cs"> | 161 | <Compile Include="Core\Targets\VS2002Target.cs"> |
162 | <SubType>Code</SubType> | 162 | <SubType>Code</SubType> |
163 | </Compile> | 163 | </Compile> |
164 | <Compile Include="Core\Targets\NAntTarget.cs"> | 164 | <Compile Include="Core\Targets\VS2003Target.cs"> |
165 | <SubType>Code</SubType> | 165 | <SubType>Code</SubType> |
166 | </Compile> | 166 | </Compile> |
167 | <Compile Include="Core\Targets\SharpDevelop2Target.cs"> | 167 | <Compile Include="Core\Targets\SharpDevelop2Target.cs"> |
168 | <SubType>Code</SubType> | 168 | <SubType>Code</SubType> |
169 | </Compile> | 169 | </Compile> |
170 | <Compile Include="Core\Targets\SharpDevelopTarget.cs"> | 170 | <Compile Include="Core\Targets\VS2005Target.cs"> |
171 | <SubType>Code</SubType> | 171 | <SubType>Code</SubType> |
172 | </Compile> | 172 | </Compile> |
173 | <Compile Include="Core\Targets\VS2002Target.cs"> | 173 | <Compile Include="Core\Targets\NAntTarget.cs"> |
174 | <SubType>Code</SubType> | 174 | <SubType>Code</SubType> |
175 | </Compile> | 175 | </Compile> |
176 | <Compile Include="Core\Targets\VS2003Target.cs"> | 176 | <Compile Include="Core\Parse\IfContext.cs"> |
177 | <SubType>Code</SubType> | 177 | <SubType>Code</SubType> |
178 | </Compile> | 178 | </Compile> |
179 | <Compile Include="Core\Targets\VS2005Target.cs"> | 179 | <Compile Include="Core\Parse\Preprocessor.cs"> |
180 | <SubType>Code</SubType> | 180 | <SubType>Code</SubType> |
181 | </Compile> | 181 | </Compile> |
182 | <Compile Include="Core\Utilities\CommandLineCollection.cs"> | 182 | <Compile Include="Core\Utilities\Helper.cs"> |
183 | <SubType>Code</SubType> | 183 | <SubType>Code</SubType> |
184 | </Compile> | 184 | </Compile> |
185 | <Compile Include="Core\Utilities\CurrentDirectory.cs"> | 185 | <Compile Include="Core\Utilities\Log.cs"> |
186 | <SubType>Code</SubType> | 186 | <SubType>Code</SubType> |
187 | </Compile> | 187 | </Compile> |
188 | <Compile Include="Core\Utilities\Helper.cs"> | 188 | <Compile Include="Core\Utilities\CommandLineCollection.cs"> |
189 | <SubType>Code</SubType> | 189 | <SubType>Code</SubType> |
190 | </Compile> | 190 | </Compile> |
191 | <Compile Include="Core\Utilities\Log.cs"> | 191 | <Compile Include="Core\Utilities\CurrentDirectory.cs"> |
192 | <SubType>Code</SubType> | 192 | <SubType>Code</SubType> |
193 | </Compile> | 193 | </Compile> |
194 | <Compile Include="Properties\AssemblyInfo.cs"> | 194 | <Compile Include="Properties\AssemblyInfo.cs"> |
diff --git a/Prebuild/src/Prebuild.csproj.user b/Prebuild/src/Prebuild.csproj.user index 9bfaf67..082d673 100644 --- a/Prebuild/src/Prebuild.csproj.user +++ b/Prebuild/src/Prebuild.csproj.user | |||
@@ -2,7 +2,7 @@ | |||
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
5 | <ReferencePath>C:\New Folder\second-life-viewer\opensim-dailys2\opensim26-05\branches\Sugilite\bin\</ReferencePath> | 5 | <ReferencePath>C:\sugilite\bin\</ReferencePath> |
6 | <LastOpenVersion>8.0.50727</LastOpenVersion> | 6 | <LastOpenVersion>8.0.50727</LastOpenVersion> |
7 | <ProjectView>ProjectFiles</ProjectView> | 7 | <ProjectView>ProjectFiles</ProjectView> |
8 | <ProjectTrust>0</ProjectTrust> | 8 | <ProjectTrust>0</ProjectTrust> |
diff --git a/Prebuild/src/Prebuild.exe.build b/Prebuild/src/Prebuild.exe.build index 43f5516..f2c8cab 100644 --- a/Prebuild/src/Prebuild.exe.build +++ b/Prebuild/src/Prebuild.exe.build | |||
@@ -14,42 +14,42 @@ | |||
14 | </resources> | 14 | </resources> |
15 | <sources failonempty="true"> | 15 | <sources failonempty="true"> |
16 | <include name="Prebuild.cs" /> | 16 | <include name="Prebuild.cs" /> |
17 | <include name="Core/FatalException.cs" /> | ||
18 | <include name="Core/Kernel.cs" /> | 17 | <include name="Core/Kernel.cs" /> |
19 | <include name="Core/UnknownLanguageException.cs" /> | 18 | <include name="Core/UnknownLanguageException.cs" /> |
20 | <include name="Core/WarningException.cs" /> | 19 | <include name="Core/WarningException.cs" /> |
21 | <include name="Core/Attributes/DataNodeAttribute.cs" /> | 20 | <include name="Core/FatalException.cs" /> |
21 | <include name="Core/Interfaces/ITarget.cs" /> | ||
22 | <include name="Core/Interfaces/IDataNode.cs" /> | ||
22 | <include name="Core/Attributes/OptionNodeAttribute.cs" /> | 23 | <include name="Core/Attributes/OptionNodeAttribute.cs" /> |
24 | <include name="Core/Attributes/DataNodeAttribute.cs" /> | ||
23 | <include name="Core/Attributes/TargetAttribute.cs" /> | 25 | <include name="Core/Attributes/TargetAttribute.cs" /> |
24 | <include name="Core/Interfaces/IDataNode.cs" /> | 26 | <include name="Core/Nodes/ProjectNode.cs" /> |
25 | <include name="Core/Interfaces/ITarget.cs" /> | ||
26 | <include name="Core/Nodes/ConfigurationNode.cs" /> | 27 | <include name="Core/Nodes/ConfigurationNode.cs" /> |
27 | <include name="Core/Nodes/DataNode.cs" /> | 28 | <include name="Core/Nodes/DataNode.cs" /> |
28 | <include name="Core/Nodes/ExcludeNode.cs" /> | 29 | <include name="Core/Nodes/ExcludeNode.cs" /> |
29 | <include name="Core/Nodes/FileNode.cs" /> | ||
30 | <include name="Core/Nodes/FilesNode.cs" /> | ||
31 | <include name="Core/Nodes/MatchNode.cs" /> | ||
32 | <include name="Core/Nodes/OptionsNode.cs" /> | 30 | <include name="Core/Nodes/OptionsNode.cs" /> |
33 | <include name="Core/Nodes/ProcessNode.cs" /> | ||
34 | <include name="Core/Nodes/ProjectNode.cs" /> | ||
35 | <include name="Core/Nodes/ReferenceNode.cs" /> | ||
36 | <include name="Core/Nodes/ReferencePathNode.cs" /> | 31 | <include name="Core/Nodes/ReferencePathNode.cs" /> |
32 | <include name="Core/Nodes/MatchNode.cs" /> | ||
37 | <include name="Core/Nodes/SolutionNode.cs" /> | 33 | <include name="Core/Nodes/SolutionNode.cs" /> |
38 | <include name="Core/Parse/IfContext.cs" /> | 34 | <include name="Core/Nodes/ProcessNode.cs" /> |
39 | <include name="Core/Parse/Preprocessor.cs" /> | 35 | <include name="Core/Nodes/ReferenceNode.cs" /> |
40 | <include name="Core/Targets/AutotoolsTarget.cs" /> | 36 | <include name="Core/Nodes/FileNode.cs" /> |
37 | <include name="Core/Nodes/FilesNode.cs" /> | ||
41 | <include name="Core/Targets/DebugTarget.cs" /> | 38 | <include name="Core/Targets/DebugTarget.cs" /> |
42 | <include name="Core/Targets/MonoDevelopTarget.cs" /> | 39 | <include name="Core/Targets/MonoDevelopTarget.cs" /> |
43 | <include name="Core/Targets/NAntTarget.cs" /> | 40 | <include name="Core/Targets/AutotoolsTarget.cs" /> |
44 | <include name="Core/Targets/SharpDevelop2Target.cs" /> | ||
45 | <include name="Core/Targets/SharpDevelopTarget.cs" /> | 41 | <include name="Core/Targets/SharpDevelopTarget.cs" /> |
46 | <include name="Core/Targets/VS2002Target.cs" /> | 42 | <include name="Core/Targets/VS2002Target.cs" /> |
47 | <include name="Core/Targets/VS2003Target.cs" /> | 43 | <include name="Core/Targets/VS2003Target.cs" /> |
44 | <include name="Core/Targets/SharpDevelop2Target.cs" /> | ||
48 | <include name="Core/Targets/VS2005Target.cs" /> | 45 | <include name="Core/Targets/VS2005Target.cs" /> |
49 | <include name="Core/Utilities/CommandLineCollection.cs" /> | 46 | <include name="Core/Targets/NAntTarget.cs" /> |
50 | <include name="Core/Utilities/CurrentDirectory.cs" /> | 47 | <include name="Core/Parse/IfContext.cs" /> |
48 | <include name="Core/Parse/Preprocessor.cs" /> | ||
51 | <include name="Core/Utilities/Helper.cs" /> | 49 | <include name="Core/Utilities/Helper.cs" /> |
52 | <include name="Core/Utilities/Log.cs" /> | 50 | <include name="Core/Utilities/Log.cs" /> |
51 | <include name="Core/Utilities/CommandLineCollection.cs" /> | ||
52 | <include name="Core/Utilities/CurrentDirectory.cs" /> | ||
53 | <include name="Properties/AssemblyInfo.cs" /> | 53 | <include name="Properties/AssemblyInfo.cs" /> |
54 | </sources> | 54 | </sources> |
55 | <references basedir="${project::get-base-directory()}"> | 55 | <references basedir="${project::get-base-directory()}"> |