diff options
Diffstat (limited to '')
148 files changed, 619 insertions, 776 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index ae299a4..eaa4788 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -26,7 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Net; | 29 | using log4net.Config; |
30 | using Nini.Config; | 30 | using Nini.Config; |
31 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Framework.Console; | 32 | using OpenSim.Framework.Console; |
@@ -44,7 +44,7 @@ namespace OpenSim | |||
44 | // First line | 44 | // First line |
45 | AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | 45 | AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); |
46 | 46 | ||
47 | log4net.Config.XmlConfigurator.Configure(); | 47 | XmlConfigurator.Configure(); |
48 | 48 | ||
49 | Console.WriteLine("OpenSim " + VersionInfo.Version + "\n"); | 49 | Console.WriteLine("OpenSim " + VersionInfo.Version + "\n"); |
50 | 50 | ||
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 14cbe13..aa08f81 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -29,10 +29,13 @@ using System; | |||
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.IO; | 31 | using System.IO; |
32 | using System.Net; | ||
33 | using System.Reflection; | ||
32 | using System.Text; | 34 | using System.Text; |
33 | using System.Threading; | 35 | using System.Threading; |
34 | using System.Timers; | 36 | using System.Timers; |
35 | using libsecondlife; | 37 | using libsecondlife; |
38 | using log4net; | ||
36 | using Mono.Addins; | 39 | using Mono.Addins; |
37 | using Nini.Config; | 40 | using Nini.Config; |
38 | using OpenSim.Framework; | 41 | using OpenSim.Framework; |
@@ -47,7 +50,7 @@ using OpenSim.Region.Environment; | |||
47 | using OpenSim.Region.Environment.Interfaces; | 50 | using OpenSim.Region.Environment.Interfaces; |
48 | using OpenSim.Region.Environment.Scenes; | 51 | using OpenSim.Region.Environment.Scenes; |
49 | using OpenSim.Region.Physics.Manager; | 52 | using OpenSim.Region.Physics.Manager; |
50 | using Timer = System.Timers.Timer; | 53 | using Timer=System.Timers.Timer; |
51 | 54 | ||
52 | namespace OpenSim | 55 | namespace OpenSim |
53 | { | 56 | { |
@@ -55,7 +58,7 @@ namespace OpenSim | |||
55 | 58 | ||
56 | public class OpenSimMain : RegionApplicationBase, conscmd_callback | 59 | public class OpenSimMain : RegionApplicationBase, conscmd_callback |
57 | { | 60 | { |
58 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 61 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
59 | private string proxyUrl; | 62 | private string proxyUrl; |
60 | private int proxyOffset = 0; | 63 | private int proxyOffset = 0; |
61 | 64 | ||
@@ -757,7 +760,7 @@ namespace OpenSim | |||
757 | } | 760 | } |
758 | else | 761 | else |
759 | { | 762 | { |
760 | m_sceneManager.CurrentScene.SetSceneCoreDebug(!System.Convert.ToBoolean(cmdparams[0]), !System.Convert.ToBoolean(cmdparams[1]), !System.Convert.ToBoolean(cmdparams[2])); | 763 | m_sceneManager.CurrentScene.SetSceneCoreDebug(!Convert.ToBoolean(cmdparams[0]), !Convert.ToBoolean(cmdparams[1]), !Convert.ToBoolean(cmdparams[2])); |
761 | } | 764 | } |
762 | } | 765 | } |
763 | else | 766 | else |
@@ -813,7 +816,7 @@ namespace OpenSim | |||
813 | // m_console.Notice("THREAD", _tc + ": ID: " + pt.Id + ", Started: " + pt.StartTime.ToString() + ", CPU time: " + pt.TotalProcessorTime + ", Pri: " + pt.BasePriority.ToString() + ", State: " + pt.ThreadState.ToString()); | 816 | // m_console.Notice("THREAD", _tc + ": ID: " + pt.Id + ", Started: " + pt.StartTime.ToString() + ", CPU time: " + pt.TotalProcessorTime + ", Pri: " + pt.BasePriority.ToString() + ", State: " + pt.ThreadState.ToString()); |
814 | // } | 817 | // } |
815 | 818 | ||
816 | List<Thread> threads = OpenSim.Framework.ThreadTracker.GetThreads(); | 819 | List<Thread> threads = ThreadTracker.GetThreads(); |
817 | if (threads == null) | 820 | if (threads == null) |
818 | { | 821 | { |
819 | m_console.Notice("THREAD", "Thread tracking is only enabled in DEBUG mode."); | 822 | m_console.Notice("THREAD", "Thread tracking is only enabled in DEBUG mode."); |
@@ -1056,7 +1059,7 @@ namespace OpenSim | |||
1056 | case "unload": | 1059 | case "unload": |
1057 | if (cmdparams.Length > 1) | 1060 | if (cmdparams.Length > 1) |
1058 | { | 1061 | { |
1059 | foreach (IRegionModule rm in new System.Collections.ArrayList(m_moduleLoader.GetLoadedSharedModules)) | 1062 | foreach (IRegionModule rm in new ArrayList(m_moduleLoader.GetLoadedSharedModules)) |
1060 | { | 1063 | { |
1061 | if (rm.Name.ToLower() == cmdparams[1].ToLower()) | 1064 | if (rm.Name.ToLower() == cmdparams[1].ToLower()) |
1062 | { | 1065 | { |
@@ -1069,7 +1072,7 @@ namespace OpenSim | |||
1069 | case "load": | 1072 | case "load": |
1070 | if (cmdparams.Length > 1) | 1073 | if (cmdparams.Length > 1) |
1071 | { | 1074 | { |
1072 | foreach (Scene s in new System.Collections.ArrayList(m_sceneManager.Scenes)) | 1075 | foreach (Scene s in new ArrayList(m_sceneManager.Scenes)) |
1073 | { | 1076 | { |
1074 | 1077 | ||
1075 | m_console.Notice("Loading module: " + cmdparams[1]); | 1078 | m_console.Notice("Loading module: " + cmdparams[1]); |
@@ -1142,7 +1145,7 @@ namespace OpenSim | |||
1142 | { | 1145 | { |
1143 | RegionInfo regionInfo = m_sceneManager.GetRegionInfo(presence.RegionHandle); | 1146 | RegionInfo regionInfo = m_sceneManager.GetRegionInfo(presence.RegionHandle); |
1144 | string regionName; | 1147 | string regionName; |
1145 | System.Net.EndPoint ep = null; | 1148 | EndPoint ep = null; |
1146 | 1149 | ||
1147 | if (regionInfo == null) | 1150 | if (regionInfo == null) |
1148 | { | 1151 | { |
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 292f7f6..7ff1f23 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -29,17 +29,18 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Net; | 30 | using System.Net; |
31 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
32 | using System.Reflection; | ||
32 | using System.Text; | 33 | using System.Text; |
33 | using System.Threading; | 34 | using System.Threading; |
34 | using System.Timers; | 35 | using System.Timers; |
35 | using Axiom.Math; | 36 | using Axiom.Math; |
36 | using libsecondlife; | 37 | using libsecondlife; |
37 | using libsecondlife.Packets; | 38 | using libsecondlife.Packets; |
39 | using log4net; | ||
38 | using OpenSim.Framework; | 40 | using OpenSim.Framework; |
39 | using OpenSim.Framework.Communications.Cache; | 41 | using OpenSim.Framework.Communications.Cache; |
40 | using OpenSim.Framework.Console; | ||
41 | using OpenSim.Region.Environment.Scenes; | 42 | using OpenSim.Region.Environment.Scenes; |
42 | using Timer = System.Timers.Timer; | 43 | using Timer=System.Timers.Timer; |
43 | 44 | ||
44 | namespace OpenSim.Region.ClientStack | 45 | namespace OpenSim.Region.ClientStack |
45 | { | 46 | { |
@@ -51,7 +52,7 @@ namespace OpenSim.Region.ClientStack | |||
51 | /// </summary> | 52 | /// </summary> |
52 | public class ClientView : IClientAPI | 53 | public class ClientView : IClientAPI |
53 | { | 54 | { |
54 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 55 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
55 | 56 | ||
56 | // ~ClientView() | 57 | // ~ClientView() |
57 | // { | 58 | // { |
@@ -341,7 +342,7 @@ namespace OpenSim.Region.ClientStack | |||
341 | m_clientThread.Name = "ClientThread"; | 342 | m_clientThread.Name = "ClientThread"; |
342 | m_clientThread.IsBackground = true; | 343 | m_clientThread.IsBackground = true; |
343 | m_clientThread.Start(); | 344 | m_clientThread.Start(); |
344 | OpenSim.Framework.ThreadTracker.Add(m_clientThread); | 345 | ThreadTracker.Add(m_clientThread); |
345 | } | 346 | } |
346 | 347 | ||
347 | public void SetDebug(int newDebug) | 348 | public void SetDebug(int newDebug) |
diff --git a/OpenSim/Region/ClientStack/PacketServer.cs b/OpenSim/Region/ClientStack/PacketServer.cs index 485c013..f9e3dc8 100644 --- a/OpenSim/Region/ClientStack/PacketServer.cs +++ b/OpenSim/Region/ClientStack/PacketServer.cs | |||
@@ -25,7 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Net; | 28 | using System.Net; |
30 | using System.Net.Sockets; | 29 | using System.Net.Sockets; |
31 | using libsecondlife; | 30 | using libsecondlife; |
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 2b023a6..bc0bea3 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -25,10 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Net; | 29 | using System.Net; |
30 | using System.Reflection; | ||
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
32 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Communications; | 34 | using OpenSim.Framework.Communications; |
34 | using OpenSim.Framework.Communications.Cache; | 35 | using OpenSim.Framework.Communications.Cache; |
@@ -42,8 +43,8 @@ namespace OpenSim.Region.ClientStack | |||
42 | { | 43 | { |
43 | public abstract class RegionApplicationBase : BaseOpenSimServer | 44 | public abstract class RegionApplicationBase : BaseOpenSimServer |
44 | { | 45 | { |
45 | private static readonly log4net.ILog m_log | 46 | private static readonly ILog m_log |
46 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 47 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
47 | 48 | ||
48 | protected AssetCache m_assetCache; | 49 | protected AssetCache m_assetCache; |
49 | protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>(); | 50 | protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>(); |
diff --git a/OpenSim/Region/ClientStack/UDPServer.cs b/OpenSim/Region/ClientStack/UDPServer.cs index 7a4cc97..7c4c03c 100644 --- a/OpenSim/Region/ClientStack/UDPServer.cs +++ b/OpenSim/Region/ClientStack/UDPServer.cs | |||
@@ -26,20 +26,20 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
31 | using System.Net; | 30 | using System.Net; |
32 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
32 | using System.Reflection; | ||
33 | using libsecondlife.Packets; | 33 | using libsecondlife.Packets; |
34 | using log4net; | ||
34 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Communications.Cache; | 36 | using OpenSim.Framework.Communications.Cache; |
36 | using OpenSim.Framework.Console; | ||
37 | 37 | ||
38 | namespace OpenSim.Region.ClientStack | 38 | namespace OpenSim.Region.ClientStack |
39 | { | 39 | { |
40 | public class UDPServer : ClientStackNetworkHandler | 40 | public class UDPServer : ClientStackNetworkHandler |
41 | { | 41 | { |
42 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 43 | ||
44 | protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>(); | 44 | protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>(); |
45 | public Dictionary<uint, EndPoint> clientCircuits_reverse = new Dictionary<uint, EndPoint>(); | 45 | public Dictionary<uint, EndPoint> clientCircuits_reverse = new Dictionary<uint, EndPoint>(); |
diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index f5a5e83..2960a62 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |||
@@ -25,18 +25,20 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections; | 29 | using System.Collections; |
29 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
30 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
31 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
32 | using OpenSim.Framework.Communications; | 35 | using OpenSim.Framework.Communications; |
33 | using OpenSim.Framework.Console; | ||
34 | 36 | ||
35 | namespace OpenSim.Region.Communications.Local | 37 | namespace OpenSim.Region.Communications.Local |
36 | { | 38 | { |
37 | public class LocalBackEndServices : IGridServices, IInterRegionCommunications | 39 | public class LocalBackEndServices : IGridServices, IInterRegionCommunications |
38 | { | 40 | { |
39 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | 42 | ||
41 | protected Dictionary<ulong, RegionInfo> m_regions = new Dictionary<ulong, RegionInfo>(); | 43 | protected Dictionary<ulong, RegionInfo> m_regions = new Dictionary<ulong, RegionInfo>(); |
42 | 44 | ||
@@ -47,7 +49,7 @@ namespace OpenSim.Region.Communications.Local | |||
47 | 49 | ||
48 | private Dictionary<string, string> m_queuedGridSettings = new Dictionary<string, string>(); | 50 | private Dictionary<string, string> m_queuedGridSettings = new Dictionary<string, string>(); |
49 | 51 | ||
50 | public string _gdebugRegionName = System.String.Empty; | 52 | public string _gdebugRegionName = String.Empty; |
51 | 53 | ||
52 | bool m_bAvailable=true; | 54 | bool m_bAvailable=true; |
53 | 55 | ||
@@ -67,7 +69,7 @@ namespace OpenSim.Region.Communications.Local | |||
67 | set { _gdebugRegionName = value; } | 69 | set { _gdebugRegionName = value; } |
68 | } | 70 | } |
69 | 71 | ||
70 | public string _rdebugRegionName = System.String.Empty; | 72 | public string _rdebugRegionName = String.Empty; |
71 | 73 | ||
72 | public string rdebugRegionName | 74 | public string rdebugRegionName |
73 | { | 75 | { |
diff --git a/OpenSim/Region/Communications/Local/LocalInventoryService.cs b/OpenSim/Region/Communications/Local/LocalInventoryService.cs index dafd637..a567eeb 100644 --- a/OpenSim/Region/Communications/Local/LocalInventoryService.cs +++ b/OpenSim/Region/Communications/Local/LocalInventoryService.cs | |||
@@ -26,7 +26,9 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.Reflection; | ||
29 | using libsecondlife; | 30 | using libsecondlife; |
31 | using log4net; | ||
30 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Communications; | 33 | using OpenSim.Framework.Communications; |
32 | using OpenSim.Framework.Communications.Cache; | 34 | using OpenSim.Framework.Communications.Cache; |
@@ -39,8 +41,8 @@ namespace OpenSim.Region.Communications.Local | |||
39 | /// </summary> | 41 | /// </summary> |
40 | public class LocalInventoryService : InventoryServiceBase | 42 | public class LocalInventoryService : InventoryServiceBase |
41 | { | 43 | { |
42 | private static readonly log4net.ILog m_log | 44 | private static readonly ILog m_log |
43 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
44 | 46 | ||
45 | public override void RequestInventoryForUser(LLUUID userID, InventoryReceiptCallback callback) | 47 | public override void RequestInventoryForUser(LLUUID userID, InventoryReceiptCallback callback) |
46 | { | 48 | { |
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 79bf9e5..c4823f4 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -28,14 +28,11 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
31 | using libsecondlife; | 32 | using libsecondlife; |
32 | 33 | using log4net; | |
33 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Communications.Cache; | ||
35 | using OpenSim.Framework.Console; | ||
36 | using OpenSim.Framework.Statistics; | ||
37 | using OpenSim.Framework.UserManagement; | 35 | using OpenSim.Framework.UserManagement; |
38 | using InventoryFolder=OpenSim.Framework.InventoryFolder; | ||
39 | 36 | ||
40 | namespace OpenSim.Region.Communications.Local | 37 | namespace OpenSim.Region.Communications.Local |
41 | { | 38 | { |
@@ -43,8 +40,8 @@ namespace OpenSim.Region.Communications.Local | |||
43 | 40 | ||
44 | public class LocalLoginService : LoginService | 41 | public class LocalLoginService : LoginService |
45 | { | 42 | { |
46 | private static readonly log4net.ILog m_log | 43 | private static readonly ILog m_log |
47 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 45 | ||
49 | private CommunicationsLocal m_Parent; | 46 | private CommunicationsLocal m_Parent; |
50 | 47 | ||
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index c543762..29de8fd 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs | |||
@@ -29,7 +29,6 @@ using System; | |||
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Communications; | 31 | using OpenSim.Framework.Communications; |
32 | using OpenSim.Framework.Statistics; | ||
33 | using OpenSim.Framework.UserManagement; | 32 | using OpenSim.Framework.UserManagement; |
34 | 33 | ||
35 | namespace OpenSim.Region.Communications.Local | 34 | namespace OpenSim.Region.Communications.Local |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 1135ddd..eada868 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -30,15 +30,17 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Net.Sockets; | 32 | using System.Net.Sockets; |
33 | using System.Reflection; | ||
33 | using System.Runtime.Remoting; | 34 | using System.Runtime.Remoting; |
34 | using System.Runtime.Remoting.Channels; | 35 | using System.Runtime.Remoting.Channels; |
35 | using System.Runtime.Remoting.Channels.Tcp; | 36 | using System.Runtime.Remoting.Channels.Tcp; |
36 | using System.Security.Authentication; | 37 | using System.Security.Authentication; |
38 | using System.Threading; | ||
37 | using libsecondlife; | 39 | using libsecondlife; |
40 | using log4net; | ||
38 | using Nwc.XmlRpc; | 41 | using Nwc.XmlRpc; |
39 | using OpenSim.Framework; | 42 | using OpenSim.Framework; |
40 | using OpenSim.Framework.Communications; | 43 | using OpenSim.Framework.Communications; |
41 | using OpenSim.Framework.Console; | ||
42 | using OpenSim.Framework.Servers; | 44 | using OpenSim.Framework.Servers; |
43 | using OpenSim.Region.Communications.Local; | 45 | using OpenSim.Region.Communications.Local; |
44 | 46 | ||
@@ -46,7 +48,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
46 | { | 48 | { |
47 | public class OGS1GridServices : IGridServices, IInterRegionCommunications | 49 | public class OGS1GridServices : IGridServices, IInterRegionCommunications |
48 | { | 50 | { |
49 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 51 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
50 | 52 | ||
51 | private LocalBackEndServices m_localBackend = new LocalBackEndServices(); | 53 | private LocalBackEndServices m_localBackend = new LocalBackEndServices(); |
52 | private Dictionary<ulong, RegionInfo> m_remoteRegionInfoCache = new Dictionary<ulong, RegionInfo>(); | 54 | private Dictionary<ulong, RegionInfo> m_remoteRegionInfoCache = new Dictionary<ulong, RegionInfo>(); |
@@ -1461,7 +1463,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1461 | Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); | 1463 | Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); |
1462 | IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket); | 1464 | IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket); |
1463 | ar.AsyncWaitHandle.WaitOne(timeOut*1000, false); | 1465 | ar.AsyncWaitHandle.WaitOne(timeOut*1000, false); |
1464 | System.Threading.Thread.Sleep(500); | 1466 | Thread.Sleep(500); |
1465 | } | 1467 | } |
1466 | 1468 | ||
1467 | public bool Available | 1469 | public bool Available |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InterSimComms.cs b/OpenSim/Region/Communications/OGS1/OGS1InterSimComms.cs index 2e106d7..8285fb1 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InterSimComms.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InterSimComms.cs | |||
@@ -26,8 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | ||
29 | using System.Runtime.Remoting; | 30 | using System.Runtime.Remoting; |
30 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
31 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
32 | 34 | ||
33 | namespace OpenSim.Region.Communications.OGS1 | 35 | namespace OpenSim.Region.Communications.OGS1 |
@@ -153,7 +155,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
153 | 155 | ||
154 | public class OGS1InterRegionRemoting : MarshalByRefObject | 156 | public class OGS1InterRegionRemoting : MarshalByRefObject |
155 | { | 157 | { |
156 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 158 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
157 | 159 | ||
158 | public OGS1InterRegionRemoting() | 160 | public OGS1InterRegionRemoting() |
159 | { | 161 | { |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index fbe905c..e0167a7 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | |||
@@ -27,19 +27,21 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Net; | ||
31 | using System.Reflection; | ||
30 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
31 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
32 | using OpenSim.Framework.Communications; | 35 | using OpenSim.Framework.Communications; |
33 | using OpenSim.Framework.Communications.Cache; | 36 | using OpenSim.Framework.Communications.Cache; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Framework.Servers; | 37 | using OpenSim.Framework.Servers; |
36 | 38 | ||
37 | namespace OpenSim.Region.Communications.OGS1 | 39 | namespace OpenSim.Region.Communications.OGS1 |
38 | { | 40 | { |
39 | public class OGS1InventoryService : IInventoryServices | 41 | public class OGS1InventoryService : IInventoryServices |
40 | { | 42 | { |
41 | private static readonly log4net.ILog m_log | 43 | private static readonly ILog m_log |
42 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 45 | ||
44 | private string _inventoryServerUrl; | 46 | private string _inventoryServerUrl; |
45 | private Dictionary<LLUUID, InventoryRequest> m_RequestingInventory = new Dictionary<LLUUID, InventoryRequest>(); | 47 | private Dictionary<LLUUID, InventoryRequest> m_RequestingInventory = new Dictionary<LLUUID, InventoryRequest>(); |
@@ -71,7 +73,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
71 | 73 | ||
72 | requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID); | 74 | requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID); |
73 | } | 75 | } |
74 | catch (System.Net.WebException e) | 76 | catch (WebException e) |
75 | { | 77 | { |
76 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Request inventory operation failed, {0} {1}", | 78 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Request inventory operation failed, {0} {1}", |
77 | e.Source, e.Message); | 79 | e.Source, e.Message); |
@@ -153,7 +155,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
153 | SynchronousRestObjectPoster.BeginPostObject<InventoryFolderBase, bool>( | 155 | SynchronousRestObjectPoster.BeginPostObject<InventoryFolderBase, bool>( |
154 | "POST", _inventoryServerUrl + "/NewFolder/", folder); | 156 | "POST", _inventoryServerUrl + "/NewFolder/", folder); |
155 | } | 157 | } |
156 | catch (System.Net.WebException e) | 158 | catch (WebException e) |
157 | { | 159 | { |
158 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory folder operation failed, {0} {1}", | 160 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory folder operation failed, {0} {1}", |
159 | e.Source, e.Message); | 161 | e.Source, e.Message); |
@@ -167,7 +169,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
167 | SynchronousRestObjectPoster.BeginPostObject<InventoryFolderBase, bool>( | 169 | SynchronousRestObjectPoster.BeginPostObject<InventoryFolderBase, bool>( |
168 | "POST", _inventoryServerUrl + "/MoveFolder/", folder); | 170 | "POST", _inventoryServerUrl + "/MoveFolder/", folder); |
169 | } | 171 | } |
170 | catch (System.Net.WebException e) | 172 | catch (WebException e) |
171 | { | 173 | { |
172 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Move inventory folder operation failed, {0} {1}", | 174 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Move inventory folder operation failed, {0} {1}", |
173 | e.Source, e.Message); | 175 | e.Source, e.Message); |
@@ -181,7 +183,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
181 | SynchronousRestObjectPoster.BeginPostObject<InventoryItemBase, bool>( | 183 | SynchronousRestObjectPoster.BeginPostObject<InventoryItemBase, bool>( |
182 | "POST", _inventoryServerUrl + "/NewItem/", item); | 184 | "POST", _inventoryServerUrl + "/NewItem/", item); |
183 | } | 185 | } |
184 | catch (System.Net.WebException e) | 186 | catch (WebException e) |
185 | { | 187 | { |
186 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory item operation failed, {0} {1}", | 188 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory item operation failed, {0} {1}", |
187 | e.Source, e.Message); | 189 | e.Source, e.Message); |
@@ -195,7 +197,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
195 | SynchronousRestObjectPoster.BeginPostObject<InventoryItemBase, bool>( | 197 | SynchronousRestObjectPoster.BeginPostObject<InventoryItemBase, bool>( |
196 | "POST", _inventoryServerUrl + "/DeleteItem/", item); | 198 | "POST", _inventoryServerUrl + "/DeleteItem/", item); |
197 | } | 199 | } |
198 | catch (System.Net.WebException e) | 200 | catch (WebException e) |
199 | { | 201 | { |
200 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Delete inventory item operation failed, {0} {1}", | 202 | m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Delete inventory item operation failed, {0} {1}", |
201 | e.Source, e.Message); | 203 | e.Source, e.Message); |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index c140213..56b0e8c 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -29,17 +29,18 @@ using System; | |||
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Reflection; | ||
32 | using System.Text.RegularExpressions; | 33 | using System.Text.RegularExpressions; |
33 | using libsecondlife; | 34 | using libsecondlife; |
35 | using log4net; | ||
34 | using Nwc.XmlRpc; | 36 | using Nwc.XmlRpc; |
35 | using OpenSim.Framework; | 37 | using OpenSim.Framework; |
36 | using OpenSim.Framework.Console; | ||
37 | 38 | ||
38 | namespace OpenSim.Region.Communications.OGS1 | 39 | namespace OpenSim.Region.Communications.OGS1 |
39 | { | 40 | { |
40 | public class OGS1UserServices : IUserService | 41 | public class OGS1UserServices : IUserService |
41 | { | 42 | { |
42 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 43 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 44 | ||
44 | private CommunicationsOGS1 m_parent; | 45 | private CommunicationsOGS1 m_parent; |
45 | 46 | ||
@@ -158,7 +159,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
158 | { | 159 | { |
159 | XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 3000); | 160 | XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 3000); |
160 | } | 161 | } |
161 | catch (System.Net.WebException) | 162 | catch (WebException) |
162 | { | 163 | { |
163 | m_log.Warn("[LOGOFF]: Unable to notify grid server of user logoff"); | 164 | m_log.Warn("[LOGOFF]: Unable to notify grid server of user logoff"); |
164 | } | 165 | } |
diff --git a/OpenSim/Region/DataSnapshot/DataRequestHandler.cs b/OpenSim/Region/DataSnapshot/DataRequestHandler.cs index a59d86a..7e096df 100644 --- a/OpenSim/Region/DataSnapshot/DataRequestHandler.cs +++ b/OpenSim/Region/DataSnapshot/DataRequestHandler.cs | |||
@@ -26,14 +26,11 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Collections; | 29 | using System.Collections; |
32 | using System.Text; | 30 | using System.Reflection; |
33 | using System.Xml; | 31 | using System.Xml; |
32 | using log4net; | ||
34 | using OpenSim.Region.Environment.Scenes; | 33 | using OpenSim.Region.Environment.Scenes; |
35 | using OpenSim.Framework.Servers; | ||
36 | using OpenSim.Framework.Console; | ||
37 | 34 | ||
38 | namespace OpenSim.Region.DataSnapshot | 35 | namespace OpenSim.Region.DataSnapshot |
39 | { | 36 | { |
@@ -41,7 +38,7 @@ namespace OpenSim.Region.DataSnapshot | |||
41 | { | 38 | { |
42 | private Scene m_scene = null; | 39 | private Scene m_scene = null; |
43 | private DataSnapshotManager m_externalData = null; | 40 | private DataSnapshotManager m_externalData = null; |
44 | private log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 42 | ||
46 | public DataRequestHandler(Scene scene, DataSnapshotManager externalData) | 43 | public DataRequestHandler(Scene scene, DataSnapshotManager externalData) |
47 | { | 44 | { |
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs index cb9ce44..682763b 100644 --- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs +++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | |||
@@ -28,18 +28,18 @@ | |||
28 | 28 | ||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
32 | using System.Xml; | ||
33 | using System.IO; | 31 | using System.IO; |
32 | using System.Net; | ||
33 | using System.Reflection; | ||
34 | using System.Text; | 34 | using System.Text; |
35 | using System.Timers; | 35 | using System.Timers; |
36 | using OpenSim.Framework; | 36 | using System.Xml; |
37 | using libsecondlife; | ||
38 | using log4net; | ||
39 | using Nini.Config; | ||
37 | using OpenSim.Framework.Communications; | 40 | using OpenSim.Framework.Communications; |
38 | using OpenSim.Region.Environment.Interfaces; | 41 | using OpenSim.Region.Environment.Interfaces; |
39 | using OpenSim.Region.Environment.Scenes; | 42 | using OpenSim.Region.Environment.Scenes; |
40 | using Nini.Config; | ||
41 | using libsecondlife; | ||
42 | using libsecondlife.Packets; | ||
43 | 43 | ||
44 | namespace OpenSim.Region.DataSnapshot | 44 | namespace OpenSim.Region.DataSnapshot |
45 | { | 45 | { |
@@ -47,13 +47,13 @@ namespace OpenSim.Region.DataSnapshot | |||
47 | { | 47 | { |
48 | #region Class members | 48 | #region Class members |
49 | private List<Scene> m_scenes = new List<Scene>(); | 49 | private List<Scene> m_scenes = new List<Scene>(); |
50 | private log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 50 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
51 | private bool m_enabled = false; | 51 | private bool m_enabled = false; |
52 | private bool m_configLoaded = false; | 52 | private bool m_configLoaded = false; |
53 | internal object m_syncInit = new object(); | 53 | internal object m_syncInit = new object(); |
54 | private DataRequestHandler m_requests = null; | 54 | private DataRequestHandler m_requests = null; |
55 | private Dictionary<Scene, List<IDataSnapshotProvider>> m_dataproviders = new Dictionary<Scene, List<IDataSnapshotProvider>>(); | 55 | private Dictionary<Scene, List<IDataSnapshotProvider>> m_dataproviders = new Dictionary<Scene, List<IDataSnapshotProvider>>(); |
56 | private Dictionary<String, String> m_gridinfo = new Dictionary<String, String>(); | 56 | private Dictionary<string, string> m_gridinfo = new Dictionary<string, string>(); |
57 | //private int m_oldestSnapshot = 0; | 57 | //private int m_oldestSnapshot = 0; |
58 | private int m_maxSnapshots = 500; | 58 | private int m_maxSnapshots = 500; |
59 | private int m_lastSnapshot = 0; | 59 | private int m_lastSnapshot = 0; |
@@ -63,7 +63,7 @@ namespace OpenSim.Region.DataSnapshot | |||
63 | private string m_hostname = "127.0.0.1"; | 63 | private string m_hostname = "127.0.0.1"; |
64 | private Timer m_periodic = null; | 64 | private Timer m_periodic = null; |
65 | private int m_period = 60; // in seconds | 65 | private int m_period = 60; // in seconds |
66 | private List<String> m_disabledModules = new List<String>(); | 66 | private List<string> m_disabledModules = new List<string>(); |
67 | #endregion | 67 | #endregion |
68 | 68 | ||
69 | #region IRegionModule | 69 | #region IRegionModule |
@@ -72,7 +72,7 @@ namespace OpenSim.Region.DataSnapshot | |||
72 | 72 | ||
73 | } | 73 | } |
74 | 74 | ||
75 | public void Initialise(Scene scene, Nini.Config.IConfigSource config) | 75 | public void Initialise(Scene scene, IConfigSource config) |
76 | { | 76 | { |
77 | if (!m_scenes.Contains(scene)) | 77 | if (!m_scenes.Contains(scene)) |
78 | m_scenes.Add(scene); | 78 | m_scenes.Add(scene); |
@@ -495,7 +495,7 @@ namespace OpenSim.Region.DataSnapshot | |||
495 | { | 495 | { |
496 | reply = cli.Request(); | 496 | reply = cli.Request(); |
497 | } | 497 | } |
498 | catch (System.Net.WebException) | 498 | catch (WebException) |
499 | { | 499 | { |
500 | m_log.Warn("[DATASNAPSHOT] Unable to notify " + url); | 500 | m_log.Warn("[DATASNAPSHOT] Unable to notify " + url); |
501 | } | 501 | } |
@@ -514,7 +514,7 @@ namespace OpenSim.Region.DataSnapshot | |||
514 | m_log.Warn("[DATASNAPSHOT] Unable to decode reply from data service. Ignoring. " + e.StackTrace); | 514 | m_log.Warn("[DATASNAPSHOT] Unable to decode reply from data service. Ignoring. " + e.StackTrace); |
515 | } | 515 | } |
516 | // This is not quite working, so... | 516 | // This is not quite working, so... |
517 | string responseStr = System.Text.ASCIIEncoding.UTF8.GetString(response); | 517 | string responseStr = ASCIIEncoding.UTF8.GetString(response); |
518 | m_log.Info("[DATASNAPSHOT] data service notified: " + url); | 518 | m_log.Info("[DATASNAPSHOT] data service notified: " + url); |
519 | } | 519 | } |
520 | 520 | ||
diff --git a/OpenSim/Region/DataSnapshot/EstateSnapshot.cs b/OpenSim/Region/DataSnapshot/EstateSnapshot.cs index b517c16..20ba27c 100644 --- a/OpenSim/Region/DataSnapshot/EstateSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/EstateSnapshot.cs | |||
@@ -26,16 +26,9 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using System.Xml; | 29 | using System.Xml; |
32 | using OpenSim.Region.Environment.Scenes; | ||
33 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
34 | using OpenSim.Framework; | ||
35 | using OpenSim.Framework.Console; | ||
36 | using OpenSim.Framework.Communications; | ||
37 | using libsecondlife; | 30 | using libsecondlife; |
38 | using libsecondlife.Packets; | 31 | using OpenSim.Region.Environment.Scenes; |
39 | 32 | ||
40 | namespace OpenSim.Region.DataSnapshot | 33 | namespace OpenSim.Region.DataSnapshot |
41 | { | 34 | { |
diff --git a/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshotProvider.cs b/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshotProvider.cs index 26124ce..8f580fc 100644 --- a/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshotProvider.cs +++ b/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshotProvider.cs | |||
@@ -26,12 +26,8 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using System.Xml; | 29 | using System.Xml; |
33 | using OpenSim.Region.Environment.Scenes; | 30 | using OpenSim.Region.Environment.Scenes; |
34 | using libsecondlife; | ||
35 | 31 | ||
36 | namespace OpenSim.Region.DataSnapshot | 32 | namespace OpenSim.Region.DataSnapshot |
37 | { | 33 | { |
diff --git a/OpenSim/Region/DataSnapshot/LandSnapshot.cs b/OpenSim/Region/DataSnapshot/LandSnapshot.cs index a82f4be..4c17513 100644 --- a/OpenSim/Region/DataSnapshot/LandSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/LandSnapshot.cs | |||
@@ -28,18 +28,14 @@ | |||
28 | 28 | ||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Text; | ||
32 | using System.Xml; | ||
33 | using System.Reflection; | 31 | using System.Reflection; |
34 | 32 | using System.Xml; | |
35 | using OpenSim.Region.Environment.Scenes; | ||
36 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
37 | using OpenSim.Region.Environment.Interfaces; | ||
38 | using OpenSim.Framework; | ||
39 | using OpenSim.Framework.Console; | ||
40 | using OpenSim.Framework.Communications; | ||
41 | using libsecondlife; | 33 | using libsecondlife; |
42 | using libsecondlife.Packets; | 34 | using log4net; |
35 | using OpenSim.Framework; | ||
36 | using OpenSim.Region.Environment.Interfaces; | ||
37 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
38 | using OpenSim.Region.Environment.Scenes; | ||
43 | 39 | ||
44 | namespace OpenSim.Region.DataSnapshot | 40 | namespace OpenSim.Region.DataSnapshot |
45 | { | 41 | { |
@@ -48,7 +44,7 @@ namespace OpenSim.Region.DataSnapshot | |||
48 | private Scene m_scene = null; | 44 | private Scene m_scene = null; |
49 | private DataSnapshotManager m_parent = null; | 45 | private DataSnapshotManager m_parent = null; |
50 | //private Dictionary<int, Land> m_landIndexed = new Dictionary<int, Land>(); | 46 | //private Dictionary<int, Land> m_landIndexed = new Dictionary<int, Land>(); |
51 | private log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 47 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
52 | 48 | ||
53 | #region Dead code | 49 | #region Dead code |
54 | 50 | ||
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs index 353a02b..d48ecfd 100644 --- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | |||
@@ -25,14 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using System.Xml; | ||
32 | using System.Reflection; | 28 | using System.Reflection; |
29 | using System.Xml; | ||
30 | using log4net; | ||
33 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
34 | using OpenSim.Framework; | ||
35 | using libsecondlife; | ||
36 | 32 | ||
37 | namespace OpenSim.Region.DataSnapshot | 33 | namespace OpenSim.Region.DataSnapshot |
38 | { | 34 | { |
@@ -40,7 +36,7 @@ namespace OpenSim.Region.DataSnapshot | |||
40 | { | 36 | { |
41 | private Scene m_scene = null; | 37 | private Scene m_scene = null; |
42 | private DataSnapshotManager m_parent = null; | 38 | private DataSnapshotManager m_parent = null; |
43 | private log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 39 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
44 | 40 | ||
45 | public void Initialize(Scene scene, DataSnapshotManager parent) | 41 | public void Initialize(Scene scene, DataSnapshotManager parent) |
46 | { | 42 | { |
diff --git a/OpenSim/Region/Environment/EstateManager.cs b/OpenSim/Region/Environment/EstateManager.cs index ba4f0c6..b3ffd10 100644 --- a/OpenSim/Region/Environment/EstateManager.cs +++ b/OpenSim/Region/Environment/EstateManager.cs | |||
@@ -27,11 +27,11 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | 30 | using System.Reflection; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
33 | using log4net; | ||
33 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
36 | 36 | ||
37 | namespace OpenSim.Region.Environment | 37 | namespace OpenSim.Region.Environment |
@@ -41,7 +41,7 @@ namespace OpenSim.Region.Environment | |||
41 | /// </summary> | 41 | /// </summary> |
42 | public class EstateManager | 42 | public class EstateManager |
43 | { | 43 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 45 | ||
46 | private Scene m_scene; | 46 | private Scene m_scene; |
47 | private RegionInfo m_regInfo; | 47 | private RegionInfo m_regInfo; |
diff --git a/OpenSim/Region/Environment/Interfaces/ICommand.cs b/OpenSim/Region/Environment/Interfaces/ICommand.cs index c119736..4eeb16c 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommand.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommand.cs | |||
@@ -25,16 +25,14 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System.Collections.Generic; |
29 | |||
30 | using OpenSim.Region.Environment.Modules.ModuleFramework; | ||
31 | 29 | ||
32 | namespace OpenSim.Region.Environment.Interfaces | 30 | namespace OpenSim.Region.Environment.Interfaces |
33 | { | 31 | { |
34 | public interface ICommand | 32 | public interface ICommand |
35 | { | 33 | { |
36 | void AddArgument(string name, string helptext, string type); | 34 | void AddArgument(string name, string helptext, string type); |
37 | System.Collections.Generic.Dictionary<string, string> Arguments { get; } | 35 | Dictionary<string, string> Arguments { get; } |
38 | string Help { get; } | 36 | string Help { get; } |
39 | string Name { get; } | 37 | string Name { get; } |
40 | void Run(object[] args); | 38 | void Run(object[] args); |
diff --git a/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs index 067c43a..c4ed942 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs | |||
@@ -25,12 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | using OpenSim.Region.Environment.Modules.ModuleFramework; | ||
33 | |||
34 | namespace OpenSim.Region.Environment.Interfaces | 28 | namespace OpenSim.Region.Environment.Interfaces |
35 | { | 29 | { |
36 | public interface ICommandableModule | 30 | public interface ICommandableModule |
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs index 7cc6ffb..c4102af 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommander.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | |||
30 | using OpenSim.Region.Environment.Modules.ModuleFramework; | ||
31 | |||
32 | namespace OpenSim.Region.Environment.Interfaces | 28 | namespace OpenSim.Region.Environment.Interfaces |
33 | { | 29 | { |
34 | public interface ICommander | 30 | public interface ICommander |
diff --git a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs index 98bab63..464a213 100644 --- a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs +++ b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs | |||
@@ -25,14 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Text; | ||
31 | |||
32 | using libsecondlife; | 29 | using libsecondlife; |
33 | using libsecondlife.Packets; | 30 | using libsecondlife.Packets; |
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Scenes; | ||
36 | 33 | ||
37 | namespace OpenSim.Region.Environment.Interfaces | 34 | namespace OpenSim.Region.Environment.Interfaces |
38 | { | 35 | { |
diff --git a/OpenSim/Region/Environment/Interfaces/ILandObject.cs b/OpenSim/Region/Environment/Interfaces/ILandObject.cs index 33ccddc..420ffc3 100644 --- a/OpenSim/Region/Environment/Interfaces/ILandObject.cs +++ b/OpenSim/Region/Environment/Interfaces/ILandObject.cs | |||
@@ -25,15 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Text; | ||
31 | |||
32 | using libsecondlife; | 29 | using libsecondlife; |
33 | using libsecondlife.Packets; | 30 | using libsecondlife.Packets; |
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | |||
36 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Scenes; | ||
37 | 33 | ||
38 | namespace OpenSim.Region.Environment.Interfaces | 34 | namespace OpenSim.Region.Environment.Interfaces |
39 | { | 35 | { |
diff --git a/OpenSim/Region/Environment/Interfaces/ITextureSender.cs b/OpenSim/Region/Environment/Interfaces/ITextureSender.cs index f262b9a..1b9e4eb 100644 --- a/OpenSim/Region/Environment/Interfaces/ITextureSender.cs +++ b/OpenSim/Region/Environment/Interfaces/ITextureSender.cs | |||
@@ -25,8 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | |||
30 | namespace OpenSim.Region.Environment.Interfaces | 28 | namespace OpenSim.Region.Environment.Interfaces |
31 | { | 29 | { |
32 | /// <summary> | 30 | /// <summary> |
diff --git a/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs index 358b56f..c7f1001 100644 --- a/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs +++ b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | |||
@@ -27,8 +27,6 @@ | |||
27 | 27 | ||
28 | using libsecondlife; | 28 | using libsecondlife; |
29 | using OpenSim.Region.Environment.Modules; | 29 | using OpenSim.Region.Environment.Modules; |
30 | using System.Collections; | ||
31 | using System.Collections.Generic; | ||
32 | 30 | ||
33 | namespace OpenSim.Region.Environment.Interfaces | 31 | namespace OpenSim.Region.Environment.Interfaces |
34 | { | 32 | { |
diff --git a/OpenSim/Region/Environment/ModuleLoader.cs b/OpenSim/Region/Environment/ModuleLoader.cs index 7fb8d8a..43ca7bd 100644 --- a/OpenSim/Region/Environment/ModuleLoader.cs +++ b/OpenSim/Region/Environment/ModuleLoader.cs | |||
@@ -29,8 +29,8 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using log4net; | ||
32 | using Nini.Config; | 33 | using Nini.Config; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Modules; | 35 | using OpenSim.Region.Environment.Modules; |
36 | using OpenSim.Region.Environment.Scenes; | 36 | using OpenSim.Region.Environment.Scenes; |
@@ -39,7 +39,7 @@ namespace OpenSim.Region.Environment | |||
39 | { | 39 | { |
40 | public class ModuleLoader | 40 | public class ModuleLoader |
41 | { | 41 | { |
42 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 43 | ||
44 | public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>(); | 44 | public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>(); |
45 | 45 | ||
diff --git a/OpenSim/Region/Environment/Modules/AgentAssetTransactionModule.cs b/OpenSim/Region/Environment/Modules/AgentAssetTransactionModule.cs index 7ae3eba..cec7192 100644 --- a/OpenSim/Region/Environment/Modules/AgentAssetTransactionModule.cs +++ b/OpenSim/Region/Environment/Modules/AgentAssetTransactionModule.cs | |||
@@ -27,7 +27,9 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
31 | using Nini.Config; | 33 | using Nini.Config; |
32 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
33 | using OpenSim.Region.Environment.Interfaces; | 35 | using OpenSim.Region.Environment.Interfaces; |
@@ -129,8 +131,8 @@ namespace OpenSim.Region.Environment.Modules | |||
129 | //should merge this classes and clean up | 131 | //should merge this classes and clean up |
130 | public class AgentAssetTransactionsManager | 132 | public class AgentAssetTransactionsManager |
131 | { | 133 | { |
132 | private static readonly log4net.ILog m_log | 134 | private static readonly ILog m_log |
133 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 135 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
134 | 136 | ||
135 | // Fields | 137 | // Fields |
136 | public Scene MyScene; | 138 | public Scene MyScene; |
diff --git a/OpenSim/Region/Environment/Modules/AssetDownloadModule.cs b/OpenSim/Region/Environment/Modules/AssetDownloadModule.cs index d5f1b36..97db31e 100644 --- a/OpenSim/Region/Environment/Modules/AssetDownloadModule.cs +++ b/OpenSim/Region/Environment/Modules/AssetDownloadModule.cs | |||
@@ -25,9 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Threading; | ||
31 | using libsecondlife; | 29 | using libsecondlife; |
32 | using libsecondlife.Packets; | 30 | using libsecondlife.Packets; |
33 | using Nini.Config; | 31 | using Nini.Config; |
diff --git a/OpenSim/Region/Environment/Modules/AsteriskVoiceModule.cs b/OpenSim/Region/Environment/Modules/AsteriskVoiceModule.cs index 52b9c3e..1b537c2 100644 --- a/OpenSim/Region/Environment/Modules/AsteriskVoiceModule.cs +++ b/OpenSim/Region/Environment/Modules/AsteriskVoiceModule.cs | |||
@@ -27,24 +27,25 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Reflection; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
32 | using Nini.Config; | 33 | using Nini.Config; |
33 | using Nwc.XmlRpc; | 34 | using Nwc.XmlRpc; |
34 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Communications.Cache; | 36 | using OpenSim.Framework.Communications.Cache; |
36 | using OpenSim.Framework.Servers; | 37 | using OpenSim.Framework.Servers; |
37 | using OpenSim.Region.Capabilities; | 38 | using OpenSim.Region.Capabilities; |
38 | using Caps = OpenSim.Region.Capabilities.Caps; | ||
39 | using OpenSim.Region.Environment.Interfaces; | 39 | using OpenSim.Region.Environment.Interfaces; |
40 | using OpenSim.Region.Environment.Scenes; | 40 | using OpenSim.Region.Environment.Scenes; |
41 | using Caps=OpenSim.Region.Capabilities.Caps; | ||
41 | 42 | ||
42 | namespace OpenSim.Region.Environment.Modules | 43 | namespace OpenSim.Region.Environment.Modules |
43 | { | 44 | { |
44 | public class AsteriskVoiceModule : IRegionModule | 45 | public class AsteriskVoiceModule : IRegionModule |
45 | { | 46 | { |
46 | private static readonly log4net.ILog m_log = | 47 | private static readonly ILog m_log = |
47 | log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 48 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 49 | ||
49 | private Scene m_scene; | 50 | private Scene m_scene; |
50 | private IConfig m_config; | 51 | private IConfig m_config; |
diff --git a/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs b/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs index e3ad297..44b3f8b 100644 --- a/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs +++ b/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs | |||
@@ -25,7 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Reflection; | ||
28 | using libsecondlife; | 30 | using libsecondlife; |
31 | using log4net; | ||
29 | using Nini.Config; | 32 | using Nini.Config; |
30 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
31 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
@@ -35,7 +38,7 @@ namespace OpenSim.Region.Environment.Modules | |||
35 | { | 38 | { |
36 | public class AvatarProfilesModule : IRegionModule | 39 | public class AvatarProfilesModule : IRegionModule |
37 | { | 40 | { |
38 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | private Scene m_scene; | 42 | private Scene m_scene; |
40 | 43 | ||
41 | public AvatarProfilesModule() | 44 | public AvatarProfilesModule() |
@@ -92,8 +95,8 @@ namespace OpenSim.Region.Environment.Modules | |||
92 | { | 95 | { |
93 | remoteClient.SendAvatarProperties(profile.ID, profile.AboutText, | 96 | remoteClient.SendAvatarProperties(profile.ID, profile.AboutText, |
94 | Util.ToDateTime(profile.Created).ToString(), | 97 | Util.ToDateTime(profile.Created).ToString(), |
95 | System.String.Empty, profile.FirstLifeAboutText, profile.CanDoMask, | 98 | String.Empty, profile.FirstLifeAboutText, profile.CanDoMask, |
96 | profile.FirstLifeImage, profile.Image, System.String.Empty, partner); | 99 | profile.FirstLifeImage, profile.Image, String.Empty, partner); |
97 | } | 100 | } |
98 | else | 101 | else |
99 | { | 102 | { |
diff --git a/OpenSim/Region/Environment/Modules/BetaGridLikeMoneyModule.cs b/OpenSim/Region/Environment/Modules/BetaGridLikeMoneyModule.cs index 0748719..d5b2ea2 100644 --- a/OpenSim/Region/Environment/Modules/BetaGridLikeMoneyModule.cs +++ b/OpenSim/Region/Environment/Modules/BetaGridLikeMoneyModule.cs | |||
@@ -30,16 +30,15 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Net.Sockets; | 32 | using System.Net.Sockets; |
33 | using System.Reflection; | ||
33 | using System.Xml; | 34 | using System.Xml; |
34 | using libsecondlife; | 35 | using libsecondlife; |
36 | using log4net; | ||
35 | using Nini.Config; | 37 | using Nini.Config; |
38 | using Nwc.XmlRpc; | ||
36 | using OpenSim.Framework; | 39 | using OpenSim.Framework; |
37 | using OpenSim.Region.Environment.Interfaces; | 40 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 41 | using OpenSim.Region.Environment.Scenes; |
39 | using Nwc.XmlRpc; | ||
40 | |||
41 | using MoneyTransferArgs = OpenSim.Region.Environment.Scenes.EventManager.MoneyTransferArgs; | ||
42 | using LandBuyArgs = OpenSim.Region.Environment.Scenes.EventManager.LandBuyArgs; | ||
43 | 42 | ||
44 | namespace OpenSim.Region.Environment.Modules | 43 | namespace OpenSim.Region.Environment.Modules |
45 | { | 44 | { |
@@ -56,7 +55,7 @@ namespace OpenSim.Region.Environment.Modules | |||
56 | /// </summary> | 55 | /// </summary> |
57 | public class BetaGridLikeMoneyModule: IRegionModule | 56 | public class BetaGridLikeMoneyModule: IRegionModule |
58 | { | 57 | { |
59 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 58 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
60 | 59 | ||
61 | /// <summary> | 60 | /// <summary> |
62 | /// Region UUIDS indexed by AgentID | 61 | /// Region UUIDS indexed by AgentID |
@@ -341,7 +340,7 @@ namespace OpenSim.Region.Environment.Modules | |||
341 | } | 340 | } |
342 | } | 341 | } |
343 | 342 | ||
344 | private void ValidateLandBuy (Object osender, LandBuyArgs e) | 343 | private void ValidateLandBuy (Object osender, EventManager.LandBuyArgs e) |
345 | { | 344 | { |
346 | if (m_MoneyAddress.Length == 0) | 345 | if (m_MoneyAddress.Length == 0) |
347 | { | 346 | { |
@@ -372,7 +371,7 @@ namespace OpenSim.Region.Environment.Modules | |||
372 | } | 371 | } |
373 | } | 372 | } |
374 | 373 | ||
375 | private void processLandBuy(Object osender, LandBuyArgs e) | 374 | private void processLandBuy(Object osender, EventManager.LandBuyArgs e) |
376 | { | 375 | { |
377 | lock(e) | 376 | lock(e) |
378 | { | 377 | { |
@@ -396,7 +395,7 @@ namespace OpenSim.Region.Environment.Modules | |||
396 | /// </summary> | 395 | /// </summary> |
397 | /// <param name="osender"></param> | 396 | /// <param name="osender"></param> |
398 | /// <param name="e"></param> | 397 | /// <param name="e"></param> |
399 | private void MoneyTransferAction (Object osender, MoneyTransferArgs e) | 398 | private void MoneyTransferAction (Object osender, EventManager.MoneyTransferArgs e) |
400 | { | 399 | { |
401 | IClientAPI sender = null; | 400 | IClientAPI sender = null; |
402 | IClientAPI receiver = null; | 401 | IClientAPI receiver = null; |
@@ -724,7 +723,7 @@ namespace OpenSim.Region.Environment.Modules | |||
724 | { | 723 | { |
725 | returnfunds = GetFundsForAgentID(agentID); | 724 | returnfunds = GetFundsForAgentID(agentID); |
726 | } | 725 | } |
727 | catch (System.Exception e) | 726 | catch (Exception e) |
728 | { | 727 | { |
729 | client.SendAlertMessage(e.Message + " "); | 728 | client.SendAlertMessage(e.Message + " "); |
730 | } | 729 | } |
diff --git a/OpenSim/Region/Environment/Modules/ChatModule.cs b/OpenSim/Region/Environment/Modules/ChatModule.cs index f854409..30c1397 100644 --- a/OpenSim/Region/Environment/Modules/ChatModule.cs +++ b/OpenSim/Region/Environment/Modules/ChatModule.cs | |||
@@ -29,9 +29,11 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
32 | using System.Reflection; | ||
32 | using System.Text.RegularExpressions; | 33 | using System.Text.RegularExpressions; |
33 | using System.Threading; | 34 | using System.Threading; |
34 | using libsecondlife; | 35 | using libsecondlife; |
36 | using log4net; | ||
35 | using Nini.Config; | 37 | using Nini.Config; |
36 | using OpenSim.Framework; | 38 | using OpenSim.Framework; |
37 | using OpenSim.Region.Environment.Interfaces; | 39 | using OpenSim.Region.Environment.Interfaces; |
@@ -41,7 +43,7 @@ namespace OpenSim.Region.Environment.Modules | |||
41 | { | 43 | { |
42 | public class ChatModule : IRegionModule, ISimChat | 44 | public class ChatModule : IRegionModule, ISimChat |
43 | { | 45 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 47 | ||
46 | private List<Scene> m_scenes = new List<Scene>(); | 48 | private List<Scene> m_scenes = new List<Scene>(); |
47 | 49 | ||
@@ -116,7 +118,7 @@ namespace OpenSim.Region.Environment.Modules | |||
116 | if (!m_irc_connector.IsAlive) | 118 | if (!m_irc_connector.IsAlive) |
117 | { | 119 | { |
118 | m_irc_connector.Start(); | 120 | m_irc_connector.Start(); |
119 | OpenSim.Framework.ThreadTracker.Add(m_irc_connector); | 121 | ThreadTracker.Add(m_irc_connector); |
120 | } | 122 | } |
121 | } | 123 | } |
122 | catch (Exception) | 124 | catch (Exception) |
@@ -267,7 +269,7 @@ namespace OpenSim.Region.Environment.Modules | |||
267 | if (!m_irc_connector.IsAlive) | 269 | if (!m_irc_connector.IsAlive) |
268 | { | 270 | { |
269 | m_irc_connector.Start(); | 271 | m_irc_connector.Start(); |
270 | OpenSim.Framework.ThreadTracker.Add(m_irc_connector); | 272 | ThreadTracker.Add(m_irc_connector); |
271 | } | 273 | } |
272 | } | 274 | } |
273 | catch (Exception) | 275 | catch (Exception) |
@@ -336,7 +338,7 @@ namespace OpenSim.Region.Environment.Modules | |||
336 | 338 | ||
337 | internal class IRCChatModule | 339 | internal class IRCChatModule |
338 | { | 340 | { |
339 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 341 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
340 | 342 | ||
341 | private string m_server = null; | 343 | private string m_server = null; |
342 | private uint m_port = 6668; | 344 | private uint m_port = 6668; |
@@ -431,13 +433,13 @@ namespace OpenSim.Region.Environment.Modules | |||
431 | pingSender.Name = "PingSenderThread"; | 433 | pingSender.Name = "PingSenderThread"; |
432 | pingSender.IsBackground = true; | 434 | pingSender.IsBackground = true; |
433 | pingSender.Start(); | 435 | pingSender.Start(); |
434 | OpenSim.Framework.ThreadTracker.Add(pingSender); | 436 | ThreadTracker.Add(pingSender); |
435 | 437 | ||
436 | listener = new Thread(new ThreadStart(ListenerRun)); | 438 | listener = new Thread(new ThreadStart(ListenerRun)); |
437 | listener.Name = "IRCChatModuleListenerThread"; | 439 | listener.Name = "IRCChatModuleListenerThread"; |
438 | listener.IsBackground = true; | 440 | listener.IsBackground = true; |
439 | listener.Start(); | 441 | listener.Start(); |
440 | OpenSim.Framework.ThreadTracker.Add(listener); | 442 | ThreadTracker.Add(listener); |
441 | 443 | ||
442 | m_writer.WriteLine(m_user); | 444 | m_writer.WriteLine(m_user); |
443 | m_writer.Flush(); | 445 | m_writer.Flush(); |
diff --git a/OpenSim/Region/Environment/Modules/CommanderTestModule.cs b/OpenSim/Region/Environment/Modules/CommanderTestModule.cs index 0133f27..a30de73 100644 --- a/OpenSim/Region/Environment/Modules/CommanderTestModule.cs +++ b/OpenSim/Region/Environment/Modules/CommanderTestModule.cs | |||
@@ -26,13 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using libsecondlife; | ||
31 | using Nini.Config; | 29 | using Nini.Config; |
32 | using OpenSim.Framework; | ||
33 | using OpenSim.Region.Environment.Interfaces; | 30 | using OpenSim.Region.Environment.Interfaces; |
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | using OpenSim.Region.Environment.Modules.ModuleFramework; | 31 | using OpenSim.Region.Environment.Modules.ModuleFramework; |
32 | using OpenSim.Region.Environment.Scenes; | ||
36 | 33 | ||
37 | namespace OpenSim.Region.Environment.Modules | 34 | namespace OpenSim.Region.Environment.Modules |
38 | { | 35 | { |
diff --git a/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs b/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs index ee84499..02354f1 100644 --- a/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs +++ b/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs | |||
@@ -26,14 +26,15 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Drawing; | ||
30 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Drawing; | ||
31 | using System.Drawing.Imaging; | ||
31 | using libsecondlife; | 32 | using libsecondlife; |
32 | using Nini.Config; | 33 | using Nini.Config; |
34 | using OpenJPEGNet; | ||
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
34 | using OpenSim.Region.Environment.Interfaces; | 36 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Scenes; | 37 | using OpenSim.Region.Environment.Scenes; |
36 | using OpenJPEGNet; | ||
37 | 38 | ||
38 | namespace OpenSim.Region.Environment.Modules | 39 | namespace OpenSim.Region.Environment.Modules |
39 | { | 40 | { |
@@ -252,7 +253,7 @@ namespace OpenSim.Region.Environment.Modules | |||
252 | Bitmap joint; | 253 | Bitmap joint; |
253 | Graphics jG; | 254 | Graphics jG; |
254 | 255 | ||
255 | joint = new Bitmap(back.Width, back.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); | 256 | joint = new Bitmap(back.Width, back.Height, PixelFormat.Format32bppArgb); |
256 | jG = Graphics.FromImage(joint); | 257 | jG = Graphics.FromImage(joint); |
257 | 258 | ||
258 | jG.DrawImage(back, 0, 0, back.Width, back.Height); | 259 | jG.DrawImage(back, 0, 0, back.Width, back.Height); |
diff --git a/OpenSim/Region/Environment/Modules/ExportSerialiser/ExportSerialisationModule.cs b/OpenSim/Region/Environment/Modules/ExportSerialiser/ExportSerialisationModule.cs index 0faa573..f811f22 100644 --- a/OpenSim/Region/Environment/Modules/ExportSerialiser/ExportSerialisationModule.cs +++ b/OpenSim/Region/Environment/Modules/ExportSerialiser/ExportSerialisationModule.cs | |||
@@ -27,18 +27,15 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Drawing; | 30 | using System.IO; |
31 | using libsecondlife; | ||
32 | using Nini.Config; | 31 | using Nini.Config; |
33 | using OpenSim.Framework; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 32 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Scenes; | ||
36 | using OpenSim.Region.Environment.Modules.ModuleFramework; | 33 | using OpenSim.Region.Environment.Modules.ModuleFramework; |
37 | using System.IO; | 34 | using OpenSim.Region.Environment.Scenes; |
38 | 35 | ||
39 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser | 36 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser |
40 | { | 37 | { |
41 | public class ExportSerialisationModule : IRegionModule, OpenSim.Region.Environment.Modules.ExportSerialiser.IRegionSerialiser | 38 | public class ExportSerialisationModule : IRegionModule, IRegionSerialiser |
42 | { | 39 | { |
43 | private List<Scene> m_regions = new List<Scene>(); | 40 | private List<Scene> m_regions = new List<Scene>(); |
44 | private List<IFileSerialiser> m_serialisers = new List<IFileSerialiser>(); | 41 | private List<IFileSerialiser> m_serialisers = new List<IFileSerialiser>(); |
diff --git a/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs b/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs index f13c8fa..8cd97a8 100644 --- a/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs +++ b/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | using OpenSim.Region.Environment.Scenes; | 28 | using OpenSim.Region.Environment.Scenes; |
33 | 29 | ||
34 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser | 30 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser |
diff --git a/OpenSim/Region/Environment/Modules/ExportSerialiser/IRegionSerialiser.cs b/OpenSim/Region/Environment/Modules/ExportSerialiser/IRegionSerialiser.cs index a9454fc..5b10957 100644 --- a/OpenSim/Region/Environment/Modules/ExportSerialiser/IRegionSerialiser.cs +++ b/OpenSim/Region/Environment/Modules/ExportSerialiser/IRegionSerialiser.cs | |||
@@ -25,11 +25,13 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System.Collections.Generic; |
29 | using OpenSim.Region.Environment.Scenes; | ||
30 | |||
29 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser | 31 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser |
30 | { | 32 | { |
31 | public interface IRegionSerialiser | 33 | public interface IRegionSerialiser |
32 | { | 34 | { |
33 | System.Collections.Generic.List<string> SerialiseRegion(OpenSim.Region.Environment.Scenes.Scene scene, string saveDir); | 35 | List<string> SerialiseRegion(Scene scene, string saveDir); |
34 | } | 36 | } |
35 | } | 37 | } |
diff --git a/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseObjects.cs b/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseObjects.cs index e413466..ac80f40 100644 --- a/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseObjects.cs +++ b/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseObjects.cs | |||
@@ -25,10 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using OpenSim.Region.Environment.Scenes; | ||
29 | using System.IO; | ||
30 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.IO; | ||
30 | using System.Text; | ||
31 | using System.Xml; | 31 | using System.Xml; |
32 | using OpenSim.Region.Environment.Scenes; | ||
32 | 33 | ||
33 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser | 34 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser |
34 | { | 35 | { |
@@ -61,7 +62,7 @@ namespace OpenSim.Region.Environment.Modules.ExportSerialiser | |||
61 | xmlstream += "</scene>"; | 62 | xmlstream += "</scene>"; |
62 | 63 | ||
63 | MemoryStream stream = new MemoryStream(); | 64 | MemoryStream stream = new MemoryStream(); |
64 | XmlTextWriter formatter = new XmlTextWriter(stream, System.Text.Encoding.UTF8); | 65 | XmlTextWriter formatter = new XmlTextWriter(stream, Encoding.UTF8); |
65 | XmlDocument doc = new XmlDocument(); | 66 | XmlDocument doc = new XmlDocument(); |
66 | 67 | ||
67 | doc.LoadXml(xmlstream); | 68 | doc.LoadXml(xmlstream); |
diff --git a/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseTerrain.cs b/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseTerrain.cs index eeeacdc..8555089 100644 --- a/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseTerrain.cs +++ b/OpenSim/Region/Environment/Modules/ExportSerialiser/SerialiseTerrain.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using OpenSim.Region.Environment.Modules.Terrain; | 28 | using OpenSim.Region.Environment.Modules.Terrain; |
29 | using OpenSim.Region.Environment.Modules.Terrain.FileLoaders; | ||
29 | using OpenSim.Region.Environment.Scenes; | 30 | using OpenSim.Region.Environment.Scenes; |
30 | 31 | ||
31 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser | 32 | namespace OpenSim.Region.Environment.Modules.ExportSerialiser |
@@ -36,7 +37,7 @@ namespace OpenSim.Region.Environment.Modules.ExportSerialiser | |||
36 | 37 | ||
37 | public string WriteToFile(Scene scene, string dir) | 38 | public string WriteToFile(Scene scene, string dir) |
38 | { | 39 | { |
39 | ITerrainLoader fileSystemExporter = new Terrain.FileLoaders.RAW32(); | 40 | ITerrainLoader fileSystemExporter = new RAW32(); |
40 | string targetFileName = dir + "heightmap.r32"; | 41 | string targetFileName = dir + "heightmap.r32"; |
41 | 42 | ||
42 | lock (scene.Heightmap) | 43 | lock (scene.Heightmap) |
diff --git a/OpenSim/Region/Environment/Modules/FriendsModule.cs b/OpenSim/Region/Environment/Modules/FriendsModule.cs index a2ec599..7e12618 100644 --- a/OpenSim/Region/Environment/Modules/FriendsModule.cs +++ b/OpenSim/Region/Environment/Modules/FriendsModule.cs | |||
@@ -26,8 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | using System; | 27 | using System; |
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.Reflection; | ||
29 | using libsecondlife; | 30 | using libsecondlife; |
30 | using libsecondlife.Packets; | 31 | using libsecondlife.Packets; |
32 | using log4net; | ||
31 | using Nini.Config; | 33 | using Nini.Config; |
32 | using Nwc.XmlRpc; | 34 | using Nwc.XmlRpc; |
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
@@ -38,7 +40,7 @@ namespace OpenSim.Region.Environment.Modules | |||
38 | { | 40 | { |
39 | public class FriendsModule : IRegionModule | 41 | public class FriendsModule : IRegionModule |
40 | { | 42 | { |
41 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 43 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 44 | ||
43 | private List<Scene> m_scene = new List<Scene>(); | 45 | private List<Scene> m_scene = new List<Scene>(); |
44 | 46 | ||
diff --git a/OpenSim/Region/Environment/Modules/GroupsModule.cs b/OpenSim/Region/Environment/Modules/GroupsModule.cs index 6cdae7b..b23bb91 100644 --- a/OpenSim/Region/Environment/Modules/GroupsModule.cs +++ b/OpenSim/Region/Environment/Modules/GroupsModule.cs | |||
@@ -27,7 +27,9 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
31 | using Nini.Config; | 33 | using Nini.Config; |
32 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
33 | using OpenSim.Region.Environment.Interfaces; | 35 | using OpenSim.Region.Environment.Interfaces; |
@@ -37,7 +39,7 @@ namespace OpenSim.Region.Environment.Modules | |||
37 | { | 39 | { |
38 | public class GroupsModule : IRegionModule | 40 | public class GroupsModule : IRegionModule |
39 | { | 41 | { |
40 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
41 | 43 | ||
42 | private List<Scene> m_scene = new List<Scene>(); | 44 | private List<Scene> m_scene = new List<Scene>(); |
43 | private Dictionary<LLUUID, IClientAPI> m_iclientmap = new Dictionary<LLUUID, IClientAPI>(); | 45 | private Dictionary<LLUUID, IClientAPI> m_iclientmap = new Dictionary<LLUUID, IClientAPI>(); |
diff --git a/OpenSim/Region/Environment/Modules/InventoryModule.cs b/OpenSim/Region/Environment/Modules/InventoryModule.cs index eadbb4f..ff5a02c 100644 --- a/OpenSim/Region/Environment/Modules/InventoryModule.cs +++ b/OpenSim/Region/Environment/Modules/InventoryModule.cs | |||
@@ -25,12 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | 29 | using System.Reflection; | |
31 | using libsecondlife; | 30 | using libsecondlife; |
31 | using log4net; | ||
32 | using Nini.Config; | 32 | using Nini.Config; |
33 | |||
34 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
35 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
36 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
@@ -39,8 +38,8 @@ namespace OpenSim.Region.Environment.Modules | |||
39 | { | 38 | { |
40 | public class InventoryModule : IRegionModule | 39 | public class InventoryModule : IRegionModule |
41 | { | 40 | { |
42 | private static readonly log4net.ILog m_log | 41 | private static readonly ILog m_log |
43 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
44 | 43 | ||
45 | private Scene m_scene; | 44 | private Scene m_scene; |
46 | 45 | ||
diff --git a/OpenSim/Region/Environment/Modules/LandManagement/LandChannel.cs b/OpenSim/Region/Environment/Modules/LandManagement/LandChannel.cs index e3b7cf5..561c5cf 100644 --- a/OpenSim/Region/Environment/Modules/LandManagement/LandChannel.cs +++ b/OpenSim/Region/Environment/Modules/LandManagement/LandChannel.cs | |||
@@ -27,18 +27,14 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | ||
31 | using Axiom.Math; | 30 | using Axiom.Math; |
32 | using libsecondlife; | 31 | using libsecondlife; |
33 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
34 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Console; | ||
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Scenes; | ||
38 | using OpenSim.Region.Physics.Manager; | 36 | using OpenSim.Region.Physics.Manager; |
39 | 37 | ||
40 | using LandBuyArgs = OpenSim.Region.Environment.Scenes.EventManager.LandBuyArgs; | ||
41 | |||
42 | namespace OpenSim.Region.Environment.Modules.LandManagement | 38 | namespace OpenSim.Region.Environment.Modules.LandManagement |
43 | { | 39 | { |
44 | public class LandChannel : ILandChannel | 40 | public class LandChannel : ILandChannel |
@@ -245,7 +241,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
245 | x = Convert.ToInt32(Math.Floor(Convert.ToDouble(x_float) / Convert.ToDouble(4.0))); | 241 | x = Convert.ToInt32(Math.Floor(Convert.ToDouble(x_float) / Convert.ToDouble(4.0))); |
246 | y = Convert.ToInt32(Math.Floor(Convert.ToDouble(y_float) / Convert.ToDouble(4.0))); | 242 | y = Convert.ToInt32(Math.Floor(Convert.ToDouble(y_float) / Convert.ToDouble(4.0))); |
247 | } | 243 | } |
248 | catch (System.OverflowException) | 244 | catch (OverflowException) |
249 | { | 245 | { |
250 | return null; | 246 | return null; |
251 | } | 247 | } |
@@ -957,7 +953,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
957 | // and land has been validated as well, this method transfers | 953 | // and land has been validated as well, this method transfers |
958 | // the land ownership | 954 | // the land ownership |
959 | 955 | ||
960 | public void handleLandBuyRequest(Object o, LandBuyArgs e) | 956 | public void handleLandBuyRequest(Object o, EventManager.LandBuyArgs e) |
961 | { | 957 | { |
962 | if (e.economyValidated && e.landValidated) | 958 | if (e.economyValidated && e.landValidated) |
963 | { | 959 | { |
@@ -976,7 +972,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
976 | // be validated. This method validates the right to buy the | 972 | // be validated. This method validates the right to buy the |
977 | // parcel | 973 | // parcel |
978 | 974 | ||
979 | public void handleLandValidationRequest(Object o, LandBuyArgs e) | 975 | public void handleLandValidationRequest(Object o, EventManager.LandBuyArgs e) |
980 | { | 976 | { |
981 | if (e.landValidated == false) | 977 | if (e.landValidated == false) |
982 | { | 978 | { |
@@ -994,7 +990,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
994 | int saleprice = lob.landData.salePrice; | 990 | int saleprice = lob.landData.salePrice; |
995 | LLUUID pOwnerID = lob.landData.ownerID; | 991 | LLUUID pOwnerID = lob.landData.ownerID; |
996 | 992 | ||
997 | bool landforsale = ((lob.landData.landFlags & (uint)(libsecondlife.Parcel.ParcelFlags.ForSale | libsecondlife.Parcel.ParcelFlags.ForSaleObjects | libsecondlife.Parcel.ParcelFlags.SellParcelObjects)) != 0); | 993 | bool landforsale = ((lob.landData.landFlags & (uint)(Parcel.ParcelFlags.ForSale | Parcel.ParcelFlags.ForSaleObjects | Parcel.ParcelFlags.SellParcelObjects)) != 0); |
998 | if ((AuthorizedID == LLUUID.Zero || AuthorizedID == e.agentId) && e.parcelPrice >= saleprice && landforsale) | 994 | if ((AuthorizedID == LLUUID.Zero || AuthorizedID == e.agentId) && e.parcelPrice >= saleprice && landforsale) |
999 | { | 995 | { |
1000 | lock (e) | 996 | lock (e) |
diff --git a/OpenSim/Region/Environment/Modules/LandManagement/LandManagementModule.cs b/OpenSim/Region/Environment/Modules/LandManagement/LandManagementModule.cs index 20f75df..1c36c0c 100644 --- a/OpenSim/Region/Environment/Modules/LandManagement/LandManagementModule.cs +++ b/OpenSim/Region/Environment/Modules/LandManagement/LandManagementModule.cs | |||
@@ -25,17 +25,9 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using libsecondlife; | ||
31 | using libsecondlife.Packets; | ||
32 | using OpenSim.Framework; | ||
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | using OpenSim.Region.Environment.Interfaces; | ||
36 | using Nini.Config; | 28 | using Nini.Config; |
37 | 29 | using OpenSim.Region.Environment.Interfaces; | |
38 | using LandBuyArgs = OpenSim.Region.Environment.Scenes.EventManager.LandBuyArgs; | 30 | using OpenSim.Region.Environment.Scenes; |
39 | 31 | ||
40 | namespace OpenSim.Region.Environment.Modules.LandManagement | 32 | namespace OpenSim.Region.Environment.Modules.LandManagement |
41 | { | 33 | { |
diff --git a/OpenSim/Region/Environment/Modules/LandManagement/LandObject.cs b/OpenSim/Region/Environment/Modules/LandManagement/LandObject.cs index 69d3c05..f9684e6 100644 --- a/OpenSim/Region/Environment/Modules/LandManagement/LandObject.cs +++ b/OpenSim/Region/Environment/Modules/LandManagement/LandObject.cs | |||
@@ -27,12 +27,13 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using libsecondlife; | 31 | using libsecondlife; |
31 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
33 | using log4net; | ||
32 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | using OpenSim.Region.Environment.Interfaces; | 35 | using OpenSim.Region.Environment.Interfaces; |
36 | using OpenSim.Region.Environment.Scenes; | ||
36 | 37 | ||
37 | namespace OpenSim.Region.Environment.Modules.LandManagement | 38 | namespace OpenSim.Region.Environment.Modules.LandManagement |
38 | { | 39 | { |
@@ -46,7 +47,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
46 | { | 47 | { |
47 | #region Member Variables | 48 | #region Member Variables |
48 | 49 | ||
49 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 50 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
50 | 51 | ||
51 | protected LandData m_landData = new LandData(); | 52 | protected LandData m_landData = new LandData(); |
52 | protected List<SceneObjectGroup> primsOverMe = new List<SceneObjectGroup>(); | 53 | protected List<SceneObjectGroup> primsOverMe = new List<SceneObjectGroup>(); |
@@ -273,7 +274,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement | |||
273 | newData.claimPrice = claimprice; | 274 | newData.claimPrice = claimprice; |
274 | newData.salePrice = 0; | 275 | newData.salePrice = 0; |
275 | newData.authBuyerID = LLUUID.Zero; | 276 | newData.authBuyerID = LLUUID.Zero; |
276 | newData.landFlags &= ~(uint)(libsecondlife.Parcel.ParcelFlags.ForSale | Parcel.ParcelFlags.ForSaleObjects | Parcel.ParcelFlags.SellParcelObjects); | 277 | newData.landFlags &= ~(uint)(Parcel.ParcelFlags.ForSale | Parcel.ParcelFlags.ForSaleObjects | Parcel.ParcelFlags.SellParcelObjects); |
277 | m_scene.LandChannel.updateLandObject(landData.localID, newData); | 278 | m_scene.LandChannel.updateLandObject(landData.localID, newData); |
278 | 279 | ||
279 | sendLandUpdateToAvatarsOverMe(); | 280 | sendLandUpdateToAvatarsOverMe(); |
diff --git a/OpenSim/Region/Environment/Modules/ModuleFramework/Commander.cs b/OpenSim/Region/Environment/Modules/ModuleFramework/Commander.cs index 9834a8a..27d73b5 100644 --- a/OpenSim/Region/Environment/Modules/ModuleFramework/Commander.cs +++ b/OpenSim/Region/Environment/Modules/ModuleFramework/Commander.cs | |||
@@ -27,8 +27,10 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using System.Text; | 31 | using System.Text; |
31 | 32 | using log4net; | |
33 | using OpenSim.Framework; | ||
32 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
33 | 35 | ||
34 | namespace OpenSim.Region.Environment.Modules.ModuleFramework | 36 | namespace OpenSim.Region.Environment.Modules.ModuleFramework |
@@ -39,9 +41,9 @@ namespace OpenSim.Region.Environment.Modules.ModuleFramework | |||
39 | /// </summary> | 41 | /// </summary> |
40 | public class Command : ICommand | 42 | public class Command : ICommand |
41 | { | 43 | { |
42 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 45 | ||
44 | private Action<Object[]> m_command; | 46 | private Action<object[]> m_command; |
45 | private string m_name; | 47 | private string m_name; |
46 | private string m_help; | 48 | private string m_help; |
47 | private List<CommandArgument> m_args = new List<CommandArgument>(); | 49 | private List<CommandArgument> m_args = new List<CommandArgument>(); |
@@ -197,7 +199,7 @@ namespace OpenSim.Region.Environment.Modules.ModuleFramework | |||
197 | /// </summary> | 199 | /// </summary> |
198 | public class Commander : ICommander | 200 | public class Commander : ICommander |
199 | { | 201 | { |
200 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 202 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
201 | private Dictionary<string, ICommand> m_commands = new Dictionary<string, ICommand>(); | 203 | private Dictionary<string, ICommand> m_commands = new Dictionary<string, ICommand>(); |
202 | private string m_name; | 204 | private string m_name; |
203 | 205 | ||
@@ -241,7 +243,7 @@ namespace OpenSim.Region.Environment.Modules.ModuleFramework | |||
241 | classSrc += "\tpublic void " + EscapeRuntimeAPICommand(com.Name) + "( "; | 243 | classSrc += "\tpublic void " + EscapeRuntimeAPICommand(com.Name) + "( "; |
242 | foreach (KeyValuePair<string, string> arg in com.Arguments) | 244 | foreach (KeyValuePair<string, string> arg in com.Arguments) |
243 | { | 245 | { |
244 | classSrc += arg.Value + " " + Framework.Util.Md5Hash(arg.Key) + ","; | 246 | classSrc += arg.Value + " " + Util.Md5Hash(arg.Key) + ","; |
245 | } | 247 | } |
246 | classSrc = classSrc.Remove(classSrc.Length - 1); // Delete the last comma | 248 | classSrc = classSrc.Remove(classSrc.Length - 1); // Delete the last comma |
247 | classSrc += " )\n\t{\n"; | 249 | classSrc += " )\n\t{\n"; |
@@ -249,7 +251,7 @@ namespace OpenSim.Region.Environment.Modules.ModuleFramework | |||
249 | int i = 0; | 251 | int i = 0; |
250 | foreach (KeyValuePair<string, string> arg in com.Arguments) | 252 | foreach (KeyValuePair<string, string> arg in com.Arguments) |
251 | { | 253 | { |
252 | classSrc += "\t\targs[" + i.ToString() + "] = " + Framework.Util.Md5Hash(arg.Key) + " " + ";\n"; | 254 | classSrc += "\t\targs[" + i.ToString() + "] = " + Util.Md5Hash(arg.Key) + " " + ";\n"; |
253 | i++; | 255 | i++; |
254 | } | 256 | } |
255 | classSrc += "\t\tGetCommander(\"" + m_name + "\").Run(\"" + com.Name + "\", args);\n"; | 257 | classSrc += "\t\tGetCommander(\"" + m_name + "\").Run(\"" + com.Name + "\", args);\n"; |
diff --git a/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs b/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs index 10e3840..2de5975 100644 --- a/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs +++ b/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs | |||
@@ -33,6 +33,7 @@ using System.Text; | |||
33 | using System.Threading; | 33 | using System.Threading; |
34 | using libsecondlife; | 34 | using libsecondlife; |
35 | using Nini.Config; | 35 | using Nini.Config; |
36 | using OpenSim.Framework; | ||
36 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
37 | using OpenSim.Region.Environment.Scenes; | 38 | using OpenSim.Region.Environment.Scenes; |
38 | 39 | ||
@@ -289,7 +290,7 @@ namespace OpenSim.Region.Environment.Modules | |||
289 | httpThread.IsBackground = true; | 290 | httpThread.IsBackground = true; |
290 | finished = false; | 291 | finished = false; |
291 | httpThread.Start(); | 292 | httpThread.Start(); |
292 | OpenSim.Framework.ThreadTracker.Add(httpThread); | 293 | ThreadTracker.Add(httpThread); |
293 | } | 294 | } |
294 | 295 | ||
295 | /* | 296 | /* |
diff --git a/OpenSim/Region/Environment/Modules/TextureDownloadModule.cs b/OpenSim/Region/Environment/Modules/TextureDownloadModule.cs index 1d32c1f..bde0dc0 100644 --- a/OpenSim/Region/Environment/Modules/TextureDownloadModule.cs +++ b/OpenSim/Region/Environment/Modules/TextureDownloadModule.cs | |||
@@ -74,7 +74,7 @@ namespace OpenSim.Region.Environment.Modules | |||
74 | m_thread.Name = "ProcessTextureSenderThread"; | 74 | m_thread.Name = "ProcessTextureSenderThread"; |
75 | m_thread.IsBackground = true; | 75 | m_thread.IsBackground = true; |
76 | m_thread.Start(); | 76 | m_thread.Start(); |
77 | OpenSim.Framework.ThreadTracker.Add(m_thread); | 77 | ThreadTracker.Add(m_thread); |
78 | } | 78 | } |
79 | 79 | ||
80 | if (!m_scenes.Contains(scene)) | 80 | if (!m_scenes.Contains(scene)) |
diff --git a/OpenSim/Region/Environment/Modules/TextureSender.cs b/OpenSim/Region/Environment/Modules/TextureSender.cs index 1500bdb..e54a1a2 100644 --- a/OpenSim/Region/Environment/Modules/TextureSender.cs +++ b/OpenSim/Region/Environment/Modules/TextureSender.cs | |||
@@ -26,10 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using libsecondlife; | 29 | using System.Reflection; |
30 | using libsecondlife.Packets; | 30 | using libsecondlife.Packets; |
31 | using log4net; | ||
31 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
32 | using OpenSim.Framework.Console; | ||
33 | using OpenSim.Region.Environment.Interfaces; | 33 | using OpenSim.Region.Environment.Interfaces; |
34 | 34 | ||
35 | namespace OpenSim.Region.Environment.Modules | 35 | namespace OpenSim.Region.Environment.Modules |
@@ -40,8 +40,8 @@ namespace OpenSim.Region.Environment.Modules | |||
40 | /// </summary> | 40 | /// </summary> |
41 | public class TextureSender : ITextureSender | 41 | public class TextureSender : ITextureSender |
42 | { | 42 | { |
43 | private static readonly log4net.ILog m_log | 43 | private static readonly ILog m_log |
44 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 45 | ||
46 | /// <summary> | 46 | /// <summary> |
47 | /// Records the number of times texture send has been called. | 47 | /// Records the number of times texture send has been called. |
diff --git a/OpenSim/Region/Environment/Modules/TreePopulatorModule.cs b/OpenSim/Region/Environment/Modules/TreePopulatorModule.cs index ec977ba..2051a0f 100644 --- a/OpenSim/Region/Environment/Modules/TreePopulatorModule.cs +++ b/OpenSim/Region/Environment/Modules/TreePopulatorModule.cs | |||
@@ -27,10 +27,13 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
31 | using System.Timers; | ||
32 | using Axiom.Math; | ||
30 | using libsecondlife; | 33 | using libsecondlife; |
34 | using log4net; | ||
31 | using Nini.Config; | 35 | using Nini.Config; |
32 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Scenes; | 38 | using OpenSim.Region.Environment.Scenes; |
36 | 39 | ||
@@ -42,7 +45,7 @@ namespace OpenSim.Region.Environment.Modules | |||
42 | public class TreePopulatorModule : IRegionModule | 45 | public class TreePopulatorModule : IRegionModule |
43 | { | 46 | { |
44 | private Scene m_scene; | 47 | private Scene m_scene; |
45 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 49 | ||
47 | private List<LLUUID> m_trees; | 50 | private List<LLUUID> m_trees; |
48 | 51 | ||
@@ -63,8 +66,8 @@ namespace OpenSim.Region.Environment.Modules | |||
63 | 66 | ||
64 | m_scene.EventManager.OnPluginConsole += new EventManager.OnPluginConsoleDelegate(EventManager_OnPluginConsole); | 67 | m_scene.EventManager.OnPluginConsole += new EventManager.OnPluginConsoleDelegate(EventManager_OnPluginConsole); |
65 | 68 | ||
66 | System.Timers.Timer CalculateTrees = new System.Timers.Timer(m_tree_updates); | 69 | Timer CalculateTrees = new Timer(m_tree_updates); |
67 | CalculateTrees.Elapsed += new System.Timers.ElapsedEventHandler(CalculateTrees_Elapsed); | 70 | CalculateTrees.Elapsed += new ElapsedEventHandler(CalculateTrees_Elapsed); |
68 | CalculateTrees.Start(); | 71 | CalculateTrees.Start(); |
69 | m_log.Debug("[TREES]: Initialised tree module"); | 72 | m_log.Debug("[TREES]: Initialised tree module"); |
70 | } | 73 | } |
@@ -168,7 +171,7 @@ namespace OpenSim.Region.Environment.Modules | |||
168 | } | 171 | } |
169 | else | 172 | else |
170 | { | 173 | { |
171 | selectedTree.SetText(killLikelyhood.ToString(), new Axiom.Math.Vector3(1.0f, 1.0f, 1.0f), 1.0); | 174 | selectedTree.SetText(killLikelyhood.ToString(), new Vector3(1.0f, 1.0f, 1.0f), 1.0); |
172 | } | 175 | } |
173 | } | 176 | } |
174 | else | 177 | else |
@@ -217,7 +220,7 @@ namespace OpenSim.Region.Environment.Modules | |||
217 | tree.SendGroupFullUpdate(); | 220 | tree.SendGroupFullUpdate(); |
218 | } | 221 | } |
219 | 222 | ||
220 | void CalculateTrees_Elapsed(object sender, System.Timers.ElapsedEventArgs e) | 223 | void CalculateTrees_Elapsed(object sender, ElapsedEventArgs e) |
221 | { | 224 | { |
222 | growTrees(); | 225 | growTrees(); |
223 | seedTrees(); | 226 | seedTrees(); |
diff --git a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs index 59ec981..b487628 100644 --- a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs +++ b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs | |||
@@ -25,15 +25,12 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | 29 | using System.Reflection; | |
31 | using libsecondlife; | 30 | using libsecondlife; |
32 | using libsecondlife.Packets; | 31 | using log4net; |
33 | |||
34 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Communications.Limit; | 33 | using OpenSim.Framework.Communications.Limit; |
36 | using OpenSim.Framework.Console; | ||
37 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
39 | 36 | ||
@@ -46,8 +43,8 @@ namespace OpenSim.Region.Environment.Modules | |||
46 | /// </summary> | 43 | /// </summary> |
47 | public class UserTextureDownloadService | 44 | public class UserTextureDownloadService |
48 | { | 45 | { |
49 | private static readonly log4net.ILog m_log | 46 | private static readonly ILog m_log |
50 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 47 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
51 | 48 | ||
52 | /// <summary> | 49 | /// <summary> |
53 | /// We will allow the client to request the same texture n times before dropping further requests | 50 | /// We will allow the client to request the same texture n times before dropping further requests |
diff --git a/OpenSim/Region/Environment/Modules/VectorRenderModule.cs b/OpenSim/Region/Environment/Modules/VectorRenderModule.cs index 9c91b25..0ea6fc3 100644 --- a/OpenSim/Region/Environment/Modules/VectorRenderModule.cs +++ b/OpenSim/Region/Environment/Modules/VectorRenderModule.cs | |||
@@ -27,15 +27,17 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Drawing; | 29 | using System.Drawing; |
30 | using System.Drawing.Imaging; | ||
31 | using System.Globalization; | ||
30 | using System.IO; | 32 | using System.IO; |
31 | using System.Net; | 33 | using System.Net; |
32 | using System.Globalization; | ||
33 | using libsecondlife; | 34 | using libsecondlife; |
34 | using Nini.Config; | 35 | using Nini.Config; |
35 | using OpenJPEGNet; | 36 | using OpenJPEGNet; |
36 | using OpenSim.Framework; | ||
37 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 38 | using OpenSim.Region.Environment.Scenes; |
39 | using Image=System.Drawing.Image; | ||
40 | |||
39 | //using Cairo; | 41 | //using Cairo; |
40 | 42 | ||
41 | namespace OpenSim.Region.Environment.Modules | 43 | namespace OpenSim.Region.Environment.Modules |
@@ -96,9 +98,9 @@ namespace OpenSim.Region.Environment.Modules | |||
96 | if ((size < 128) || (size > 1024)) | 98 | if ((size < 128) || (size > 1024)) |
97 | size = 256; | 99 | size = 256; |
98 | 100 | ||
99 | Bitmap bitmap = new Bitmap(size, size, System.Drawing.Imaging.PixelFormat.Format32bppArgb); | 101 | Bitmap bitmap = new Bitmap(size, size, PixelFormat.Format32bppArgb); |
100 | 102 | ||
101 | System.Drawing.Graphics graph = System.Drawing.Graphics.FromImage(bitmap); | 103 | Graphics graph = Graphics.FromImage(bitmap); |
102 | 104 | ||
103 | extraParams = extraParams.ToLower(); | 105 | extraParams = extraParams.ToLower(); |
104 | int alpha = 255; | 106 | int alpha = 255; |
@@ -166,11 +168,11 @@ namespace OpenSim.Region.Environment.Modules | |||
166 | } | 168 | } |
167 | */ | 169 | */ |
168 | 170 | ||
169 | private void GDIDraw(string data, System.Drawing.Graphics graph) | 171 | private void GDIDraw(string data, Graphics graph) |
170 | { | 172 | { |
171 | System.Drawing.Point startPoint = new System.Drawing.Point(0, 0); | 173 | Point startPoint = new Point(0, 0); |
172 | System.Drawing.Point endPoint = new System.Drawing.Point(0, 0); | 174 | Point endPoint = new Point(0, 0); |
173 | System.Drawing.Pen drawPen = new Pen(System.Drawing.Color.Black, 7); | 175 | Pen drawPen = new Pen(Color.Black, 7); |
174 | Font myFont = new Font("Times New Roman", 14); | 176 | Font myFont = new Font("Times New Roman", 14); |
175 | SolidBrush myBrush = new SolidBrush(Color.Black); | 177 | SolidBrush myBrush = new SolidBrush(Color.Black); |
176 | char[] lineDelimiter = { ';' }; | 178 | char[] lineDelimiter = { ';' }; |
@@ -213,7 +215,7 @@ namespace OpenSim.Region.Environment.Modules | |||
213 | GetParams(partsDelimiter, ref nextLine, 5, ref x, ref y); | 215 | GetParams(partsDelimiter, ref nextLine, 5, ref x, ref y); |
214 | endPoint.X = (int)x; | 216 | endPoint.X = (int)x; |
215 | endPoint.Y = (int)y; | 217 | endPoint.Y = (int)y; |
216 | System.Drawing.Image image = ImageHttpRequest(nextLine); | 218 | Image image = ImageHttpRequest(nextLine); |
217 | graph.DrawImage(image, (float)startPoint.X, (float)startPoint.Y, x, y); | 219 | graph.DrawImage(image, (float)startPoint.X, (float)startPoint.Y, x, y); |
218 | startPoint.X += endPoint.X; | 220 | startPoint.X += endPoint.X; |
219 | startPoint.Y += endPoint.Y; | 221 | startPoint.Y += endPoint.Y; |
diff --git a/OpenSim/Region/Environment/Modules/VoiceModule.cs b/OpenSim/Region/Environment/Modules/VoiceModule.cs index 8ca4698..106becd 100644 --- a/OpenSim/Region/Environment/Modules/VoiceModule.cs +++ b/OpenSim/Region/Environment/Modules/VoiceModule.cs | |||
@@ -27,23 +27,24 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Reflection; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
32 | using Nini.Config; | 33 | using Nini.Config; |
33 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Communications.Cache; | 35 | using OpenSim.Framework.Communications.Cache; |
35 | using OpenSim.Framework.Servers; | 36 | using OpenSim.Framework.Servers; |
36 | using OpenSim.Region.Capabilities; | 37 | using OpenSim.Region.Capabilities; |
37 | using Caps = OpenSim.Region.Capabilities.Caps; | ||
38 | using OpenSim.Region.Environment.Interfaces; | 38 | using OpenSim.Region.Environment.Interfaces; |
39 | using OpenSim.Region.Environment.Scenes; | 39 | using OpenSim.Region.Environment.Scenes; |
40 | using Caps=OpenSim.Region.Capabilities.Caps; | ||
40 | 41 | ||
41 | namespace OpenSim.Region.Environment.Modules | 42 | namespace OpenSim.Region.Environment.Modules |
42 | { | 43 | { |
43 | public class VoiceModule : IRegionModule | 44 | public class VoiceModule : IRegionModule |
44 | { | 45 | { |
45 | private static readonly log4net.ILog m_log = | 46 | private static readonly ILog m_log = |
46 | log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 47 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
47 | 48 | ||
48 | private Scene m_scene; | 49 | private Scene m_scene; |
49 | private IConfig m_config; | 50 | private IConfig m_config; |
diff --git a/OpenSim/Region/Environment/Modules/WorldCommModule.cs b/OpenSim/Region/Environment/Modules/WorldCommModule.cs index 79e475c..5b18757 100644 --- a/OpenSim/Region/Environment/Modules/WorldCommModule.cs +++ b/OpenSim/Region/Environment/Modules/WorldCommModule.cs | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | ||
31 | using libsecondlife; | 30 | using libsecondlife; |
32 | using Nini.Config; | 31 | using Nini.Config; |
33 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
diff --git a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs index 4f52ad6..e915fb8 100644 --- a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs +++ b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs | |||
@@ -28,11 +28,14 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | ||
32 | using System.Reflection; | ||
31 | using System.Threading; | 33 | using System.Threading; |
32 | using libsecondlife; | 34 | using libsecondlife; |
35 | using log4net; | ||
33 | using Nini.Config; | 36 | using Nini.Config; |
34 | using Nwc.XmlRpc; | 37 | using Nwc.XmlRpc; |
35 | using OpenSim.Framework.Console; | 38 | using OpenSim.Framework; |
36 | using OpenSim.Framework.Servers; | 39 | using OpenSim.Framework.Servers; |
37 | using OpenSim.Region.Environment.Interfaces; | 40 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 41 | using OpenSim.Region.Environment.Scenes; |
@@ -74,7 +77,7 @@ namespace OpenSim.Region.Environment.Modules | |||
74 | { | 77 | { |
75 | public class XMLRPCModule : IRegionModule, IXMLRPC | 78 | public class XMLRPCModule : IRegionModule, IXMLRPC |
76 | { | 79 | { |
77 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 80 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
78 | 81 | ||
79 | private object XMLRPCListLock = new object(); | 82 | private object XMLRPCListLock = new object(); |
80 | private string m_name = "XMLRPCModule"; | 83 | private string m_name = "XMLRPCModule"; |
@@ -208,7 +211,7 @@ namespace OpenSim.Region.Environment.Modules | |||
208 | } | 211 | } |
209 | } | 212 | } |
210 | 213 | ||
211 | System.Collections.IEnumerator tmpEnumerator = tmp.GetEnumerator(); | 214 | IEnumerator tmpEnumerator = tmp.GetEnumerator(); |
212 | while ( tmpEnumerator.MoveNext() ) | 215 | while ( tmpEnumerator.MoveNext() ) |
213 | m_openChannels.Remove((LLUUID)tmpEnumerator.Current); | 216 | m_openChannels.Remove((LLUUID)tmpEnumerator.Current); |
214 | } | 217 | } |
@@ -559,7 +562,7 @@ namespace OpenSim.Region.Environment.Modules | |||
559 | private Thread httpThread; | 562 | private Thread httpThread; |
560 | public LLUUID m_itemID; | 563 | public LLUUID m_itemID; |
561 | public uint m_localID; | 564 | public uint m_localID; |
562 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 565 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
563 | 566 | ||
564 | public SendRemoteDataRequest(uint localID, LLUUID itemID, string channel, string dest, int idata, string sdata) | 567 | public SendRemoteDataRequest(uint localID, LLUUID itemID, string channel, string dest, int idata, string sdata) |
565 | { | 568 | { |
@@ -583,7 +586,7 @@ namespace OpenSim.Region.Environment.Modules | |||
583 | httpThread.IsBackground = true; | 586 | httpThread.IsBackground = true; |
584 | finished = false; | 587 | finished = false; |
585 | httpThread.Start(); | 588 | httpThread.Start(); |
586 | OpenSim.Framework.ThreadTracker.Add(httpThread); | 589 | ThreadTracker.Add(httpThread); |
587 | 590 | ||
588 | return reqID; | 591 | return reqID; |
589 | 592 | ||
@@ -648,7 +651,7 @@ namespace OpenSim.Region.Environment.Modules | |||
648 | } | 651 | } |
649 | } | 652 | } |
650 | } | 653 | } |
651 | catch (System.Net.WebException we) | 654 | catch (WebException we) |
652 | { | 655 | { |
653 | sdata = we.Message; | 656 | sdata = we.Message; |
654 | m_log.Warn("[SendRemoteDataRequest]: Request failed"); | 657 | m_log.Warn("[SendRemoteDataRequest]: Request failed"); |
diff --git a/OpenSim/Region/Environment/PermissionManager.cs b/OpenSim/Region/Environment/PermissionManager.cs index 29987d8..12ef110 100644 --- a/OpenSim/Region/Environment/PermissionManager.cs +++ b/OpenSim/Region/Environment/PermissionManager.cs | |||
@@ -26,8 +26,9 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using libsecondlife; | 28 | using libsecondlife; |
29 | using OpenSim.Region.Environment.Scenes; | ||
30 | using OpenSim.Region.Environment.Interfaces; | 29 | using OpenSim.Region.Environment.Interfaces; |
30 | using OpenSim.Region.Environment.Scenes; | ||
31 | |||
31 | namespace OpenSim.Region.Environment | 32 | namespace OpenSim.Region.Environment |
32 | { | 33 | { |
33 | public class PermissionManager | 34 | public class PermissionManager |
diff --git a/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs b/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs index 75d4870..fe9c8e7 100644 --- a/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs +++ b/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs | |||
@@ -25,11 +25,9 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Xml; | 29 | using System.Xml; |
31 | using libsecondlife; | 30 | using libsecondlife; |
32 | using OpenSim.Framework.Console; | ||
33 | 31 | ||
34 | namespace OpenSim.Region.Environment.Scenes | 32 | namespace OpenSim.Region.Environment.Scenes |
35 | { | 33 | { |
diff --git a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs index 750129b..8f29507 100644 --- a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs +++ b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | |||
@@ -26,11 +26,11 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Runtime.Serialization; | ||
30 | using System.Security.Permissions; | ||
29 | using libsecondlife; | 31 | using libsecondlife; |
30 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
31 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
32 | using System.Runtime.Serialization; | ||
33 | using System.Security.Permissions; | ||
34 | 34 | ||
35 | namespace OpenSim.Region.Environment.Scenes | 35 | namespace OpenSim.Region.Environment.Scenes |
36 | { | 36 | { |
@@ -159,7 +159,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
159 | 159 | ||
160 | if (info == null) | 160 | if (info == null) |
161 | { | 161 | { |
162 | throw new System.ArgumentNullException("info"); | 162 | throw new ArgumentNullException("info"); |
163 | } | 163 | } |
164 | 164 | ||
165 | m_scenePresenceID = new LLUUID((Guid)info.GetValue("m_scenePresenceID", typeof(Guid))); | 165 | m_scenePresenceID = new LLUUID((Guid)info.GetValue("m_scenePresenceID", typeof(Guid))); |
@@ -182,7 +182,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
182 | { | 182 | { |
183 | if (info == null) | 183 | if (info == null) |
184 | { | 184 | { |
185 | throw new System.ArgumentNullException("info"); | 185 | throw new ArgumentNullException("info"); |
186 | } | 186 | } |
187 | 187 | ||
188 | info.AddValue("m_scenePresenceID", m_scenePresenceID.UUID); | 188 | info.AddValue("m_scenePresenceID", m_scenePresenceID.UUID); |
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs index 438118f..1faba9a 100644 --- a/OpenSim/Region/Environment/Scenes/EntityBase.cs +++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs | |||
@@ -25,13 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | ||
29 | using Axiom.Math; | ||
30 | using libsecondlife; | ||
31 | |||
32 | using System; | 28 | using System; |
33 | using System.Runtime.Serialization; | 29 | using System.Runtime.Serialization; |
34 | using System.Security.Permissions; | 30 | using System.Security.Permissions; |
31 | using Axiom.Math; | ||
32 | using libsecondlife; | ||
35 | 33 | ||
36 | namespace OpenSim.Region.Environment.Scenes | 34 | namespace OpenSim.Region.Environment.Scenes |
37 | { | 35 | { |
@@ -145,7 +143,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
145 | 143 | ||
146 | if (info == null) | 144 | if (info == null) |
147 | { | 145 | { |
148 | throw new System.ArgumentNullException("info"); | 146 | throw new ArgumentNullException("info"); |
149 | } | 147 | } |
150 | 148 | ||
151 | m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid))); | 149 | m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid))); |
@@ -188,7 +186,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
188 | { | 186 | { |
189 | if (info == null) | 187 | if (info == null) |
190 | { | 188 | { |
191 | throw new System.ArgumentNullException("info"); | 189 | throw new ArgumentNullException("info"); |
192 | } | 190 | } |
193 | 191 | ||
194 | info.AddValue("m_uuid", m_uuid.UUID); | 192 | info.AddValue("m_uuid", m_uuid.UUID); |
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index 8894db0..329f900 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -27,11 +27,12 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using Axiom.Math; | 31 | using Axiom.Math; |
31 | using libsecondlife; | 32 | using libsecondlife; |
32 | using libsecondlife.Packets; | 33 | using libsecondlife.Packets; |
34 | using log4net; | ||
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Environment.Types; | 36 | using OpenSim.Region.Environment.Types; |
36 | using OpenSim.Region.Physics.Manager; | 37 | using OpenSim.Region.Physics.Manager; |
37 | 38 | ||
@@ -41,7 +42,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
41 | 42 | ||
42 | public class InnerScene | 43 | public class InnerScene |
43 | { | 44 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 46 | ||
46 | #region Events | 47 | #region Events |
47 | 48 | ||
@@ -295,7 +296,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
295 | 296 | ||
296 | public void AttachObject(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, LLQuaternion rot) | 297 | public void AttachObject(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, LLQuaternion rot) |
297 | { | 298 | { |
298 | System.Console.WriteLine("Attaching object " + objectLocalID + " to " + AttachmentPt); | 299 | Console.WriteLine("Attaching object " + objectLocalID + " to " + AttachmentPt); |
299 | SceneObjectPart p = GetSceneObjectPart(objectLocalID); | 300 | SceneObjectPart p = GetSceneObjectPart(objectLocalID); |
300 | if (p != null) | 301 | if (p != null) |
301 | { | 302 | { |
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index 2db9242..c5a1be1 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | |||
@@ -27,23 +27,21 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using Axiom.Math; | 30 | using System.Reflection; |
31 | using System.Text; | ||
31 | using libsecondlife; | 32 | using libsecondlife; |
32 | using libsecondlife.Packets; | 33 | using libsecondlife.Packets; |
34 | using log4net; | ||
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Communications.Cache; | 36 | using OpenSim.Framework.Communications.Cache; |
35 | using OpenSim.Framework.Console; | ||
36 | using System.IO; | ||
37 | using System.Text; | ||
38 | using System.Xml; | ||
39 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
40 | 38 | ||
41 | namespace OpenSim.Region.Environment.Scenes | 39 | namespace OpenSim.Region.Environment.Scenes |
42 | { | 40 | { |
43 | public partial class Scene | 41 | public partial class Scene |
44 | { | 42 | { |
45 | private static readonly log4net.ILog m_log | 43 | private static readonly ILog m_log |
46 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 44 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
47 | 45 | ||
48 | /// <summary> | 46 | /// <summary> |
49 | /// Start all the scripts in the scene which should be started. | 47 | /// Start all the scripts in the scene which should be started. |
@@ -454,7 +452,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
454 | InventoryItemBase item = userInfo.RootFolder.HasItem(itemID); | 452 | InventoryItemBase item = userInfo.RootFolder.HasItem(itemID); |
455 | if (item != null) | 453 | if (item != null) |
456 | { | 454 | { |
457 | if (newName != System.String.Empty) | 455 | if (newName != String.Empty) |
458 | { | 456 | { |
459 | item.Name = newName; | 457 | item.Name = newName; |
460 | } | 458 | } |
@@ -1014,7 +1012,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1014 | public void RezSingleAttachment(IClientAPI remoteClient, LLUUID itemID, uint AttachmentPt, | 1012 | public void RezSingleAttachment(IClientAPI remoteClient, LLUUID itemID, uint AttachmentPt, |
1015 | uint ItemFlags, uint NextOwnerMask) | 1013 | uint ItemFlags, uint NextOwnerMask) |
1016 | { | 1014 | { |
1017 | System.Console.WriteLine("RezSingleAttachment: unimplemented yet"); | 1015 | Console.WriteLine("RezSingleAttachment: unimplemented yet"); |
1018 | } | 1016 | } |
1019 | } | 1017 | } |
1020 | } | 1018 | } |
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs index 7e2c9ff..8fdb468 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |||
@@ -29,8 +29,6 @@ using System.Collections.Generic; | |||
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using libsecondlife.Packets; | 30 | using libsecondlife.Packets; |
31 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Framework.UserManagement; | ||
33 | using OpenSim.Framework.Console; | ||
34 | 32 | ||
35 | namespace OpenSim.Region.Environment.Scenes | 33 | namespace OpenSim.Region.Environment.Scenes |
36 | { | 34 | { |
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index a3f6948..6d8d481 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -40,11 +40,12 @@ using OpenSim.Framework.Communications; | |||
40 | using OpenSim.Framework.Communications.Cache; | 40 | using OpenSim.Framework.Communications.Cache; |
41 | using OpenSim.Framework.Servers; | 41 | using OpenSim.Framework.Servers; |
42 | using OpenSim.Region.Environment.Interfaces; | 42 | using OpenSim.Region.Environment.Interfaces; |
43 | using OpenSim.Region.Environment.Modules.Terrain; | ||
43 | using OpenSim.Region.Environment.Scenes.Scripting; | 44 | using OpenSim.Region.Environment.Scenes.Scripting; |
44 | using OpenSim.Region.Physics.Manager; | 45 | using OpenSim.Region.Physics.Manager; |
45 | using Caps = OpenSim.Region.Capabilities.Caps; | 46 | using Caps=OpenSim.Region.Capabilities.Caps; |
46 | using Image = System.Drawing.Image; | 47 | using Image=System.Drawing.Image; |
47 | using Timer = System.Timers.Timer; | 48 | using Timer=System.Timers.Timer; |
48 | 49 | ||
49 | namespace OpenSim.Region.Environment.Scenes | 50 | namespace OpenSim.Region.Environment.Scenes |
50 | { | 51 | { |
@@ -580,7 +581,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
580 | if (!avatar.IsChildAgent) | 581 | if (!avatar.IsChildAgent) |
581 | avatar.ControllingClient.Kick("The simulator is going down."); | 582 | avatar.ControllingClient.Kick("The simulator is going down."); |
582 | 583 | ||
583 | avatar.ControllingClient.OutPacket(PacketPool.Instance.GetPacket(libsecondlife.Packets.PacketType.DisableSimulator), | 584 | avatar.ControllingClient.OutPacket(PacketPool.Instance.GetPacket(PacketType.DisableSimulator), |
584 | ThrottleOutPacketType.Task); | 585 | ThrottleOutPacketType.Task); |
585 | }); | 586 | }); |
586 | 587 | ||
@@ -755,17 +756,17 @@ namespace OpenSim.Region.Environment.Scenes | |||
755 | { | 756 | { |
756 | throw; | 757 | throw; |
757 | } | 758 | } |
758 | catch (System.AccessViolationException e) | 759 | catch (AccessViolationException e) |
759 | { | 760 | { |
760 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); | 761 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); |
761 | 762 | ||
762 | } | 763 | } |
763 | catch (System.NullReferenceException e) | 764 | catch (NullReferenceException e) |
764 | { | 765 | { |
765 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); | 766 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); |
766 | 767 | ||
767 | } | 768 | } |
768 | catch (System.InvalidOperationException e) | 769 | catch (InvalidOperationException e) |
769 | { | 770 | { |
770 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); | 771 | m_log.Error("[Scene]: Failed with exception " + e.ToString() + " On Region: " + RegionInfo.RegionName); |
771 | 772 | ||
@@ -941,13 +942,13 @@ namespace OpenSim.Region.Environment.Scenes | |||
941 | if (map == null) | 942 | if (map == null) |
942 | { | 943 | { |
943 | m_log.Info("[TERRAIN]: No default terrain. Generating a new terrain."); | 944 | m_log.Info("[TERRAIN]: No default terrain. Generating a new terrain."); |
944 | Heightmap = new Modules.Terrain.TerrainChannel(); | 945 | Heightmap = new TerrainChannel(); |
945 | 946 | ||
946 | m_storageManager.DataStore.StoreTerrain(Heightmap.GetDoubles(), RegionInfo.RegionID); | 947 | m_storageManager.DataStore.StoreTerrain(Heightmap.GetDoubles(), RegionInfo.RegionID); |
947 | } | 948 | } |
948 | else | 949 | else |
949 | { | 950 | { |
950 | Heightmap = new Modules.Terrain.TerrainChannel(map); | 951 | Heightmap = new TerrainChannel(map); |
951 | } | 952 | } |
952 | 953 | ||
953 | } | 954 | } |
@@ -1094,7 +1095,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1094 | byte[] data; | 1095 | byte[] data; |
1095 | try | 1096 | try |
1096 | { | 1097 | { |
1097 | data = OpenJPEGNet.OpenJPEG.EncodeFromImage(mapbmp, false); | 1098 | data = OpenJPEG.EncodeFromImage(mapbmp, false); |
1098 | } | 1099 | } |
1099 | catch (Exception) | 1100 | catch (Exception) |
1100 | { | 1101 | { |
@@ -1420,7 +1421,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1420 | { | 1421 | { |
1421 | DeleteSceneObjectGroup(grp); | 1422 | DeleteSceneObjectGroup(grp); |
1422 | } | 1423 | } |
1423 | catch (System.Exception) | 1424 | catch (Exception) |
1424 | { | 1425 | { |
1425 | m_log.Warn("[DATABASE]: exception when trying to remove the prim that crossed the border."); | 1426 | m_log.Warn("[DATABASE]: exception when trying to remove the prim that crossed the border."); |
1426 | } | 1427 | } |
@@ -1714,7 +1715,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1714 | { | 1715 | { |
1715 | client.SendKillObject(avatar.RegionHandle, avatar.LocalId); | 1716 | client.SendKillObject(avatar.RegionHandle, avatar.LocalId); |
1716 | } | 1717 | } |
1717 | catch (System.NullReferenceException) | 1718 | catch (NullReferenceException) |
1718 | { | 1719 | { |
1719 | //We can safely ignore null reference exceptions. It means the avatar are dead and cleaned up anyway. | 1720 | //We can safely ignore null reference exceptions. It means the avatar are dead and cleaned up anyway. |
1720 | } | 1721 | } |
@@ -2041,7 +2042,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2041 | m_innerScene.removeUserCount(true); | 2042 | m_innerScene.removeUserCount(true); |
2042 | } | 2043 | } |
2043 | // Tell a single agent to disconnect from the region. | 2044 | // Tell a single agent to disconnect from the region. |
2044 | libsecondlife.Packets.DisableSimulatorPacket disable = (libsecondlife.Packets.DisableSimulatorPacket)PacketPool.Instance.GetPacket(libsecondlife.Packets.PacketType.DisableSimulator); | 2045 | DisableSimulatorPacket disable = (DisableSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.DisableSimulator); |
2045 | presence.ControllingClient.OutPacket(disable, ThrottleOutPacketType.Unknown); | 2046 | presence.ControllingClient.OutPacket(disable, ThrottleOutPacketType.Unknown); |
2046 | presence.ControllingClient.Close(true); | 2047 | presence.ControllingClient.Close(true); |
2047 | } | 2048 | } |
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index 5551173..d9dc1da 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -27,18 +27,18 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
31 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
32 | using OpenSim.Framework.Communications.Cache; | 34 | using OpenSim.Framework.Communications.Cache; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Terrain; | ||
35 | using OpenSim.Region.Environment.Interfaces; | 35 | using OpenSim.Region.Environment.Interfaces; |
36 | 36 | ||
37 | namespace OpenSim.Region.Environment.Scenes | 37 | namespace OpenSim.Region.Environment.Scenes |
38 | { | 38 | { |
39 | public abstract class SceneBase : IScene | 39 | public abstract class SceneBase : IScene |
40 | { | 40 | { |
41 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | #region Events | 43 | #region Events |
44 | 44 | ||
@@ -204,7 +204,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
204 | /// <summary> | 204 | /// <summary> |
205 | /// XXX These two methods are very temporary | 205 | /// XXX These two methods are very temporary |
206 | /// </summary> | 206 | /// </summary> |
207 | protected Dictionary<LLUUID, String> capsPaths = new Dictionary<LLUUID, String>(); | 207 | protected Dictionary<LLUUID, string> capsPaths = new Dictionary<LLUUID, string>(); |
208 | public string GetCapsPath(LLUUID agentId) | 208 | public string GetCapsPath(LLUUID agentId) |
209 | { | 209 | { |
210 | if (capsPaths.ContainsKey(agentId)) | 210 | if (capsPaths.ContainsKey(agentId)) |
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs index db2327e..0062e4d 100644 --- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | |||
@@ -28,10 +28,11 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Net; | 30 | using System.Net; |
31 | using System.Reflection; | ||
31 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
32 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Communications; | 35 | using OpenSim.Framework.Communications; |
34 | using OpenSim.Framework.Console; | ||
35 | 36 | ||
36 | namespace OpenSim.Region.Environment.Scenes | 37 | namespace OpenSim.Region.Environment.Scenes |
37 | { | 38 | { |
@@ -41,7 +42,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
41 | 42 | ||
42 | public class SceneCommunicationService //one instance per region | 43 | public class SceneCommunicationService //one instance per region |
43 | { | 44 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 46 | ||
46 | protected CommunicationsManager m_commsProvider; | 47 | protected CommunicationsManager m_commsProvider; |
47 | protected RegionInfo m_regionInfo; | 48 | protected RegionInfo m_regionInfo; |
@@ -416,7 +417,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
416 | } | 417 | } |
417 | } | 418 | } |
418 | } | 419 | } |
419 | catch (System.InvalidOperationException) | 420 | catch (InvalidOperationException) |
420 | { | 421 | { |
421 | // We're ignoring a collection was modified error because this data gets old and outdated fast. | 422 | // We're ignoring a collection was modified error because this data gets old and outdated fast. |
422 | } | 423 | } |
diff --git a/OpenSim/Region/Environment/Scenes/SceneEvents.cs b/OpenSim/Region/Environment/Scenes/SceneEvents.cs index 5cf8ece..c9c0ad6 100644 --- a/OpenSim/Region/Environment/Scenes/SceneEvents.cs +++ b/OpenSim/Region/Environment/Scenes/SceneEvents.cs | |||
@@ -25,11 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using libsecondlife; | ||
29 | using System; | 28 | using System; |
29 | using libsecondlife; | ||
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Region.Environment.Interfaces; | 31 | using OpenSim.Region.Environment.Interfaces; |
32 | using Caps = OpenSim.Region.Capabilities.Caps; | 32 | using Caps=OpenSim.Region.Capabilities.Caps; |
33 | 33 | ||
34 | namespace OpenSim.Region.Environment.Scenes | 34 | namespace OpenSim.Region.Environment.Scenes |
35 | { | 35 | { |
@@ -155,7 +155,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
155 | public delegate void DeregisterCapsEvent(LLUUID agentID, Caps caps); | 155 | public delegate void DeregisterCapsEvent(LLUUID agentID, Caps caps); |
156 | public event DeregisterCapsEvent OnDeregisterCaps; | 156 | public event DeregisterCapsEvent OnDeregisterCaps; |
157 | 157 | ||
158 | public class MoneyTransferArgs : System.EventArgs | 158 | public class MoneyTransferArgs : EventArgs |
159 | { | 159 | { |
160 | public LLUUID sender; | 160 | public LLUUID sender; |
161 | public LLUUID receiver; | 161 | public LLUUID receiver; |
@@ -176,7 +176,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
176 | } | 176 | } |
177 | } | 177 | } |
178 | 178 | ||
179 | public class LandBuyArgs : System.EventArgs | 179 | public class LandBuyArgs : EventArgs |
180 | { | 180 | { |
181 | public LLUUID agentId = LLUUID.Zero; | 181 | public LLUUID agentId = LLUUID.Zero; |
182 | 182 | ||
diff --git a/OpenSim/Region/Environment/Scenes/SceneManager.cs b/OpenSim/Region/Environment/Scenes/SceneManager.cs index 102be30..61a4eae 100644 --- a/OpenSim/Region/Environment/Scenes/SceneManager.cs +++ b/OpenSim/Region/Environment/Scenes/SceneManager.cs | |||
@@ -28,10 +28,10 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Net; | 30 | using System.Net; |
31 | using System.Net.Sockets; | 31 | using System.Reflection; |
32 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
33 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | 35 | ||
36 | namespace OpenSim.Region.Environment.Scenes | 36 | namespace OpenSim.Region.Environment.Scenes |
37 | { | 37 | { |
@@ -39,7 +39,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
39 | 39 | ||
40 | public class SceneManager | 40 | public class SceneManager |
41 | { | 41 | { |
42 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
43 | 43 | ||
44 | public event RestartSim OnRestartSim; | 44 | public event RestartSim OnRestartSim; |
45 | 45 | ||
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs index 495b604..d9808e6 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |||
@@ -25,19 +25,17 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System.Reflection; |
29 | |||
30 | using libsecondlife; | 29 | using libsecondlife; |
31 | 30 | using log4net; | |
32 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 32 | using OpenSim.Region.Environment.Interfaces; |
35 | 33 | ||
36 | namespace OpenSim.Region.Environment.Scenes | 34 | namespace OpenSim.Region.Environment.Scenes |
37 | { | 35 | { |
38 | public partial class SceneObjectGroup : EntityBase | 36 | public partial class SceneObjectGroup : EntityBase |
39 | { | 37 | { |
40 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 38 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
41 | 39 | ||
42 | /// <summary> | 40 | /// <summary> |
43 | /// Start a given script. | 41 | /// Start a given script. |
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index 7abaaee..8651d7e 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -29,13 +29,11 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Drawing; | 30 | using System.Drawing; |
31 | using System.IO; | 31 | using System.IO; |
32 | using System.Text; | ||
33 | using System.Xml; | 32 | using System.Xml; |
34 | using Axiom.Math; | 33 | using Axiom.Math; |
35 | using libsecondlife; | 34 | using libsecondlife; |
36 | using libsecondlife.Packets; | 35 | using libsecondlife.Packets; |
37 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
38 | using OpenSim.Framework.Console; | ||
39 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
40 | using OpenSim.Region.Physics.Manager; | 38 | using OpenSim.Region.Physics.Manager; |
41 | 39 | ||
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs index 8ce71c4..72f78f3 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs | |||
@@ -27,13 +27,11 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Xml.Serialization; | 30 | using System.Reflection; |
31 | |||
32 | using libsecondlife; | 31 | using libsecondlife; |
33 | 32 | using log4net; | |
34 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Communications.Cache; | 34 | using OpenSim.Framework.Communications.Cache; |
36 | using OpenSim.Framework.Console; | ||
37 | using OpenSim.Region.Environment.Interfaces; | 35 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes.Scripting; | 36 | using OpenSim.Region.Environment.Scenes.Scripting; |
39 | 37 | ||
@@ -41,7 +39,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
41 | { | 39 | { |
42 | public partial class SceneObjectPart : IScriptHost | 40 | public partial class SceneObjectPart : IScriptHost |
43 | { | 41 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 43 | ||
46 | private string m_inventoryFileName = String.Empty; | 44 | private string m_inventoryFileName = String.Empty; |
47 | 45 | ||
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 61d10c9..40a9fcf 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -28,18 +28,16 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Drawing; | 30 | using System.Drawing; |
31 | using System.Runtime.Serialization; | ||
32 | using System.Security.Permissions; | ||
31 | using System.Xml; | 33 | using System.Xml; |
32 | using System.Xml.Serialization; | 34 | using System.Xml.Serialization; |
33 | using Axiom.Math; | 35 | using Axiom.Math; |
34 | using libsecondlife; | 36 | using libsecondlife; |
35 | using libsecondlife.Packets; | 37 | using libsecondlife.Packets; |
36 | using OpenSim.Framework; | 38 | using OpenSim.Framework; |
37 | using OpenSim.Framework.Console; | ||
38 | using OpenSim.Region.Environment.Interfaces; | ||
39 | using OpenSim.Region.Environment.Scenes.Scripting; | 39 | using OpenSim.Region.Environment.Scenes.Scripting; |
40 | using OpenSim.Region.Physics.Manager; | 40 | using OpenSim.Region.Physics.Manager; |
41 | using System.Runtime.Serialization; | ||
42 | using System.Security.Permissions; | ||
43 | 41 | ||
44 | namespace OpenSim.Region.Environment.Scenes | 42 | namespace OpenSim.Region.Environment.Scenes |
45 | { | 43 | { |
@@ -324,7 +322,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
324 | ParentGroup.ResetChildPrimPhysicsPositions(); | 322 | ParentGroup.ResetChildPrimPhysicsPositions(); |
325 | 323 | ||
326 | } | 324 | } |
327 | catch (System.NullReferenceException) | 325 | catch (NullReferenceException) |
328 | { | 326 | { |
329 | // Ignore, and skip over. | 327 | // Ignore, and skip over. |
330 | } | 328 | } |
@@ -2326,7 +2324,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2326 | 2324 | ||
2327 | if (info == null) | 2325 | if (info == null) |
2328 | { | 2326 | { |
2329 | throw new System.ArgumentNullException("info"); | 2327 | throw new ArgumentNullException("info"); |
2330 | } | 2328 | } |
2331 | 2329 | ||
2332 | /* | 2330 | /* |
@@ -2344,7 +2342,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2344 | { | 2342 | { |
2345 | if (info == null) | 2343 | if (info == null) |
2346 | { | 2344 | { |
2347 | throw new System.ArgumentNullException("info"); | 2345 | throw new ArgumentNullException("info"); |
2348 | } | 2346 | } |
2349 | 2347 | ||
2350 | info.AddValue("m_inventoryFileName", m_inventoryFileName); | 2348 | info.AddValue("m_inventoryFileName", m_inventoryFileName); |
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 8b8373d..d85eea6 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -27,16 +27,16 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
31 | using System.Runtime.Serialization; | ||
32 | using System.Security.Permissions; | ||
30 | using Axiom.Math; | 33 | using Axiom.Math; |
31 | using libsecondlife; | 34 | using libsecondlife; |
32 | using libsecondlife.Packets; | 35 | using libsecondlife.Packets; |
36 | using log4net; | ||
33 | using OpenSim.Framework; | 37 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Environment.Types; | 38 | using OpenSim.Region.Environment.Types; |
36 | using OpenSim.Region.Physics.Manager; | 39 | using OpenSim.Region.Physics.Manager; |
37 | using OpenSim.Region.Environment.Interfaces; | ||
38 | using System.Runtime.Serialization; | ||
39 | using System.Security.Permissions; | ||
40 | 40 | ||
41 | namespace OpenSim.Region.Environment.Scenes | 41 | namespace OpenSim.Region.Environment.Scenes |
42 | { | 42 | { |
@@ -48,7 +48,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
48 | // System.Console.WriteLine("[ScenePresence] Destructor called"); | 48 | // System.Console.WriteLine("[ScenePresence] Destructor called"); |
49 | // } | 49 | // } |
50 | 50 | ||
51 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 51 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
52 | 52 | ||
53 | public static AvatarAnimations Animations = new AvatarAnimations(); | 53 | public static AvatarAnimations Animations = new AvatarAnimations(); |
54 | public static byte[] DefaultTexture; | 54 | public static byte[] DefaultTexture; |
@@ -1746,7 +1746,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1746 | movementvector.Z = force.Z; | 1746 | movementvector.Z = force.Z; |
1747 | Velocity = movementvector; | 1747 | Velocity = movementvector; |
1748 | } | 1748 | } |
1749 | catch (System.NullReferenceException) | 1749 | catch (NullReferenceException) |
1750 | { | 1750 | { |
1751 | // Under extreme load, this returns a NullReference Exception that we can ignore. | 1751 | // Under extreme load, this returns a NullReference Exception that we can ignore. |
1752 | // Ignoring this causes no movement to be sent to the physics engine... | 1752 | // Ignoring this causes no movement to be sent to the physics engine... |
@@ -1800,7 +1800,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1800 | 1800 | ||
1801 | if (info == null) | 1801 | if (info == null) |
1802 | { | 1802 | { |
1803 | throw new System.ArgumentNullException("info"); | 1803 | throw new ArgumentNullException("info"); |
1804 | } | 1804 | } |
1805 | 1805 | ||
1806 | FullID = new LLUUID((Guid)info.GetValue("FullID", typeof(Guid))); | 1806 | FullID = new LLUUID((Guid)info.GetValue("FullID", typeof(Guid))); |
@@ -1817,7 +1817,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1817 | { | 1817 | { |
1818 | if (info == null) | 1818 | if (info == null) |
1819 | { | 1819 | { |
1820 | throw new System.ArgumentNullException("info"); | 1820 | throw new ArgumentNullException("info"); |
1821 | } | 1821 | } |
1822 | 1822 | ||
1823 | info.AddValue("FullID", FullID.UUID); | 1823 | info.AddValue("FullID", FullID.UUID); |
@@ -1928,7 +1928,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1928 | 1928 | ||
1929 | if (info == null) | 1929 | if (info == null) |
1930 | { | 1930 | { |
1931 | throw new System.ArgumentNullException("info"); | 1931 | throw new ArgumentNullException("info"); |
1932 | } | 1932 | } |
1933 | /* JB | 1933 | /* JB |
1934 | if (Animations == null) | 1934 | if (Animations == null) |
@@ -2100,7 +2100,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2100 | { | 2100 | { |
2101 | if (info == null) | 2101 | if (info == null) |
2102 | { | 2102 | { |
2103 | throw new System.ArgumentNullException("info"); | 2103 | throw new ArgumentNullException("info"); |
2104 | } | 2104 | } |
2105 | 2105 | ||
2106 | base.GetObjectData(info, context); | 2106 | base.GetObjectData(info, context); |
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs index 18b3f46..b1ee519 100644 --- a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs +++ b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs | |||
@@ -25,8 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using OpenSim.Framework.Console; | ||
29 | |||
30 | //TODO: WHERE TO PLACE THIS? | 28 | //TODO: WHERE TO PLACE THIS? |
31 | 29 | ||
32 | namespace OpenSim.Region.Environment.Scenes.Scripting | 30 | namespace OpenSim.Region.Environment.Scenes.Scripting |
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineLoader.cs b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineLoader.cs index 7dee2e4..6216e2c 100644 --- a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineLoader.cs +++ b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineLoader.cs | |||
@@ -29,13 +29,13 @@ | |||
29 | using System; | 29 | using System; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using OpenSim.Framework.Console; | 32 | using log4net; |
33 | 33 | ||
34 | namespace OpenSim.Region.Environment.Scenes.Scripting | 34 | namespace OpenSim.Region.Environment.Scenes.Scripting |
35 | { | 35 | { |
36 | public class ScriptEngineLoader | 36 | public class ScriptEngineLoader |
37 | { | 37 | { |
38 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 38 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | 39 | ||
40 | public ScriptEngineInterface LoadScriptEngine(string EngineName) | 40 | public ScriptEngineInterface LoadScriptEngine(string EngineName) |
41 | { | 41 | { |
diff --git a/OpenSim/Region/Environment/StorageManager.cs b/OpenSim/Region/Environment/StorageManager.cs index 4cbadba..b9a42a2 100644 --- a/OpenSim/Region/Environment/StorageManager.cs +++ b/OpenSim/Region/Environment/StorageManager.cs | |||
@@ -27,14 +27,14 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | 29 | using System.Reflection; |
30 | using OpenSim.Framework.Console; | 30 | using log4net; |
31 | using OpenSim.Region.Environment.Interfaces; | 31 | using OpenSim.Region.Environment.Interfaces; |
32 | 32 | ||
33 | namespace OpenSim.Region.Environment | 33 | namespace OpenSim.Region.Environment |
34 | { | 34 | { |
35 | public class StorageManager | 35 | public class StorageManager |
36 | { | 36 | { |
37 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 37 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
38 | 38 | ||
39 | private IRegionDataStore m_dataStore; | 39 | private IRegionDataStore m_dataStore; |
40 | 40 | ||
diff --git a/OpenSim/Region/Environment/Types/BasicQuadTreeNode.cs b/OpenSim/Region/Environment/Types/BasicQuadTreeNode.cs index f1f2302..24ce94b 100644 --- a/OpenSim/Region/Environment/Types/BasicQuadTreeNode.cs +++ b/OpenSim/Region/Environment/Types/BasicQuadTreeNode.cs | |||
@@ -25,6 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
29 | using OpenSim.Region.Environment.Scenes; | 30 | using OpenSim.Region.Environment.Scenes; |
30 | 31 | ||
@@ -261,7 +262,7 @@ namespace OpenSim.Region.Environment.Types | |||
261 | public string[] GetNeighbours(string nodeName) | 262 | public string[] GetNeighbours(string nodeName) |
262 | { | 263 | { |
263 | string[] retVal = new string[1]; | 264 | string[] retVal = new string[1]; |
264 | retVal[0] = System.String.Empty; | 265 | retVal[0] = String.Empty; |
265 | return retVal; | 266 | return retVal; |
266 | } | 267 | } |
267 | } | 268 | } |
diff --git a/OpenSim/Region/Environment/Types/UpdateQueue.cs b/OpenSim/Region/Environment/Types/UpdateQueue.cs index 4d273ce..ec1ffd2 100644 --- a/OpenSim/Region/Environment/Types/UpdateQueue.cs +++ b/OpenSim/Region/Environment/Types/UpdateQueue.cs | |||
@@ -25,13 +25,12 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
29 | using libsecondlife; | ||
30 | using OpenSim.Region.Environment.Scenes; | ||
31 | |||
32 | using System; | ||
33 | using System.Runtime.Serialization; | 30 | using System.Runtime.Serialization; |
34 | using System.Security.Permissions; | 31 | using System.Security.Permissions; |
32 | using libsecondlife; | ||
33 | using OpenSim.Region.Environment.Scenes; | ||
35 | 34 | ||
36 | namespace OpenSim.Region.Environment.Types | 35 | namespace OpenSim.Region.Environment.Types |
37 | { | 36 | { |
@@ -97,7 +96,7 @@ namespace OpenSim.Region.Environment.Types | |||
97 | 96 | ||
98 | if (info == null) | 97 | if (info == null) |
99 | { | 98 | { |
100 | throw new System.ArgumentNullException("info"); | 99 | throw new ArgumentNullException("info"); |
101 | } | 100 | } |
102 | 101 | ||
103 | m_queue = (Queue<SceneObjectPart>)info.GetValue("m_queue", typeof(Queue<SceneObjectPart>)); | 102 | m_queue = (Queue<SceneObjectPart>)info.GetValue("m_queue", typeof(Queue<SceneObjectPart>)); |
@@ -118,7 +117,7 @@ namespace OpenSim.Region.Environment.Types | |||
118 | { | 117 | { |
119 | if (info == null) | 118 | if (info == null) |
120 | { | 119 | { |
121 | throw new System.ArgumentNullException("info"); | 120 | throw new ArgumentNullException("info"); |
122 | } | 121 | } |
123 | 122 | ||
124 | List<Guid> ids_work = new List<Guid>(); | 123 | List<Guid> ids_work = new List<Guid>(); |
diff --git a/OpenSim/Region/Examples/SimpleModule/Properties/AssemblyInfo.cs b/OpenSim/Region/Examples/SimpleModule/Properties/AssemblyInfo.cs index aeb79e0..e0e8fd9 100644 --- a/OpenSim/Region/Examples/SimpleModule/Properties/AssemblyInfo.cs +++ b/OpenSim/Region/Examples/SimpleModule/Properties/AssemblyInfo.cs | |||
@@ -26,7 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Reflection; | 28 | using System.Reflection; |
29 | using System.Runtime.CompilerServices; | ||
30 | using System.Runtime.InteropServices; | 29 | using System.Runtime.InteropServices; |
31 | 30 | ||
32 | // General Information about an assembly is controlled through the following | 31 | // General Information about an assembly is controlled through the following |
diff --git a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs index 218908c..6e9fe6d 100644 --- a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs +++ b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs | |||
@@ -25,10 +25,8 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.IO; | 29 | using System.IO; |
31 | using System.Text; | ||
32 | using libsecondlife; | 30 | using libsecondlife; |
33 | using Nini.Config; | 31 | using Nini.Config; |
34 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
diff --git a/OpenSim/Region/ExtensionsScriptModule/Engines/CSharp/CSharpScriptEngine.cs b/OpenSim/Region/ExtensionsScriptModule/Engines/CSharp/CSharpScriptEngine.cs index deb289f..43049fc 100644 --- a/OpenSim/Region/ExtensionsScriptModule/Engines/CSharp/CSharpScriptEngine.cs +++ b/OpenSim/Region/ExtensionsScriptModule/Engines/CSharp/CSharpScriptEngine.cs | |||
@@ -28,14 +28,15 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.CodeDom.Compiler; | 29 | using System.CodeDom.Compiler; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
32 | using log4net; | ||
31 | using Microsoft.CSharp; | 33 | using Microsoft.CSharp; |
32 | using OpenSim.Framework.Console; | ||
33 | 34 | ||
34 | namespace OpenSim.Region.ExtensionsScriptModule.CSharp | 35 | namespace OpenSim.Region.ExtensionsScriptModule.CSharp |
35 | { | 36 | { |
36 | public class CSharpScriptEngine : IScriptCompiler | 37 | public class CSharpScriptEngine : IScriptCompiler |
37 | { | 38 | { |
38 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | 40 | ||
40 | public string FileExt() | 41 | public string FileExt() |
41 | { | 42 | { |
diff --git a/OpenSim/Region/ExtensionsScriptModule/Engines/JScript/JScriptEngine.cs b/OpenSim/Region/ExtensionsScriptModule/Engines/JScript/JScriptEngine.cs index f5689cb..52afe3f 100644 --- a/OpenSim/Region/ExtensionsScriptModule/Engines/JScript/JScriptEngine.cs +++ b/OpenSim/Region/ExtensionsScriptModule/Engines/JScript/JScriptEngine.cs | |||
@@ -28,14 +28,15 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.CodeDom.Compiler; | 29 | using System.CodeDom.Compiler; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
32 | using log4net; | ||
31 | using Microsoft.JScript; | 33 | using Microsoft.JScript; |
32 | using OpenSim.Framework.Console; | ||
33 | 34 | ||
34 | namespace OpenSim.Region.ExtensionsScriptModule.JScript | 35 | namespace OpenSim.Region.ExtensionsScriptModule.JScript |
35 | { | 36 | { |
36 | public class JScriptEngine : IScriptCompiler | 37 | public class JScriptEngine : IScriptCompiler |
37 | { | 38 | { |
38 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | 40 | ||
40 | public string FileExt() | 41 | public string FileExt() |
41 | { | 42 | { |
diff --git a/OpenSim/Region/ExtensionsScriptModule/Engines/JVMEngine/JVM/Interpreter.Methods.cs b/OpenSim/Region/ExtensionsScriptModule/Engines/JVMEngine/JVM/Interpreter.Methods.cs index 16c6e79..efd01e9 100644 --- a/OpenSim/Region/ExtensionsScriptModule/Engines/JVMEngine/JVM/Interpreter.Methods.cs +++ b/OpenSim/Region/ExtensionsScriptModule/Engines/JVMEngine/JVM/Interpreter.Methods.cs | |||
@@ -25,6 +25,8 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | |||
28 | namespace OpenSim.Region.ExtensionsScriptModule.JVMEngine.JVM | 30 | namespace OpenSim.Region.ExtensionsScriptModule.JVMEngine.JVM |
29 | { | 31 | { |
30 | partial class Thread | 32 | partial class Thread |
@@ -46,8 +48,8 @@ namespace OpenSim.Region.ExtensionsScriptModule.JVMEngine.JVM | |||
46 | string typ = | 48 | string typ = |
47 | ((ClassRecord.PoolMethodRef) m_thread.currentClass.m_constantsPool[refIndex - 1]). | 49 | ((ClassRecord.PoolMethodRef) m_thread.currentClass.m_constantsPool[refIndex - 1]). |
48 | mNameType.Type.Value; | 50 | mNameType.Type.Value; |
49 | string typeparam = System.String.Empty; | 51 | string typeparam = String.Empty; |
50 | string typereturn = System.String.Empty; | 52 | string typereturn = String.Empty; |
51 | int firstbrak = 0; | 53 | int firstbrak = 0; |
52 | int secondbrak = 0; | 54 | int secondbrak = 0; |
53 | firstbrak = typ.LastIndexOf('('); | 55 | firstbrak = typ.LastIndexOf('('); |
diff --git a/OpenSim/Region/ExtensionsScriptModule/ScriptInfo.cs b/OpenSim/Region/ExtensionsScriptModule/ScriptInfo.cs index 428192f..16c449f 100644 --- a/OpenSim/Region/ExtensionsScriptModule/ScriptInfo.cs +++ b/OpenSim/Region/ExtensionsScriptModule/ScriptInfo.cs | |||
@@ -25,8 +25,9 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Reflection; | ||
28 | using libsecondlife; | 29 | using libsecondlife; |
29 | using OpenSim.Framework.Console; | 30 | using log4net; |
30 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
31 | 32 | ||
32 | namespace OpenSim.Region.ExtensionsScriptModule | 33 | namespace OpenSim.Region.ExtensionsScriptModule |
@@ -36,7 +37,7 @@ namespace OpenSim.Region.ExtensionsScriptModule | |||
36 | /// </summary> | 37 | /// </summary> |
37 | public class ScriptInfo | 38 | public class ScriptInfo |
38 | { | 39 | { |
39 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 40 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | 41 | ||
41 | // Reference to world.eventsManager provided for convenience | 42 | // Reference to world.eventsManager provided for convenience |
42 | public EventManager events; | 43 | public EventManager events; |
@@ -47,7 +48,7 @@ namespace OpenSim.Region.ExtensionsScriptModule | |||
47 | // API Access | 48 | // API Access |
48 | public ScriptAPI api; | 49 | public ScriptAPI api; |
49 | 50 | ||
50 | public log4net.ILog Log | 51 | public ILog Log |
51 | { | 52 | { |
52 | get { return m_log; } | 53 | get { return m_log; } |
53 | } | 54 | } |
diff --git a/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedAPI.cs b/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedAPI.cs index d0a0e86..a11fb0f 100644 --- a/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedAPI.cs +++ b/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedAPI.cs | |||
@@ -26,9 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | ||
29 | using System.Text; | 30 | using System.Text; |
30 | using Axiom.Math; | 31 | using Axiom.Math; |
31 | using OpenSim.Framework.Console; | 32 | using log4net; |
32 | using OpenSim.Region.Environment.Interfaces; | 33 | using OpenSim.Region.Environment.Interfaces; |
33 | using OpenSim.Region.Environment.Scenes; | 34 | using OpenSim.Region.Environment.Scenes; |
34 | using Key = libsecondlife.LLUUID; | 35 | using Key = libsecondlife.LLUUID; |
@@ -44,7 +45,7 @@ namespace OpenSim.Region.ExtensionsScriptModule | |||
44 | /// <remarks>Avoid at all costs. This should ONLY be used for LSL.</remarks> | 45 | /// <remarks>Avoid at all costs. This should ONLY be used for LSL.</remarks> |
45 | internal class ScriptInterpretedAPI | 46 | internal class ScriptInterpretedAPI |
46 | { | 47 | { |
47 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 49 | ||
49 | protected Key m_object; | 50 | protected Key m_object; |
50 | protected Scene m_scene; | 51 | protected Scene m_scene; |
diff --git a/OpenSim/Region/ExtensionsScriptModule/ScriptManager.cs b/OpenSim/Region/ExtensionsScriptModule/ScriptManager.cs index 9edc6dc..8c11f7a 100644 --- a/OpenSim/Region/ExtensionsScriptModule/ScriptManager.cs +++ b/OpenSim/Region/ExtensionsScriptModule/ScriptManager.cs | |||
@@ -26,8 +26,9 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.Reflection; | ||
30 | using log4net; | ||
29 | using Nini.Config; | 31 | using Nini.Config; |
30 | using OpenSim.Framework.Console; | ||
31 | using OpenSim.Region.Environment.Interfaces; | 32 | using OpenSim.Region.Environment.Interfaces; |
32 | using OpenSim.Region.Environment.Scenes; | 33 | using OpenSim.Region.Environment.Scenes; |
33 | using OpenSim.Region.ExtensionsScriptModule.CSharp; | 34 | using OpenSim.Region.ExtensionsScriptModule.CSharp; |
@@ -38,7 +39,7 @@ namespace OpenSim.Region.ExtensionsScriptModule | |||
38 | { | 39 | { |
39 | public class ScriptManager : IRegionModule, IExtensionScriptModule | 40 | public class ScriptManager : IRegionModule, IExtensionScriptModule |
40 | { | 41 | { |
41 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 42 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 43 | ||
43 | private readonly List<IScript> scripts = new List<IScript>(); | 44 | private readonly List<IScript> scripts = new List<IScript>(); |
44 | private Scene m_scene; | 45 | private Scene m_scene; |
diff --git a/OpenSim/Region/Modules/AvatarFactory/AppearanceTableMapper.cs b/OpenSim/Region/Modules/AvatarFactory/AppearanceTableMapper.cs index d6ef1fb..2d9f32f 100644 --- a/OpenSim/Region/Modules/AvatarFactory/AppearanceTableMapper.cs +++ b/OpenSim/Region/Modules/AvatarFactory/AppearanceTableMapper.cs | |||
@@ -26,11 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using libsecondlife; |
30 | using System.Text; | ||
31 | using OpenSim.Region.Environment.Scenes; | ||
32 | using OpenSim.Framework; | ||
33 | using OpenSim.Data.Base; | 30 | using OpenSim.Data.Base; |
31 | using OpenSim.Framework; | ||
32 | using OpenSim.Region.Environment.Scenes; | ||
34 | 33 | ||
35 | namespace OpenSim.Region.Modules.AvatarFactory | 34 | namespace OpenSim.Region.Modules.AvatarFactory |
36 | { | 35 | { |
@@ -52,7 +51,7 @@ namespace OpenSim.Region.Modules.AvatarFactory | |||
52 | 51 | ||
53 | m_keyFieldMapper = rowMapperSchema.AddMapping<Guid>("UUID", | 52 | m_keyFieldMapper = rowMapperSchema.AddMapping<Guid>("UUID", |
54 | delegate(AppearanceRowMapper mapper) { return mapper.Object.ScenePresenceID.UUID; }, | 53 | delegate(AppearanceRowMapper mapper) { return mapper.Object.ScenePresenceID.UUID; }, |
55 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.ScenePresenceID = new libsecondlife.LLUUID(value.ToString()); }); | 54 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.ScenePresenceID = new LLUUID(value.ToString()); }); |
56 | 55 | ||
57 | rowMapperSchema.AddMapping<uint>("Serial", | 56 | rowMapperSchema.AddMapping<uint>("Serial", |
58 | delegate(AppearanceRowMapper mapper) { return (uint)mapper.Object.WearablesSerial; }, | 57 | delegate(AppearanceRowMapper mapper) { return (uint)mapper.Object.WearablesSerial; }, |
@@ -64,127 +63,127 @@ namespace OpenSim.Region.Modules.AvatarFactory | |||
64 | { | 63 | { |
65 | if (mapper.Object.Wearables == null) | 64 | if (mapper.Object.Wearables == null) |
66 | { | 65 | { |
67 | mapper.Object.Wearables = new OpenSim.Framework.AvatarWearable[13]; | 66 | mapper.Object.Wearables = new AvatarWearable[13]; |
68 | for (int i = 0; i < 13; i++) | 67 | for (int i = 0; i < 13; i++) |
69 | { | 68 | { |
70 | mapper.Object.Wearables[i] = new AvatarWearable(); | 69 | mapper.Object.Wearables[i] = new AvatarWearable(); |
71 | } | 70 | } |
72 | } | 71 | } |
73 | mapper.Object.Wearables[0].ItemID = new libsecondlife.LLUUID(value.ToString()); | 72 | mapper.Object.Wearables[0].ItemID = new LLUUID(value.ToString()); |
74 | }); | 73 | }); |
75 | 74 | ||
76 | rowMapperSchema.AddMapping<Guid>("WearableAsset0", | 75 | rowMapperSchema.AddMapping<Guid>("WearableAsset0", |
77 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[0].AssetID.UUID; }, | 76 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[0].AssetID.UUID; }, |
78 | delegate(AppearanceRowMapper mapper, Guid value) | 77 | delegate(AppearanceRowMapper mapper, Guid value) |
79 | { mapper.Object.Wearables[0].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 78 | { mapper.Object.Wearables[0].AssetID = new LLUUID(value.ToString()); }); |
80 | 79 | ||
81 | rowMapperSchema.AddMapping<Guid>("WearableItem1", | 80 | rowMapperSchema.AddMapping<Guid>("WearableItem1", |
82 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[1].ItemID.UUID; }, | 81 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[1].ItemID.UUID; }, |
83 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[1].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 82 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[1].ItemID = new LLUUID(value.ToString()); }); |
84 | 83 | ||
85 | rowMapperSchema.AddMapping<Guid>("WearableAsset1", | 84 | rowMapperSchema.AddMapping<Guid>("WearableAsset1", |
86 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[1].AssetID.UUID; }, | 85 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[1].AssetID.UUID; }, |
87 | delegate(AppearanceRowMapper mapper, Guid value) | 86 | delegate(AppearanceRowMapper mapper, Guid value) |
88 | { mapper.Object.Wearables[1].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 87 | { mapper.Object.Wearables[1].AssetID = new LLUUID(value.ToString()); }); |
89 | 88 | ||
90 | rowMapperSchema.AddMapping<Guid>("WearableItem2", | 89 | rowMapperSchema.AddMapping<Guid>("WearableItem2", |
91 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[2].ItemID.UUID; }, | 90 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[2].ItemID.UUID; }, |
92 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[2].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 91 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[2].ItemID = new LLUUID(value.ToString()); }); |
93 | 92 | ||
94 | rowMapperSchema.AddMapping<Guid>("WearableAsset2", | 93 | rowMapperSchema.AddMapping<Guid>("WearableAsset2", |
95 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[2].AssetID.UUID; }, | 94 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[2].AssetID.UUID; }, |
96 | delegate(AppearanceRowMapper mapper, Guid value) | 95 | delegate(AppearanceRowMapper mapper, Guid value) |
97 | { mapper.Object.Wearables[2].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 96 | { mapper.Object.Wearables[2].AssetID = new LLUUID(value.ToString()); }); |
98 | 97 | ||
99 | rowMapperSchema.AddMapping<Guid>("WearableItem3", | 98 | rowMapperSchema.AddMapping<Guid>("WearableItem3", |
100 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[3].ItemID.UUID; }, | 99 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[3].ItemID.UUID; }, |
101 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[3].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 100 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[3].ItemID = new LLUUID(value.ToString()); }); |
102 | 101 | ||
103 | rowMapperSchema.AddMapping<Guid>("WearableAsset3", | 102 | rowMapperSchema.AddMapping<Guid>("WearableAsset3", |
104 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[3].AssetID.UUID; }, | 103 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[3].AssetID.UUID; }, |
105 | delegate(AppearanceRowMapper mapper, Guid value) | 104 | delegate(AppearanceRowMapper mapper, Guid value) |
106 | { mapper.Object.Wearables[3].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 105 | { mapper.Object.Wearables[3].AssetID = new LLUUID(value.ToString()); }); |
107 | 106 | ||
108 | rowMapperSchema.AddMapping<Guid>("WearableItem4", | 107 | rowMapperSchema.AddMapping<Guid>("WearableItem4", |
109 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[4].ItemID.UUID; }, | 108 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[4].ItemID.UUID; }, |
110 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[4].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 109 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[4].ItemID = new LLUUID(value.ToString()); }); |
111 | 110 | ||
112 | rowMapperSchema.AddMapping<Guid>("WearableAsset4", | 111 | rowMapperSchema.AddMapping<Guid>("WearableAsset4", |
113 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[4].AssetID.UUID; }, | 112 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[4].AssetID.UUID; }, |
114 | delegate(AppearanceRowMapper mapper, Guid value) | 113 | delegate(AppearanceRowMapper mapper, Guid value) |
115 | { mapper.Object.Wearables[4].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 114 | { mapper.Object.Wearables[4].AssetID = new LLUUID(value.ToString()); }); |
116 | 115 | ||
117 | rowMapperSchema.AddMapping<Guid>("WearableItem5", | 116 | rowMapperSchema.AddMapping<Guid>("WearableItem5", |
118 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[5].ItemID.UUID; }, | 117 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[5].ItemID.UUID; }, |
119 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[5].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 118 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[5].ItemID = new LLUUID(value.ToString()); }); |
120 | 119 | ||
121 | rowMapperSchema.AddMapping<Guid>("WearableAsset5", | 120 | rowMapperSchema.AddMapping<Guid>("WearableAsset5", |
122 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[5].AssetID.UUID; }, | 121 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[5].AssetID.UUID; }, |
123 | delegate(AppearanceRowMapper mapper, Guid value) | 122 | delegate(AppearanceRowMapper mapper, Guid value) |
124 | { mapper.Object.Wearables[5].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 123 | { mapper.Object.Wearables[5].AssetID = new LLUUID(value.ToString()); }); |
125 | 124 | ||
126 | rowMapperSchema.AddMapping<Guid>("WearableItem6", | 125 | rowMapperSchema.AddMapping<Guid>("WearableItem6", |
127 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[6].ItemID.UUID; }, | 126 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[6].ItemID.UUID; }, |
128 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[6].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 127 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[6].ItemID = new LLUUID(value.ToString()); }); |
129 | 128 | ||
130 | rowMapperSchema.AddMapping<Guid>("WearableAsset6", | 129 | rowMapperSchema.AddMapping<Guid>("WearableAsset6", |
131 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[6].AssetID.UUID; }, | 130 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[6].AssetID.UUID; }, |
132 | delegate(AppearanceRowMapper mapper, Guid value) | 131 | delegate(AppearanceRowMapper mapper, Guid value) |
133 | { mapper.Object.Wearables[6].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 132 | { mapper.Object.Wearables[6].AssetID = new LLUUID(value.ToString()); }); |
134 | 133 | ||
135 | rowMapperSchema.AddMapping<Guid>("WearableItem7", | 134 | rowMapperSchema.AddMapping<Guid>("WearableItem7", |
136 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[7].ItemID.UUID; }, | 135 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[7].ItemID.UUID; }, |
137 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[7].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 136 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[7].ItemID = new LLUUID(value.ToString()); }); |
138 | 137 | ||
139 | rowMapperSchema.AddMapping<Guid>("WearableAsset7", | 138 | rowMapperSchema.AddMapping<Guid>("WearableAsset7", |
140 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[7].AssetID.UUID; }, | 139 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[7].AssetID.UUID; }, |
141 | delegate(AppearanceRowMapper mapper, Guid value) | 140 | delegate(AppearanceRowMapper mapper, Guid value) |
142 | { mapper.Object.Wearables[7].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 141 | { mapper.Object.Wearables[7].AssetID = new LLUUID(value.ToString()); }); |
143 | 142 | ||
144 | rowMapperSchema.AddMapping<Guid>("WearableItem8", | 143 | rowMapperSchema.AddMapping<Guid>("WearableItem8", |
145 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[8].ItemID.UUID; }, | 144 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[8].ItemID.UUID; }, |
146 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[8].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 145 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[8].ItemID = new LLUUID(value.ToString()); }); |
147 | 146 | ||
148 | rowMapperSchema.AddMapping<Guid>("WearableAsset8", | 147 | rowMapperSchema.AddMapping<Guid>("WearableAsset8", |
149 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[8].AssetID.UUID; }, | 148 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[8].AssetID.UUID; }, |
150 | delegate(AppearanceRowMapper mapper, Guid value) | 149 | delegate(AppearanceRowMapper mapper, Guid value) |
151 | { mapper.Object.Wearables[8].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 150 | { mapper.Object.Wearables[8].AssetID = new LLUUID(value.ToString()); }); |
152 | 151 | ||
153 | rowMapperSchema.AddMapping<Guid>("WearableItem9", | 152 | rowMapperSchema.AddMapping<Guid>("WearableItem9", |
154 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[9].ItemID.UUID; }, | 153 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[9].ItemID.UUID; }, |
155 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[9].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 154 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[9].ItemID = new LLUUID(value.ToString()); }); |
156 | 155 | ||
157 | rowMapperSchema.AddMapping<Guid>("WearableAsset9", | 156 | rowMapperSchema.AddMapping<Guid>("WearableAsset9", |
158 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[9].AssetID.UUID; }, | 157 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[9].AssetID.UUID; }, |
159 | delegate(AppearanceRowMapper mapper, Guid value) | 158 | delegate(AppearanceRowMapper mapper, Guid value) |
160 | { mapper.Object.Wearables[9].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 159 | { mapper.Object.Wearables[9].AssetID = new LLUUID(value.ToString()); }); |
161 | 160 | ||
162 | rowMapperSchema.AddMapping<Guid>("WearableItem10", | 161 | rowMapperSchema.AddMapping<Guid>("WearableItem10", |
163 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[10].ItemID.UUID; }, | 162 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[10].ItemID.UUID; }, |
164 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[10].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 163 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[10].ItemID = new LLUUID(value.ToString()); }); |
165 | 164 | ||
166 | rowMapperSchema.AddMapping<Guid>("WearableAsset10", | 165 | rowMapperSchema.AddMapping<Guid>("WearableAsset10", |
167 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[10].AssetID.UUID; }, | 166 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[10].AssetID.UUID; }, |
168 | delegate(AppearanceRowMapper mapper, Guid value) | 167 | delegate(AppearanceRowMapper mapper, Guid value) |
169 | { mapper.Object.Wearables[10].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 168 | { mapper.Object.Wearables[10].AssetID = new LLUUID(value.ToString()); }); |
170 | 169 | ||
171 | rowMapperSchema.AddMapping<Guid>("WearableItem11", | 170 | rowMapperSchema.AddMapping<Guid>("WearableItem11", |
172 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[11].ItemID.UUID; }, | 171 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[11].ItemID.UUID; }, |
173 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[11].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 172 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[11].ItemID = new LLUUID(value.ToString()); }); |
174 | 173 | ||
175 | rowMapperSchema.AddMapping<Guid>("WearableAsset11", | 174 | rowMapperSchema.AddMapping<Guid>("WearableAsset11", |
176 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[11].AssetID.UUID; }, | 175 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[11].AssetID.UUID; }, |
177 | delegate(AppearanceRowMapper mapper, Guid value) | 176 | delegate(AppearanceRowMapper mapper, Guid value) |
178 | { mapper.Object.Wearables[11].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 177 | { mapper.Object.Wearables[11].AssetID = new LLUUID(value.ToString()); }); |
179 | 178 | ||
180 | rowMapperSchema.AddMapping<Guid>("WearableItem12", | 179 | rowMapperSchema.AddMapping<Guid>("WearableItem12", |
181 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[12].ItemID.UUID; }, | 180 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[12].ItemID.UUID; }, |
182 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[12].ItemID = new libsecondlife.LLUUID(value.ToString()); }); | 181 | delegate(AppearanceRowMapper mapper, Guid value) { mapper.Object.Wearables[12].ItemID = new LLUUID(value.ToString()); }); |
183 | 182 | ||
184 | rowMapperSchema.AddMapping<Guid>("WearableAsset12", | 183 | rowMapperSchema.AddMapping<Guid>("WearableAsset12", |
185 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[12].AssetID.UUID; }, | 184 | delegate(AppearanceRowMapper mapper) { return mapper.Object.Wearables[12].AssetID.UUID; }, |
186 | delegate(AppearanceRowMapper mapper, Guid value) | 185 | delegate(AppearanceRowMapper mapper, Guid value) |
187 | { mapper.Object.Wearables[12].AssetID = new libsecondlife.LLUUID(value.ToString()); }); | 186 | { mapper.Object.Wearables[12].AssetID = new LLUUID(value.ToString()); }); |
188 | 187 | ||
189 | } | 188 | } |
190 | 189 | ||
diff --git a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs index ae522ef..0ee8848 100644 --- a/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/Modules/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -30,12 +30,12 @@ using System.Collections.Generic; | |||
30 | using System.Threading; | 30 | using System.Threading; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using Nini.Config; | 32 | using Nini.Config; |
33 | using OpenSim.Data.Base; | ||
34 | using OpenSim.Data.MapperFactory; | ||
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Communications.Cache; | 36 | using OpenSim.Framework.Communications.Cache; |
35 | using OpenSim.Region.Environment.Interfaces; | 37 | using OpenSim.Region.Environment.Interfaces; |
36 | using OpenSim.Region.Environment.Scenes; | 38 | using OpenSim.Region.Environment.Scenes; |
37 | using OpenSim.Data.Base; | ||
38 | using OpenSim.Data.MapperFactory; | ||
39 | 39 | ||
40 | namespace OpenSim.Region.Modules.AvatarFactory | 40 | namespace OpenSim.Region.Modules.AvatarFactory |
41 | { | 41 | { |
diff --git a/OpenSim/Region/Modules/AvatarFactory/Properties/AssemblyInfo.cs b/OpenSim/Region/Modules/AvatarFactory/Properties/AssemblyInfo.cs index ec9714a..a9fe53e 100644 --- a/OpenSim/Region/Modules/AvatarFactory/Properties/AssemblyInfo.cs +++ b/OpenSim/Region/Modules/AvatarFactory/Properties/AssemblyInfo.cs | |||
@@ -26,7 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Reflection; | 28 | using System.Reflection; |
29 | using System.Runtime.CompilerServices; | ||
30 | using System.Runtime.InteropServices; | 29 | using System.Runtime.InteropServices; |
31 | 30 | ||
32 | // General Information about an assembly is controlled through the following | 31 | // General Information about an assembly is controlled through the following |
diff --git a/OpenSim/Region/Modules/SvnSerialiser/Properties/AssemblyInfo.cs b/OpenSim/Region/Modules/SvnSerialiser/Properties/AssemblyInfo.cs index e50a89e..c9f8423 100644 --- a/OpenSim/Region/Modules/SvnSerialiser/Properties/AssemblyInfo.cs +++ b/OpenSim/Region/Modules/SvnSerialiser/Properties/AssemblyInfo.cs | |||
@@ -26,7 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Reflection; | 28 | using System.Reflection; |
29 | using System.Runtime.CompilerServices; | ||
30 | using System.Runtime.InteropServices; | 29 | using System.Runtime.InteropServices; |
31 | 30 | ||
32 | // General Information about an assembly is controlled through the following | 31 | // General Information about an assembly is controlled through the following |
diff --git a/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs b/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs index aaa7acf..4046a7c 100644 --- a/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs +++ b/OpenSim/Region/Modules/SvnSerialiser/SvnBackupModule.cs | |||
@@ -1,20 +1,23 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.IO; | ||
4 | using System.Reflection; | ||
5 | using System.Timers; | ||
6 | using log4net; | ||
3 | using Nini.Config; | 7 | using Nini.Config; |
4 | using OpenSim.Region.Environment.Interfaces; | 8 | using OpenSim.Region.Environment.Interfaces; |
5 | using OpenSim.Region.Environment.Scenes; | ||
6 | using OpenSim.Region.Environment.Modules.ExportSerialiser; | 9 | using OpenSim.Region.Environment.Modules.ExportSerialiser; |
7 | 10 | using OpenSim.Region.Environment.Modules.Terrain; | |
8 | using PumaCode.SvnDotNet.SubversionSharp; | 11 | using OpenSim.Region.Environment.Scenes; |
9 | using PumaCode.SvnDotNet.AprSharp; | 12 | using PumaCode.SvnDotNet.AprSharp; |
10 | 13 | using PumaCode.SvnDotNet.SubversionSharp; | |
11 | using Slash=System.IO.Path; | 14 | using Slash=System.IO.Path; |
12 | 15 | ||
13 | namespace OpenSim.Region.Modules.SvnSerialiser | 16 | namespace OpenSim.Region.Modules.SvnSerialiser |
14 | { | 17 | { |
15 | public class SvnBackupModule : IRegionModule | 18 | public class SvnBackupModule : IRegionModule |
16 | { | 19 | { |
17 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 20 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
18 | 21 | ||
19 | private SvnClient m_svnClient; | 22 | private SvnClient m_svnClient; |
20 | private bool m_enabled = false; | 23 | private bool m_enabled = false; |
@@ -26,7 +29,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
26 | 29 | ||
27 | private TimeSpan m_svnperiod = new TimeSpan(0, 0, 15, 0, 0); | 30 | private TimeSpan m_svnperiod = new TimeSpan(0, 0, 15, 0, 0); |
28 | private bool m_svnAutoSave = false; | 31 | private bool m_svnAutoSave = false; |
29 | private System.Timers.Timer m_timer = new System.Timers.Timer(); | 32 | private Timer m_timer = new Timer(); |
30 | 33 | ||
31 | private IRegionSerialiser m_serialiser; | 34 | private IRegionSerialiser m_serialiser; |
32 | private List<Scene> m_scenes = new List<Scene>(); | 35 | private List<Scene> m_scenes = new List<Scene>(); |
@@ -87,7 +90,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
87 | { | 90 | { |
88 | scene.LoadPrimsFromXml2(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + | 91 | scene.LoadPrimsFromXml2(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + |
89 | Slash.DirectorySeparatorChar + "objects.xml"); | 92 | Slash.DirectorySeparatorChar + "objects.xml"); |
90 | scene.RequestModuleInterface<OpenSim.Region.Environment.Modules.Terrain.ITerrainModule>().LoadFromFile(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + | 93 | scene.RequestModuleInterface<ITerrainModule>().LoadFromFile(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + |
91 | Slash.DirectorySeparatorChar + "heightmap.r32"); | 94 | Slash.DirectorySeparatorChar + "heightmap.r32"); |
92 | m_log.Info("[SVNBACKUP]: Region load successful (" + scene.RegionInfo.RegionName + ")."); | 95 | m_log.Info("[SVNBACKUP]: Region load successful (" + scene.RegionInfo.RegionName + ")."); |
93 | } | 96 | } |
@@ -104,16 +107,16 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
104 | 107 | ||
105 | private void CheckoutSvnPartial(string subdir) | 108 | private void CheckoutSvnPartial(string subdir) |
106 | { | 109 | { |
107 | if (!System.IO.Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) | 110 | if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) |
108 | System.IO.Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); | 111 | Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); |
109 | 112 | ||
110 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, Svn.Revision.Head, Svn.Revision.Head, true, false); | 113 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, Svn.Revision.Head, Svn.Revision.Head, true, false); |
111 | } | 114 | } |
112 | 115 | ||
113 | private void CheckoutSvnPartial(string subdir, SvnRevision revision) | 116 | private void CheckoutSvnPartial(string subdir, SvnRevision revision) |
114 | { | 117 | { |
115 | if (!System.IO.Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) | 118 | if (!Directory.Exists(m_svndir + Slash.DirectorySeparatorChar + subdir)) |
116 | System.IO.Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); | 119 | Directory.CreateDirectory(m_svndir + Slash.DirectorySeparatorChar + subdir); |
117 | 120 | ||
118 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, revision, revision, true, false); | 121 | m_svnClient.Checkout2(m_svnurl + "/" + subdir, m_svndir, revision, revision, true, false); |
119 | } | 122 | } |
@@ -138,7 +141,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
138 | { | 141 | { |
139 | foreach (SvnClientCommitItem2 item in commitItems) | 142 | foreach (SvnClientCommitItem2 item in commitItems) |
140 | { | 143 | { |
141 | m_log.Debug("[SVNBACKUP]: ... " + System.IO.Path.GetFileName(item.Path.ToString()) + " (" + item.Kind.ToString() + ") r" + item.Revision.ToString()); | 144 | m_log.Debug("[SVNBACKUP]: ... " + Path.GetFileName(item.Path.ToString()) + " (" + item.Kind.ToString() + ") r" + item.Revision.ToString()); |
142 | } | 145 | } |
143 | } | 146 | } |
144 | 147 | ||
@@ -277,7 +280,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
277 | if (m_svnAutoSave == true) | 280 | if (m_svnAutoSave == true) |
278 | { | 281 | { |
279 | m_timer.Interval = m_svnperiod.TotalMilliseconds; | 282 | m_timer.Interval = m_svnperiod.TotalMilliseconds; |
280 | m_timer.Elapsed += new System.Timers.ElapsedEventHandler(m_timer_Elapsed); | 283 | m_timer.Elapsed += new ElapsedEventHandler(m_timer_Elapsed); |
281 | m_timer.AutoReset = true; | 284 | m_timer.AutoReset = true; |
282 | m_timer.Start(); | 285 | m_timer.Start(); |
283 | } | 286 | } |
@@ -300,7 +303,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
300 | } | 303 | } |
301 | } | 304 | } |
302 | 305 | ||
303 | void m_timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) | 306 | void m_timer_Elapsed(object sender, ElapsedEventArgs e) |
304 | { | 307 | { |
305 | SaveAllRegions(); | 308 | SaveAllRegions(); |
306 | } | 309 | } |
@@ -322,8 +325,8 @@ namespace OpenSim.Region.Modules.SvnSerialiser | |||
322 | 325 | ||
323 | private void CreateSvnDirectory() | 326 | private void CreateSvnDirectory() |
324 | { | 327 | { |
325 | if (!System.IO.Directory.Exists(m_svndir)) | 328 | if (!Directory.Exists(m_svndir)) |
326 | System.IO.Directory.CreateDirectory(m_svndir); | 329 | Directory.CreateDirectory(m_svndir); |
327 | } | 330 | } |
328 | 331 | ||
329 | public void Close() | 332 | public void Close() |
diff --git a/OpenSim/Region/Physics/BulletXPlugin/BulletXPlugin.cs b/OpenSim/Region/Physics/BulletXPlugin/BulletXPlugin.cs index 6cc7ff4..1ad1201 100644 --- a/OpenSim/Region/Physics/BulletXPlugin/BulletXPlugin.cs +++ b/OpenSim/Region/Physics/BulletXPlugin/BulletXPlugin.cs | |||
@@ -31,12 +31,10 @@ using System; | |||
31 | using System.Collections.Generic; | 31 | using System.Collections.Generic; |
32 | using MonoXnaCompactMaths; | 32 | using MonoXnaCompactMaths; |
33 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Physics.Manager; | 34 | using OpenSim.Region.Physics.Manager; |
36 | using XnaDevRu.BulletX; | 35 | using XnaDevRu.BulletX; |
37 | using XnaDevRu.BulletX.Dynamics; | 36 | using XnaDevRu.BulletX.Dynamics; |
38 | using AxiomQuaternion = Axiom.Math.Quaternion; | 37 | using AxiomQuaternion = Axiom.Math.Quaternion; |
39 | using BoxShape=XnaDevRu.BulletX.BoxShape; | ||
40 | 38 | ||
41 | #endregion | 39 | #endregion |
42 | 40 | ||
diff --git a/OpenSim/Region/Physics/Manager/CollisionLocker.cs b/OpenSim/Region/Physics/Manager/CollisionLocker.cs index f88554b..29a6188 100644 --- a/OpenSim/Region/Physics/Manager/CollisionLocker.cs +++ b/OpenSim/Region/Physics/Manager/CollisionLocker.cs | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | ||
31 | 30 | ||
32 | namespace OpenSim.Region.Physics.Manager | 31 | namespace OpenSim.Region.Physics.Manager |
33 | { | 32 | { |
diff --git a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs index 73b2721..e4ff725 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |||
@@ -29,7 +29,7 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using OpenSim.Framework.Console; | 32 | using log4net; |
33 | 33 | ||
34 | namespace OpenSim.Region.Physics.Manager | 34 | namespace OpenSim.Region.Physics.Manager |
35 | { | 35 | { |
@@ -38,7 +38,7 @@ namespace OpenSim.Region.Physics.Manager | |||
38 | /// </summary> | 38 | /// </summary> |
39 | public class PhysicsPluginManager | 39 | public class PhysicsPluginManager |
40 | { | 40 | { |
41 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | private Dictionary<string, IPhysicsPlugin> _PhysPlugins = new Dictionary<string, IPhysicsPlugin>(); | 43 | private Dictionary<string, IPhysicsPlugin> _PhysPlugins = new Dictionary<string, IPhysicsPlugin>(); |
44 | private Dictionary<string, IMeshingPlugin> _MeshPlugins = new Dictionary<string, IMeshingPlugin>(); | 44 | private Dictionary<string, IMeshingPlugin> _MeshPlugins = new Dictionary<string, IMeshingPlugin>(); |
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs index d3699a3..4c509b7 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs | |||
@@ -25,10 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System.Reflection; |
29 | using Axiom.Math; | 29 | using Axiom.Math; |
30 | using log4net; | ||
30 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Console; | ||
32 | 32 | ||
33 | namespace OpenSim.Region.Physics.Manager | 33 | namespace OpenSim.Region.Physics.Manager |
34 | { | 34 | { |
@@ -36,7 +36,7 @@ namespace OpenSim.Region.Physics.Manager | |||
36 | 36 | ||
37 | public abstract class PhysicsScene | 37 | public abstract class PhysicsScene |
38 | { | 38 | { |
39 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | 40 | ||
41 | // The only thing that should register for this event is the InnerScene | 41 | // The only thing that should register for this event is the InnerScene |
42 | // Anything else could cause problems. | 42 | // Anything else could cause problems. |
diff --git a/OpenSim/Region/Physics/Manager/PhysicsSensor.cs b/OpenSim/Region/Physics/Manager/PhysicsSensor.cs index a86d283..ce53108 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsSensor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsSensor.cs | |||
@@ -26,10 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Timers; | 29 | using System.Timers; |
31 | using Axiom.Math; | ||
32 | using OpenSim.Framework; | ||
33 | 30 | ||
34 | namespace OpenSim.Region.Physics.Manager | 31 | namespace OpenSim.Region.Physics.Manager |
35 | { | 32 | { |
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs index d4b6a50..db91028 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -28,7 +28,6 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Console; | ||
32 | using OpenSim.Region.Physics.Manager; | 31 | using OpenSim.Region.Physics.Manager; |
33 | 32 | ||
34 | namespace OpenSim.Region.Physics.Meshing | 33 | namespace OpenSim.Region.Physics.Meshing |
diff --git a/OpenSim/Region/Physics/Meshing/SimpleHull.cs b/OpenSim/Region/Physics/Meshing/SimpleHull.cs index c518b78..2896d3b 100644 --- a/OpenSim/Region/Physics/Meshing/SimpleHull.cs +++ b/OpenSim/Region/Physics/Meshing/SimpleHull.cs | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenSim.Framework.Console; | ||
31 | using OpenSim.Region.Physics.Manager; | 30 | using OpenSim.Region.Physics.Manager; |
32 | 31 | ||
33 | namespace OpenSim.Region.Physics.Meshing | 32 | namespace OpenSim.Region.Physics.Meshing |
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index 81126b6..042042c 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |||
@@ -121,7 +121,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
121 | _acceleration = new PhysicsVector(); | 121 | _acceleration = new PhysicsVector(); |
122 | _parent_scene = parent_scene; | 122 | _parent_scene = parent_scene; |
123 | 123 | ||
124 | if (System.Environment.OSVersion.Platform == PlatformID.Unix) | 124 | if (Environment.OSVersion.Platform == PlatformID.Unix) |
125 | { | 125 | { |
126 | m_tensor = 2000000f; | 126 | m_tensor = 2000000f; |
127 | } | 127 | } |
@@ -413,7 +413,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
413 | private void AvatarGeomAndBodyCreation(float npositionX, float npositionY, float npositionZ, float tensor) | 413 | private void AvatarGeomAndBodyCreation(float npositionX, float npositionY, float npositionZ, float tensor) |
414 | { | 414 | { |
415 | 415 | ||
416 | if (System.Environment.OSVersion.Platform == PlatformID.Unix) | 416 | if (Environment.OSVersion.Platform == PlatformID.Unix) |
417 | { | 417 | { |
418 | m_tensor = 2000000f; | 418 | m_tensor = 2000000f; |
419 | } | 419 | } |
@@ -641,7 +641,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
641 | 641 | ||
642 | // If the PID Controller isn't active then we set our force | 642 | // If the PID Controller isn't active then we set our force |
643 | // calculating base velocity to the current position | 643 | // calculating base velocity to the current position |
644 | if (System.Environment.OSVersion.Platform == PlatformID.Unix) | 644 | if (Environment.OSVersion.Platform == PlatformID.Unix) |
645 | { | 645 | { |
646 | PID_D = 3200.0f; | 646 | PID_D = 3200.0f; |
647 | PID_P = 1400.0f; | 647 | PID_P = 1400.0f; |
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index 4e39eb4..8e0640b 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |||
@@ -27,8 +27,11 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using System.Runtime.InteropServices; | 31 | using System.Runtime.InteropServices; |
32 | using System.Threading; | ||
31 | using Axiom.Math; | 33 | using Axiom.Math; |
34 | using log4net; | ||
32 | using Ode.NET; | 35 | using Ode.NET; |
33 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
34 | using OpenSim.Region.Physics.Manager; | 37 | using OpenSim.Region.Physics.Manager; |
@@ -37,7 +40,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
37 | { | 40 | { |
38 | public class OdePrim : PhysicsActor | 41 | public class OdePrim : PhysicsActor |
39 | { | 42 | { |
40 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 43 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
41 | 44 | ||
42 | public PhysicsVector _position; | 45 | public PhysicsVector _position; |
43 | private PhysicsVector _velocity; | 46 | private PhysicsVector _velocity; |
@@ -663,7 +666,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
663 | // This sleeper is there to moderate how long it takes between | 666 | // This sleeper is there to moderate how long it takes between |
664 | // setting up the mesh and pre-processing it when we get rapid fire mesh requests on a single object | 667 | // setting up the mesh and pre-processing it when we get rapid fire mesh requests on a single object |
665 | 668 | ||
666 | System.Threading.Thread.Sleep(10); | 669 | Thread.Sleep(10); |
667 | 670 | ||
668 | //Kill Body so that mesh can re-make the geom | 671 | //Kill Body so that mesh can re-make the geom |
669 | if (IsPhysical && Body != (IntPtr) 0) | 672 | if (IsPhysical && Body != (IntPtr) 0) |
@@ -692,7 +695,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
692 | SetGeom(d.CreateTriMesh(m_targetSpace, _triMeshData, parent_scene.triCallback, null, null)); | 695 | SetGeom(d.CreateTriMesh(m_targetSpace, _triMeshData, parent_scene.triCallback, null, null)); |
693 | } | 696 | } |
694 | } | 697 | } |
695 | catch (System.AccessViolationException) | 698 | catch (AccessViolationException) |
696 | { | 699 | { |
697 | 700 | ||
698 | m_log.Error("[PHYSICS]: MESH LOCKED"); | 701 | m_log.Error("[PHYSICS]: MESH LOCKED"); |
@@ -934,7 +937,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
934 | { | 937 | { |
935 | SetGeom(d.CreateSphere(m_targetSpace, _size.X / 2)); | 938 | SetGeom(d.CreateSphere(m_targetSpace, _size.X / 2)); |
936 | } | 939 | } |
937 | catch (System.AccessViolationException) | 940 | catch (AccessViolationException) |
938 | { | 941 | { |
939 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | 942 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); |
940 | ode.dunlock(_parent_scene.world); | 943 | ode.dunlock(_parent_scene.world); |
@@ -948,7 +951,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
948 | { | 951 | { |
949 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | 952 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); |
950 | } | 953 | } |
951 | catch (System.AccessViolationException) | 954 | catch (AccessViolationException) |
952 | { | 955 | { |
953 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | 956 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); |
954 | ode.dunlock(_parent_scene.world); | 957 | ode.dunlock(_parent_scene.world); |
@@ -963,7 +966,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
963 | { | 966 | { |
964 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | 967 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); |
965 | } | 968 | } |
966 | catch (System.AccessViolationException) | 969 | catch (AccessViolationException) |
967 | { | 970 | { |
968 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | 971 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); |
969 | ode.dunlock(_parent_scene.world); | 972 | ode.dunlock(_parent_scene.world); |
@@ -990,7 +993,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
990 | { | 993 | { |
991 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | 994 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); |
992 | } | 995 | } |
993 | catch (System.AccessViolationException) | 996 | catch (AccessViolationException) |
994 | { | 997 | { |
995 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | 998 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); |
996 | ode.dunlock(_parent_scene.world); | 999 | ode.dunlock(_parent_scene.world); |
@@ -1135,7 +1138,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1135 | 1138 | ||
1136 | // If the PID Controller isn't active then we set our force | 1139 | // If the PID Controller isn't active then we set our force |
1137 | // calculating base velocity to the current position | 1140 | // calculating base velocity to the current position |
1138 | if (System.Environment.OSVersion.Platform == PlatformID.Unix) | 1141 | if (Environment.OSVersion.Platform == PlatformID.Unix) |
1139 | { | 1142 | { |
1140 | PID_D = 3200.0f; | 1143 | PID_D = 3200.0f; |
1141 | //PID_P = 1400.0f; | 1144 | //PID_P = 1400.0f; |
@@ -1670,7 +1673,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1670 | { | 1673 | { |
1671 | 1674 | ||
1672 | 1675 | ||
1673 | System.Threading.Thread.Sleep(20); | 1676 | Thread.Sleep(20); |
1674 | if (IsPhysical) | 1677 | if (IsPhysical) |
1675 | { | 1678 | { |
1676 | if (Body != (IntPtr)0) | 1679 | if (Body != (IntPtr)0) |
diff --git a/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs b/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs index f56cf5c..94d98cb 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs | |||
@@ -26,15 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Runtime.InteropServices; | ||
31 | using Axiom.Math; | 29 | using Axiom.Math; |
32 | using Ode.NET; | 30 | using NUnit.Framework; |
33 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Physics.Manager; | 32 | using OpenSim.Region.Physics.Manager; |
36 | using NUnit.Framework; | ||
37 | using NUnit.Framework.SyntaxHelpers; | ||
38 | 33 | ||
39 | namespace OpenSim.Region.Physics.OdePlugin | 34 | namespace OpenSim.Region.Physics.OdePlugin |
40 | { | 35 | { |
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index a2f440e..c346960 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -27,11 +27,13 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using System.Runtime.InteropServices; | 31 | using System.Runtime.InteropServices; |
32 | using System.Threading; | ||
31 | using Axiom.Math; | 33 | using Axiom.Math; |
34 | using log4net; | ||
32 | using Ode.NET; | 35 | using Ode.NET; |
33 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Physics.Manager; | 37 | using OpenSim.Region.Physics.Manager; |
36 | 38 | ||
37 | //using OpenSim.Region.Physics.OdePlugin.Meshing; | 39 | //using OpenSim.Region.Physics.OdePlugin.Meshing; |
@@ -114,12 +116,12 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
114 | 116 | ||
115 | public class OdeScene : PhysicsScene | 117 | public class OdeScene : PhysicsScene |
116 | { | 118 | { |
117 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 119 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
118 | private Dictionary<string, sCollisionData> m_storedCollisions = new Dictionary<string, sCollisionData>(); | 120 | private Dictionary<string, sCollisionData> m_storedCollisions = new Dictionary<string, sCollisionData>(); |
119 | 121 | ||
120 | CollisionLocker ode; | 122 | CollisionLocker ode; |
121 | 123 | ||
122 | protected Random fluidRandomizer = new Random(System.Environment.TickCount); | 124 | protected Random fluidRandomizer = new Random(Environment.TickCount); |
123 | 125 | ||
124 | private const uint m_regionWidth = Constants.RegionSize; | 126 | private const uint m_regionWidth = Constants.RegionSize; |
125 | private const uint m_regionHeight = Constants.RegionSize; | 127 | private const uint m_regionHeight = Constants.RegionSize; |
@@ -331,7 +333,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
331 | { | 333 | { |
332 | d.SpaceCollide2(g1, g2, IntPtr.Zero, nearCallback); | 334 | d.SpaceCollide2(g1, g2, IntPtr.Zero, nearCallback); |
333 | } | 335 | } |
334 | catch (System.AccessViolationException) | 336 | catch (AccessViolationException) |
335 | { | 337 | { |
336 | m_log.Warn("[PHYSICS]: Unable to collide test a space"); | 338 | m_log.Warn("[PHYSICS]: Unable to collide test a space"); |
337 | return; | 339 | return; |
@@ -404,7 +406,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
404 | ode.drelease(world); | 406 | ode.drelease(world); |
405 | base.TriggerPhysicsBasedRestart(); | 407 | base.TriggerPhysicsBasedRestart(); |
406 | } | 408 | } |
407 | catch (System.AccessViolationException) | 409 | catch (AccessViolationException) |
408 | { | 410 | { |
409 | 411 | ||
410 | m_log.Warn("[PHYSICS]: Unable to collide test an object"); | 412 | m_log.Warn("[PHYSICS]: Unable to collide test an object"); |
@@ -1166,7 +1168,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1166 | } | 1168 | } |
1167 | 1169 | ||
1168 | } | 1170 | } |
1169 | catch (System.AccessViolationException) | 1171 | catch (AccessViolationException) |
1170 | { | 1172 | { |
1171 | m_log.Info("[PHYSICS]: Couldn't remove prim from physics scene, it was already be removed."); | 1173 | m_log.Info("[PHYSICS]: Couldn't remove prim from physics scene, it was already be removed."); |
1172 | } | 1174 | } |
@@ -1243,7 +1245,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1243 | // never be called if the prim is physical(active) | 1245 | // never be called if the prim is physical(active) |
1244 | 1246 | ||
1245 | // All physical prim end up in the root space | 1247 | // All physical prim end up in the root space |
1246 | System.Threading.Thread.Sleep(20); | 1248 | Thread.Sleep(20); |
1247 | if (currentspace != space) | 1249 | if (currentspace != space) |
1248 | { | 1250 | { |
1249 | //m_log.Info("[SPACE]: C:" + currentspace.ToString() + " g:" + geom.ToString()); | 1251 | //m_log.Info("[SPACE]: C:" + currentspace.ToString() + " g:" + geom.ToString()); |
diff --git a/OpenSim/Region/ScriptEngine/Common/BuilIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/BuilIn_Commands.cs index a429272..1a50f0b 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuilIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuilIn_Commands.cs | |||
@@ -25,9 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using libsecondlife; | 28 | using libsecondlife; |
32 | using OpenSim.Region.Environment.Scenes; | 29 | using OpenSim.Region.Environment.Scenes; |
33 | 30 | ||
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index b6468c2..8aee94e 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -26,15 +26,14 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Runtime.Remoting.Lifetime; | 29 | using System.Runtime.Remoting.Lifetime; |
31 | using System.Threading; | 30 | using System.Threading; |
32 | using OpenSim.Region.ScriptEngine.Common; | 31 | using OpenSim.Region.Environment.Interfaces; |
33 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | 32 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; |
34 | using integer = System.Int32; | 33 | using integer = System.Int32; |
35 | using key = System.String; | 34 | using key = System.String; |
36 | using vector = OpenSim.Region.ScriptEngine.Common.LSL_Types.Vector3; | 35 | using vector = ScriptEngine.Common.LSL_Types.Vector3; |
37 | using rotation = OpenSim.Region.ScriptEngine.Common.LSL_Types.Quaternion; | 36 | using rotation = Quaternion; |
38 | 37 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common | 38 | namespace OpenSim.Region.ScriptEngine.Common |
40 | { | 39 | { |
@@ -151,7 +150,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
151 | // They are only forwarders to LSL_BuiltIn_Commands.cs | 150 | // They are only forwarders to LSL_BuiltIn_Commands.cs |
152 | // | 151 | // |
153 | 152 | ||
154 | public OpenSim.Region.Environment.Interfaces.ICommander GetCommander(string name) | 153 | public ICommander GetCommander(string name) |
155 | { | 154 | { |
156 | return m_LSL_Functions.GetCommander(name); | 155 | return m_LSL_Functions.GetCommander(name); |
157 | } | 156 | } |
@@ -216,52 +215,52 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
216 | return m_LSL_Functions.llRound(f); | 215 | return m_LSL_Functions.llRound(f); |
217 | } | 216 | } |
218 | 217 | ||
219 | public double llVecMag(vector v) | 218 | public double llVecMag(LSL_Types.Vector3 v) |
220 | { | 219 | { |
221 | return m_LSL_Functions.llVecMag(v); | 220 | return m_LSL_Functions.llVecMag(v); |
222 | } | 221 | } |
223 | 222 | ||
224 | public vector llVecNorm(vector v) | 223 | public LSL_Types.Vector3 llVecNorm(LSL_Types.Vector3 v) |
225 | { | 224 | { |
226 | return m_LSL_Functions.llVecNorm(v); | 225 | return m_LSL_Functions.llVecNorm(v); |
227 | } | 226 | } |
228 | 227 | ||
229 | public double llVecDist(vector a, vector b) | 228 | public double llVecDist(LSL_Types.Vector3 a, LSL_Types.Vector3 b) |
230 | { | 229 | { |
231 | return m_LSL_Functions.llVecDist(a, b); | 230 | return m_LSL_Functions.llVecDist(a, b); |
232 | } | 231 | } |
233 | 232 | ||
234 | public vector llRot2Euler(rotation r) | 233 | public LSL_Types.Vector3 llRot2Euler(LSL_Types.Quaternion r) |
235 | { | 234 | { |
236 | return m_LSL_Functions.llRot2Euler(r); | 235 | return m_LSL_Functions.llRot2Euler(r); |
237 | } | 236 | } |
238 | 237 | ||
239 | public rotation llEuler2Rot(vector v) | 238 | public LSL_Types.Quaternion llEuler2Rot(LSL_Types.Vector3 v) |
240 | { | 239 | { |
241 | return m_LSL_Functions.llEuler2Rot(v); | 240 | return m_LSL_Functions.llEuler2Rot(v); |
242 | } | 241 | } |
243 | 242 | ||
244 | public rotation llAxes2Rot(vector fwd, vector left, vector up) | 243 | public LSL_Types.Quaternion llAxes2Rot(LSL_Types.Vector3 fwd, LSL_Types.Vector3 left, LSL_Types.Vector3 up) |
245 | { | 244 | { |
246 | return m_LSL_Functions.llAxes2Rot(fwd, left, up); | 245 | return m_LSL_Functions.llAxes2Rot(fwd, left, up); |
247 | } | 246 | } |
248 | 247 | ||
249 | public vector llRot2Fwd(rotation r) | 248 | public LSL_Types.Vector3 llRot2Fwd(LSL_Types.Quaternion r) |
250 | { | 249 | { |
251 | return m_LSL_Functions.llRot2Fwd(r); | 250 | return m_LSL_Functions.llRot2Fwd(r); |
252 | } | 251 | } |
253 | 252 | ||
254 | public vector llRot2Left(rotation r) | 253 | public LSL_Types.Vector3 llRot2Left(LSL_Types.Quaternion r) |
255 | { | 254 | { |
256 | return m_LSL_Functions.llRot2Left(r); | 255 | return m_LSL_Functions.llRot2Left(r); |
257 | } | 256 | } |
258 | 257 | ||
259 | public vector llRot2Up(rotation r) | 258 | public LSL_Types.Vector3 llRot2Up(LSL_Types.Quaternion r) |
260 | { | 259 | { |
261 | return m_LSL_Functions.llRot2Up(r); | 260 | return m_LSL_Functions.llRot2Up(r); |
262 | } | 261 | } |
263 | 262 | ||
264 | public rotation llRotBetween(vector start, vector end) | 263 | public LSL_Types.Quaternion llRotBetween(LSL_Types.Vector3 start, LSL_Types.Vector3 end) |
265 | { | 264 | { |
266 | return m_LSL_Functions.llRotBetween(start, end); | 265 | return m_LSL_Functions.llRotBetween(start, end); |
267 | } | 266 | } |
@@ -334,22 +333,22 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
334 | return m_LSL_Functions.llDetectedType(number); | 333 | return m_LSL_Functions.llDetectedType(number); |
335 | } | 334 | } |
336 | 335 | ||
337 | public vector llDetectedPos(int number) | 336 | public LSL_Types.Vector3 llDetectedPos(int number) |
338 | { | 337 | { |
339 | return m_LSL_Functions.llDetectedPos(number); | 338 | return m_LSL_Functions.llDetectedPos(number); |
340 | } | 339 | } |
341 | 340 | ||
342 | public vector llDetectedVel(int number) | 341 | public LSL_Types.Vector3 llDetectedVel(int number) |
343 | { | 342 | { |
344 | return m_LSL_Functions.llDetectedVel(number); | 343 | return m_LSL_Functions.llDetectedVel(number); |
345 | } | 344 | } |
346 | 345 | ||
347 | public vector llDetectedGrab(int number) | 346 | public LSL_Types.Vector3 llDetectedGrab(int number) |
348 | { | 347 | { |
349 | return m_LSL_Functions.llDetectedGrab(number); | 348 | return m_LSL_Functions.llDetectedGrab(number); |
350 | } | 349 | } |
351 | 350 | ||
352 | public rotation llDetectedRot(int number) | 351 | public LSL_Types.Quaternion llDetectedRot(int number) |
353 | { | 352 | { |
354 | return m_LSL_Functions.llDetectedRot(number); | 353 | return m_LSL_Functions.llDetectedRot(number); |
355 | } | 354 | } |
@@ -372,17 +371,17 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
372 | m_LSL_Functions.llDie(); | 371 | m_LSL_Functions.llDie(); |
373 | } | 372 | } |
374 | 373 | ||
375 | public double llGround(vector offset) | 374 | public double llGround(LSL_Types.Vector3 offset) |
376 | { | 375 | { |
377 | return m_LSL_Functions.llGround(offset); | 376 | return m_LSL_Functions.llGround(offset); |
378 | } | 377 | } |
379 | 378 | ||
380 | public double llCloud(vector offset) | 379 | public double llCloud(LSL_Types.Vector3 offset) |
381 | { | 380 | { |
382 | return m_LSL_Functions.llCloud(offset); | 381 | return m_LSL_Functions.llCloud(offset); |
383 | } | 382 | } |
384 | 383 | ||
385 | public vector llWind(vector offset) | 384 | public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) |
386 | { | 385 | { |
387 | return m_LSL_Functions.llWind(offset); | 386 | return m_LSL_Functions.llWind(offset); |
388 | } | 387 | } |
@@ -397,17 +396,17 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
397 | return m_LSL_Functions.llGetStatus(status); | 396 | return m_LSL_Functions.llGetStatus(status); |
398 | } | 397 | } |
399 | 398 | ||
400 | public void llSetScale(vector scale) | 399 | public void llSetScale(LSL_Types.Vector3 scale) |
401 | { | 400 | { |
402 | m_LSL_Functions.llSetScale(scale); | 401 | m_LSL_Functions.llSetScale(scale); |
403 | } | 402 | } |
404 | 403 | ||
405 | public vector llGetScale() | 404 | public LSL_Types.Vector3 llGetScale() |
406 | { | 405 | { |
407 | return m_LSL_Functions.llGetScale(); | 406 | return m_LSL_Functions.llGetScale(); |
408 | } | 407 | } |
409 | 408 | ||
410 | public void llSetColor(vector color, int face) | 409 | public void llSetColor(LSL_Types.Vector3 color, int face) |
411 | { | 410 | { |
412 | m_LSL_Functions.llSetColor(color, face); | 411 | m_LSL_Functions.llSetColor(color, face); |
413 | } | 412 | } |
@@ -422,7 +421,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
422 | m_LSL_Functions.llSetAlpha(alpha, face); | 421 | m_LSL_Functions.llSetAlpha(alpha, face); |
423 | } | 422 | } |
424 | 423 | ||
425 | public vector llGetColor(int face) | 424 | public LSL_Types.Vector3 llGetColor(int face) |
426 | { | 425 | { |
427 | return m_LSL_Functions.llGetColor(face); | 426 | return m_LSL_Functions.llGetColor(face); |
428 | } | 427 | } |
@@ -455,47 +454,47 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
455 | // | 454 | // |
456 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs | 455 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs |
457 | // | 456 | // |
458 | public void llSetPos(vector pos) | 457 | public void llSetPos(LSL_Types.Vector3 pos) |
459 | { | 458 | { |
460 | m_LSL_Functions.llSetPos(pos); | 459 | m_LSL_Functions.llSetPos(pos); |
461 | } | 460 | } |
462 | 461 | ||
463 | public vector llGetPos() | 462 | public LSL_Types.Vector3 llGetPos() |
464 | { | 463 | { |
465 | return m_LSL_Functions.llGetPos(); | 464 | return m_LSL_Functions.llGetPos(); |
466 | } | 465 | } |
467 | 466 | ||
468 | public vector llGetLocalPos() | 467 | public LSL_Types.Vector3 llGetLocalPos() |
469 | { | 468 | { |
470 | return m_LSL_Functions.llGetLocalPos(); | 469 | return m_LSL_Functions.llGetLocalPos(); |
471 | } | 470 | } |
472 | 471 | ||
473 | public void llSetRot(rotation rot) | 472 | public void llSetRot(LSL_Types.Quaternion rot) |
474 | { | 473 | { |
475 | m_LSL_Functions.llSetRot(rot); | 474 | m_LSL_Functions.llSetRot(rot); |
476 | } | 475 | } |
477 | 476 | ||
478 | public rotation llGetRot() | 477 | public LSL_Types.Quaternion llGetRot() |
479 | { | 478 | { |
480 | return m_LSL_Functions.llGetRot(); | 479 | return m_LSL_Functions.llGetRot(); |
481 | } | 480 | } |
482 | 481 | ||
483 | public rotation llGetLocalRot() | 482 | public LSL_Types.Quaternion llGetLocalRot() |
484 | { | 483 | { |
485 | return m_LSL_Functions.llGetLocalRot(); | 484 | return m_LSL_Functions.llGetLocalRot(); |
486 | } | 485 | } |
487 | 486 | ||
488 | public void llSetForce(vector force, int local) | 487 | public void llSetForce(LSL_Types.Vector3 force, int local) |
489 | { | 488 | { |
490 | m_LSL_Functions.llSetForce(force, local); | 489 | m_LSL_Functions.llSetForce(force, local); |
491 | } | 490 | } |
492 | 491 | ||
493 | public vector llGetForce() | 492 | public LSL_Types.Vector3 llGetForce() |
494 | { | 493 | { |
495 | return m_LSL_Functions.llGetForce(); | 494 | return m_LSL_Functions.llGetForce(); |
496 | } | 495 | } |
497 | 496 | ||
498 | public int llTarget(vector position, double range) | 497 | public int llTarget(LSL_Types.Vector3 position, double range) |
499 | { | 498 | { |
500 | return m_LSL_Functions.llTarget(position, range); | 499 | return m_LSL_Functions.llTarget(position, range); |
501 | } | 500 | } |
@@ -505,7 +504,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
505 | m_LSL_Functions.llTargetRemove(number); | 504 | m_LSL_Functions.llTargetRemove(number); |
506 | } | 505 | } |
507 | 506 | ||
508 | public int llRotTarget(rotation rot, double error) | 507 | public int llRotTarget(LSL_Types.Quaternion rot, double error) |
509 | { | 508 | { |
510 | return m_LSL_Functions.llRotTarget(rot, error); | 509 | return m_LSL_Functions.llRotTarget(rot, error); |
511 | } | 510 | } |
@@ -515,7 +514,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
515 | m_LSL_Functions.llRotTargetRemove(number); | 514 | m_LSL_Functions.llRotTargetRemove(number); |
516 | } | 515 | } |
517 | 516 | ||
518 | public void llMoveToTarget(vector target, double tau) | 517 | public void llMoveToTarget(LSL_Types.Vector3 target, double tau) |
519 | { | 518 | { |
520 | m_LSL_Functions.llMoveToTarget(target, tau); | 519 | m_LSL_Functions.llMoveToTarget(target, tau); |
521 | } | 520 | } |
@@ -525,7 +524,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
525 | m_LSL_Functions.llStopMoveToTarget(); | 524 | m_LSL_Functions.llStopMoveToTarget(); |
526 | } | 525 | } |
527 | 526 | ||
528 | public void llApplyImpulse(vector force, int local) | 527 | public void llApplyImpulse(LSL_Types.Vector3 force, int local) |
529 | { | 528 | { |
530 | m_LSL_Functions.llApplyImpulse(force, local); | 529 | m_LSL_Functions.llApplyImpulse(force, local); |
531 | } | 530 | } |
@@ -533,37 +532,37 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
533 | // | 532 | // |
534 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs | 533 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs |
535 | // | 534 | // |
536 | public void llApplyRotationalImpulse(vector force, int local) | 535 | public void llApplyRotationalImpulse(LSL_Types.Vector3 force, int local) |
537 | { | 536 | { |
538 | m_LSL_Functions.llApplyRotationalImpulse(force, local); | 537 | m_LSL_Functions.llApplyRotationalImpulse(force, local); |
539 | } | 538 | } |
540 | 539 | ||
541 | public void llSetTorque(vector torque, int local) | 540 | public void llSetTorque(LSL_Types.Vector3 torque, int local) |
542 | { | 541 | { |
543 | m_LSL_Functions.llSetTorque(torque, local); | 542 | m_LSL_Functions.llSetTorque(torque, local); |
544 | } | 543 | } |
545 | 544 | ||
546 | public vector llGetTorque() | 545 | public LSL_Types.Vector3 llGetTorque() |
547 | { | 546 | { |
548 | return m_LSL_Functions.llGetTorque(); | 547 | return m_LSL_Functions.llGetTorque(); |
549 | } | 548 | } |
550 | 549 | ||
551 | public void llSetForceAndTorque(vector force, vector torque, int local) | 550 | public void llSetForceAndTorque(LSL_Types.Vector3 force, LSL_Types.Vector3 torque, int local) |
552 | { | 551 | { |
553 | m_LSL_Functions.llSetForceAndTorque(force, torque, local); | 552 | m_LSL_Functions.llSetForceAndTorque(force, torque, local); |
554 | } | 553 | } |
555 | 554 | ||
556 | public vector llGetVel() | 555 | public LSL_Types.Vector3 llGetVel() |
557 | { | 556 | { |
558 | return m_LSL_Functions.llGetVel(); | 557 | return m_LSL_Functions.llGetVel(); |
559 | } | 558 | } |
560 | 559 | ||
561 | public vector llGetAccel() | 560 | public LSL_Types.Vector3 llGetAccel() |
562 | { | 561 | { |
563 | return m_LSL_Functions.llGetAccel(); | 562 | return m_LSL_Functions.llGetAccel(); |
564 | } | 563 | } |
565 | 564 | ||
566 | public vector llGetOmega() | 565 | public LSL_Types.Vector3 llGetOmega() |
567 | { | 566 | { |
568 | return m_LSL_Functions.llGetOmega(); | 567 | return m_LSL_Functions.llGetOmega(); |
569 | } | 568 | } |
@@ -691,12 +690,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
691 | m_LSL_Functions.llMakeFire(); | 690 | m_LSL_Functions.llMakeFire(); |
692 | } | 691 | } |
693 | 692 | ||
694 | public void llRezObject(string inventory, vector pos, rotation rot, int param) | 693 | public void llRezObject(string inventory, LSL_Types.Vector3 pos, LSL_Types.Quaternion rot, int param) |
695 | { | 694 | { |
696 | m_LSL_Functions.llRezObject(inventory, pos, rot, param); | 695 | m_LSL_Functions.llRezObject(inventory, pos, rot, param); |
697 | } | 696 | } |
698 | 697 | ||
699 | public void llLookAt(vector target, double strength, double damping) | 698 | public void llLookAt(LSL_Types.Vector3 target, double strength, double damping) |
700 | { | 699 | { |
701 | m_LSL_Functions.llLookAt(target, strength, damping); | 700 | m_LSL_Functions.llLookAt(target, strength, damping); |
702 | } | 701 | } |
@@ -809,7 +808,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
809 | m_LSL_Functions.llSoundPreload(); | 808 | m_LSL_Functions.llSoundPreload(); |
810 | } | 809 | } |
811 | 810 | ||
812 | public void llRotLookAt(rotation target, double strength, double damping) | 811 | public void llRotLookAt(LSL_Types.Quaternion target, double strength, double damping) |
813 | { | 812 | { |
814 | m_LSL_Functions.llRotLookAt(target, strength, damping); | 813 | m_LSL_Functions.llRotLookAt(target, strength, damping); |
815 | } | 814 | } |
@@ -842,7 +841,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
842 | m_LSL_Functions.llStopPointAt(); | 841 | m_LSL_Functions.llStopPointAt(); |
843 | } | 842 | } |
844 | 843 | ||
845 | public void llTargetOmega(vector axis, double spinrate, double gain) | 844 | public void llTargetOmega(LSL_Types.Vector3 axis, double spinrate, double gain) |
846 | { | 845 | { |
847 | m_LSL_Functions.llTargetOmega(axis, spinrate, gain); | 846 | m_LSL_Functions.llTargetOmega(axis, spinrate, gain); |
848 | } | 847 | } |
@@ -852,7 +851,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
852 | return m_LSL_Functions.llGetStartParameter(); | 851 | return m_LSL_Functions.llGetStartParameter(); |
853 | } | 852 | } |
854 | 853 | ||
855 | public void llGodLikeRezObject(string inventory, vector pos) | 854 | public void llGodLikeRezObject(string inventory, LSL_Types.Vector3 pos) |
856 | { | 855 | { |
857 | m_LSL_Functions.llGodLikeRezObject(inventory, pos); | 856 | m_LSL_Functions.llGodLikeRezObject(inventory, pos); |
858 | } | 857 | } |
@@ -877,7 +876,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
877 | return m_LSL_Functions.llGetLinkNumber(); | 876 | return m_LSL_Functions.llGetLinkNumber(); |
878 | } | 877 | } |
879 | 878 | ||
880 | public void llSetLinkColor(int linknumber, vector color, int face) | 879 | public void llSetLinkColor(int linknumber, LSL_Types.Vector3 color, int face) |
881 | { | 880 | { |
882 | m_LSL_Functions.llSetLinkColor(linknumber, color, face); | 881 | m_LSL_Functions.llSetLinkColor(linknumber, color, face); |
883 | } | 882 | } |
@@ -940,12 +939,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
940 | m_LSL_Functions.llRemoveInventory(item); | 939 | m_LSL_Functions.llRemoveInventory(item); |
941 | } | 940 | } |
942 | 941 | ||
943 | public void llSetText(string text, vector color, double alpha) | 942 | public void llSetText(string text, LSL_Types.Vector3 color, double alpha) |
944 | { | 943 | { |
945 | m_LSL_Functions.llSetText(text, color, alpha); | 944 | m_LSL_Functions.llSetText(text, color, alpha); |
946 | } | 945 | } |
947 | 946 | ||
948 | public double llWater(vector offset) | 947 | public double llWater(LSL_Types.Vector3 offset) |
949 | { | 948 | { |
950 | return m_LSL_Functions.llWater(offset); | 949 | return m_LSL_Functions.llWater(offset); |
951 | } | 950 | } |
@@ -1005,7 +1004,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1005 | m_LSL_Functions.llMessageLinked(linknum, num, str, id); | 1004 | m_LSL_Functions.llMessageLinked(linknum, num, str, id); |
1006 | } | 1005 | } |
1007 | 1006 | ||
1008 | public void llPushObject(string target, vector impulse, vector ang_impulse, int local) | 1007 | public void llPushObject(string target, LSL_Types.Vector3 impulse, LSL_Types.Vector3 ang_impulse, int local) |
1009 | { | 1008 | { |
1010 | m_LSL_Functions.llPushObject(target, impulse, ang_impulse, local); | 1009 | m_LSL_Functions.llPushObject(target, impulse, ang_impulse, local); |
1011 | } | 1010 | } |
@@ -1028,12 +1027,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1028 | // | 1027 | // |
1029 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs | 1028 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs |
1030 | // | 1029 | // |
1031 | public rotation llAxisAngle2Rot(vector axis, double angle) | 1030 | public LSL_Types.Quaternion llAxisAngle2Rot(LSL_Types.Vector3 axis, double angle) |
1032 | { | 1031 | { |
1033 | return m_LSL_Functions.llAxisAngle2Rot(axis, angle); | 1032 | return m_LSL_Functions.llAxisAngle2Rot(axis, angle); |
1034 | } | 1033 | } |
1035 | 1034 | ||
1036 | public vector llRot2Axis(rotation rot) | 1035 | public LSL_Types.Vector3 llRot2Axis(LSL_Types.Quaternion rot) |
1037 | { | 1036 | { |
1038 | return m_LSL_Functions.llRot2Axis(rot); | 1037 | return m_LSL_Functions.llRot2Axis(rot); |
1039 | } | 1038 | } |
@@ -1053,7 +1052,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1053 | return m_LSL_Functions.llAsin(val); | 1052 | return m_LSL_Functions.llAsin(val); |
1054 | } | 1053 | } |
1055 | 1054 | ||
1056 | public double llAngleBetween(rotation a, rotation b) | 1055 | public double llAngleBetween(LSL_Types.Quaternion a, LSL_Types.Quaternion b) |
1057 | { | 1056 | { |
1058 | return m_LSL_Functions.llAngleBetween(a, b); | 1057 | return m_LSL_Functions.llAngleBetween(a, b); |
1059 | } | 1058 | } |
@@ -1068,17 +1067,17 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1068 | m_LSL_Functions.llAllowInventoryDrop(add); | 1067 | m_LSL_Functions.llAllowInventoryDrop(add); |
1069 | } | 1068 | } |
1070 | 1069 | ||
1071 | public vector llGetSunDirection() | 1070 | public LSL_Types.Vector3 llGetSunDirection() |
1072 | { | 1071 | { |
1073 | return m_LSL_Functions.llGetSunDirection(); | 1072 | return m_LSL_Functions.llGetSunDirection(); |
1074 | } | 1073 | } |
1075 | 1074 | ||
1076 | public vector llGetTextureOffset(int face) | 1075 | public LSL_Types.Vector3 llGetTextureOffset(int face) |
1077 | { | 1076 | { |
1078 | return m_LSL_Functions.llGetTextureOffset(face); | 1077 | return m_LSL_Functions.llGetTextureOffset(face); |
1079 | } | 1078 | } |
1080 | 1079 | ||
1081 | public vector llGetTextureScale(int side) | 1080 | public LSL_Types.Vector3 llGetTextureScale(int side) |
1082 | { | 1081 | { |
1083 | return m_LSL_Functions.llGetTextureScale(side); | 1082 | return m_LSL_Functions.llGetTextureScale(side); |
1084 | } | 1083 | } |
@@ -1098,7 +1097,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1098 | return m_LSL_Functions.llGetOwnerKey(id); | 1097 | return m_LSL_Functions.llGetOwnerKey(id); |
1099 | } | 1098 | } |
1100 | 1099 | ||
1101 | public vector llGetCenterOfMass() | 1100 | public LSL_Types.Vector3 llGetCenterOfMass() |
1102 | { | 1101 | { |
1103 | return m_LSL_Functions.llGetCenterOfMass(); | 1102 | return m_LSL_Functions.llGetCenterOfMass(); |
1104 | } | 1103 | } |
@@ -1136,12 +1135,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1136 | return m_LSL_Functions.llList2Key(src, index); | 1135 | return m_LSL_Functions.llList2Key(src, index); |
1137 | } | 1136 | } |
1138 | 1137 | ||
1139 | public vector llList2Vector(LSL_Types.list src, int index) | 1138 | public LSL_Types.Vector3 llList2Vector(LSL_Types.list src, int index) |
1140 | { | 1139 | { |
1141 | return m_LSL_Functions.llList2Vector(src, index); | 1140 | return m_LSL_Functions.llList2Vector(src, index); |
1142 | } | 1141 | } |
1143 | 1142 | ||
1144 | public rotation llList2Rot(LSL_Types.list src, int index) | 1143 | public LSL_Types.Quaternion llList2Rot(LSL_Types.list src, int index) |
1145 | { | 1144 | { |
1146 | return m_LSL_Functions.llList2Rot(src, index); | 1145 | return m_LSL_Functions.llList2Rot(src, index); |
1147 | } | 1146 | } |
@@ -1181,7 +1180,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1181 | return m_LSL_Functions.llList2ListStrided(src, start, end, stride); | 1180 | return m_LSL_Functions.llList2ListStrided(src, start, end, stride); |
1182 | } | 1181 | } |
1183 | 1182 | ||
1184 | public vector llGetRegionCorner() | 1183 | public LSL_Types.Vector3 llGetRegionCorner() |
1185 | { | 1184 | { |
1186 | return m_LSL_Functions.llGetRegionCorner(); | 1185 | return m_LSL_Functions.llGetRegionCorner(); |
1187 | } | 1186 | } |
@@ -1211,7 +1210,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1211 | return m_LSL_Functions.llGetDate(); | 1210 | return m_LSL_Functions.llGetDate(); |
1212 | } | 1211 | } |
1213 | 1212 | ||
1214 | public int llEdgeOfWorld(vector pos, vector dir) | 1213 | public int llEdgeOfWorld(LSL_Types.Vector3 pos, LSL_Types.Vector3 dir) |
1215 | { | 1214 | { |
1216 | return m_LSL_Functions.llEdgeOfWorld(pos, dir); | 1215 | return m_LSL_Functions.llEdgeOfWorld(pos, dir); |
1217 | } | 1216 | } |
@@ -1249,7 +1248,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1249 | m_LSL_Functions.llSetTextureAnim(mode, face, sizex, sizey, start, length, rate); | 1248 | m_LSL_Functions.llSetTextureAnim(mode, face, sizex, sizey, start, length, rate); |
1250 | } | 1249 | } |
1251 | 1250 | ||
1252 | public void llTriggerSoundLimited(string sound, double volume, vector top_north_east, vector bottom_south_west) | 1251 | public void llTriggerSoundLimited(string sound, double volume, LSL_Types.Vector3 top_north_east, LSL_Types.Vector3 bottom_south_west) |
1253 | { | 1252 | { |
1254 | m_LSL_Functions.llTriggerSoundLimited(sound, volume, top_north_east, bottom_south_west); | 1253 | m_LSL_Functions.llTriggerSoundLimited(sound, volume, top_north_east, bottom_south_west); |
1255 | } | 1254 | } |
@@ -1269,7 +1268,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1269 | return m_LSL_Functions.llOverMyLand(id); | 1268 | return m_LSL_Functions.llOverMyLand(id); |
1270 | } | 1269 | } |
1271 | 1270 | ||
1272 | public string llGetLandOwnerAt(vector pos) | 1271 | public string llGetLandOwnerAt(LSL_Types.Vector3 pos) |
1273 | { | 1272 | { |
1274 | return m_LSL_Functions.llGetLandOwnerAt(pos); | 1273 | return m_LSL_Functions.llGetLandOwnerAt(pos); |
1275 | } | 1274 | } |
@@ -1279,7 +1278,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1279 | return m_LSL_Functions.llGetNotecardLine(name, line); | 1278 | return m_LSL_Functions.llGetNotecardLine(name, line); |
1280 | } | 1279 | } |
1281 | 1280 | ||
1282 | public vector llGetAgentSize(string id) | 1281 | public LSL_Types.Vector3 llGetAgentSize(string id) |
1283 | { | 1282 | { |
1284 | return m_LSL_Functions.llGetAgentSize(id); | 1283 | return m_LSL_Functions.llGetAgentSize(id); |
1285 | } | 1284 | } |
@@ -1294,17 +1293,17 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1294 | m_LSL_Functions.llUnSit(id); | 1293 | m_LSL_Functions.llUnSit(id); |
1295 | } | 1294 | } |
1296 | 1295 | ||
1297 | public vector llGroundSlope(vector offset) | 1296 | public LSL_Types.Vector3 llGroundSlope(LSL_Types.Vector3 offset) |
1298 | { | 1297 | { |
1299 | return m_LSL_Functions.llGroundSlope(offset); | 1298 | return m_LSL_Functions.llGroundSlope(offset); |
1300 | } | 1299 | } |
1301 | 1300 | ||
1302 | public vector llGroundNormal(vector offset) | 1301 | public LSL_Types.Vector3 llGroundNormal(LSL_Types.Vector3 offset) |
1303 | { | 1302 | { |
1304 | return m_LSL_Functions.llGroundNormal(offset); | 1303 | return m_LSL_Functions.llGroundNormal(offset); |
1305 | } | 1304 | } |
1306 | 1305 | ||
1307 | public vector llGroundContour(vector offset) | 1306 | public LSL_Types.Vector3 llGroundContour(LSL_Types.Vector3 offset) |
1308 | { | 1307 | { |
1309 | return m_LSL_Functions.llGroundContour(offset); | 1308 | return m_LSL_Functions.llGroundContour(offset); |
1310 | } | 1309 | } |
@@ -1362,12 +1361,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1362 | m_LSL_Functions.llSetVehicledoubleParam(param, value); | 1361 | m_LSL_Functions.llSetVehicledoubleParam(param, value); |
1363 | } | 1362 | } |
1364 | 1363 | ||
1365 | public void llSetVehicleVectorParam(int param, vector vec) | 1364 | public void llSetVehicleVectorParam(int param, LSL_Types.Vector3 vec) |
1366 | { | 1365 | { |
1367 | m_LSL_Functions.llSetVehicleVectorParam(param, vec); | 1366 | m_LSL_Functions.llSetVehicleVectorParam(param, vec); |
1368 | } | 1367 | } |
1369 | 1368 | ||
1370 | public void llSetVehicleRotationParam(int param, rotation rot) | 1369 | public void llSetVehicleRotationParam(int param, LSL_Types.Quaternion rot) |
1371 | { | 1370 | { |
1372 | m_LSL_Functions.llSetVehicleRotationParam(param, rot); | 1371 | m_LSL_Functions.llSetVehicleRotationParam(param, rot); |
1373 | } | 1372 | } |
@@ -1382,7 +1381,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1382 | m_LSL_Functions.llRemoveVehicleFlags(flags); | 1381 | m_LSL_Functions.llRemoveVehicleFlags(flags); |
1383 | } | 1382 | } |
1384 | 1383 | ||
1385 | public void llSitTarget(vector offset, rotation rot) | 1384 | public void llSitTarget(LSL_Types.Vector3 offset, LSL_Types.Quaternion rot) |
1386 | { | 1385 | { |
1387 | m_LSL_Functions.llSitTarget(offset, rot); | 1386 | m_LSL_Functions.llSitTarget(offset, rot); |
1388 | } | 1387 | } |
@@ -1407,12 +1406,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1407 | m_LSL_Functions.llSetSitText(text); | 1406 | m_LSL_Functions.llSetSitText(text); |
1408 | } | 1407 | } |
1409 | 1408 | ||
1410 | public void llSetCameraEyeOffset(vector offset) | 1409 | public void llSetCameraEyeOffset(LSL_Types.Vector3 offset) |
1411 | { | 1410 | { |
1412 | m_LSL_Functions.llSetCameraEyeOffset(offset); | 1411 | m_LSL_Functions.llSetCameraEyeOffset(offset); |
1413 | } | 1412 | } |
1414 | 1413 | ||
1415 | public void llSetCameraAtOffset(vector offset) | 1414 | public void llSetCameraAtOffset(LSL_Types.Vector3 offset) |
1416 | { | 1415 | { |
1417 | m_LSL_Functions.llSetCameraAtOffset(offset); | 1416 | m_LSL_Functions.llSetCameraAtOffset(offset); |
1418 | } | 1417 | } |
@@ -1422,7 +1421,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1422 | return m_LSL_Functions.llDumpList2String(src, seperator); | 1421 | return m_LSL_Functions.llDumpList2String(src, seperator); |
1423 | } | 1422 | } |
1424 | 1423 | ||
1425 | public void llScriptDanger(vector pos) | 1424 | public void llScriptDanger(LSL_Types.Vector3 pos) |
1426 | { | 1425 | { |
1427 | m_LSL_Functions.llScriptDanger(pos); | 1426 | m_LSL_Functions.llScriptDanger(pos); |
1428 | } | 1427 | } |
@@ -1539,12 +1538,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1539 | m_LSL_Functions.llSetParcelMusicURL(url); | 1538 | m_LSL_Functions.llSetParcelMusicURL(url); |
1540 | } | 1539 | } |
1541 | 1540 | ||
1542 | public vector llGetRootPosition() | 1541 | public LSL_Types.Vector3 llGetRootPosition() |
1543 | { | 1542 | { |
1544 | return m_LSL_Functions.llGetRootPosition(); | 1543 | return m_LSL_Functions.llGetRootPosition(); |
1545 | } | 1544 | } |
1546 | 1545 | ||
1547 | public rotation llGetRootRotation() | 1546 | public LSL_Types.Quaternion llGetRootRotation() |
1548 | { | 1547 | { |
1549 | return m_LSL_Functions.llGetRootRotation(); | 1548 | return m_LSL_Functions.llGetRootRotation(); |
1550 | } | 1549 | } |
@@ -1589,7 +1588,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1589 | return m_LSL_Functions.llGetBoundingBox(obj); | 1588 | return m_LSL_Functions.llGetBoundingBox(obj); |
1590 | } | 1589 | } |
1591 | 1590 | ||
1592 | public vector llGetGeometricCenter() | 1591 | public LSL_Types.Vector3 llGetGeometricCenter() |
1593 | { | 1592 | { |
1594 | return m_LSL_Functions.llGetGeometricCenter(); | 1593 | return m_LSL_Functions.llGetGeometricCenter(); |
1595 | } | 1594 | } |
@@ -1622,7 +1621,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1622 | return m_LSL_Functions.llGetSimulatorHostname(); | 1621 | return m_LSL_Functions.llGetSimulatorHostname(); |
1623 | } | 1622 | } |
1624 | 1623 | ||
1625 | public void llSetLocalRot(rotation rot) | 1624 | public void llSetLocalRot(LSL_Types.Quaternion rot) |
1626 | { | 1625 | { |
1627 | m_LSL_Functions.llSetLocalRot(rot); | 1626 | m_LSL_Functions.llSetLocalRot(rot); |
1628 | } | 1627 | } |
@@ -1632,7 +1631,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1632 | return m_LSL_Functions.llParseStringKeepNulls(src, seperators, spacers); | 1631 | return m_LSL_Functions.llParseStringKeepNulls(src, seperators, spacers); |
1633 | } | 1632 | } |
1634 | 1633 | ||
1635 | public void llRezAtRoot(string inventory, vector position, vector velocity, rotation rot, int param) | 1634 | public void llRezAtRoot(string inventory, LSL_Types.Vector3 position, LSL_Types.Vector3 velocity, LSL_Types.Quaternion rot, int param) |
1636 | { | 1635 | { |
1637 | m_LSL_Functions.llRezAtRoot(inventory, position, velocity, rot, param); | 1636 | m_LSL_Functions.llRezAtRoot(inventory, position, velocity, rot, param); |
1638 | } | 1637 | } |
@@ -1720,12 +1719,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1720 | m_LSL_Functions.llSetPayPrice(price, quick_pay_buttons); | 1719 | m_LSL_Functions.llSetPayPrice(price, quick_pay_buttons); |
1721 | } | 1720 | } |
1722 | 1721 | ||
1723 | public vector llGetCameraPos() | 1722 | public LSL_Types.Vector3 llGetCameraPos() |
1724 | { | 1723 | { |
1725 | return m_LSL_Functions.llGetCameraPos(); | 1724 | return m_LSL_Functions.llGetCameraPos(); |
1726 | } | 1725 | } |
1727 | 1726 | ||
1728 | public rotation llGetCameraRot() | 1727 | public LSL_Types.Quaternion llGetCameraRot() |
1729 | { | 1728 | { |
1730 | return m_LSL_Functions.llGetCameraRot(); | 1729 | return m_LSL_Functions.llGetCameraRot(); |
1731 | } | 1730 | } |
@@ -1750,7 +1749,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1750 | return m_LSL_Functions.llUnescapeURL(url); | 1749 | return m_LSL_Functions.llUnescapeURL(url); |
1751 | } | 1750 | } |
1752 | 1751 | ||
1753 | public void llMapDestination(string simname, vector pos, vector look_at) | 1752 | public void llMapDestination(string simname, LSL_Types.Vector3 pos, LSL_Types.Vector3 look_at) |
1754 | { | 1753 | { |
1755 | m_LSL_Functions.llMapDestination(simname, pos, look_at); | 1754 | m_LSL_Functions.llMapDestination(simname, pos, look_at); |
1756 | } | 1755 | } |
@@ -1790,7 +1789,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1790 | return m_LSL_Functions.llGetUnixTime(); | 1789 | return m_LSL_Functions.llGetUnixTime(); |
1791 | } | 1790 | } |
1792 | 1791 | ||
1793 | public int llGetParcelFlags(vector pos) | 1792 | public int llGetParcelFlags(LSL_Types.Vector3 pos) |
1794 | { | 1793 | { |
1795 | return m_LSL_Functions.llGetParcelFlags(pos); | 1794 | return m_LSL_Functions.llGetParcelFlags(pos); |
1796 | } | 1795 | } |
@@ -1820,12 +1819,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1820 | m_LSL_Functions.llResetLandPassList(); | 1819 | m_LSL_Functions.llResetLandPassList(); |
1821 | } | 1820 | } |
1822 | 1821 | ||
1823 | public int llGetParcelPrimCount(vector pos, int category, int sim_wide) | 1822 | public int llGetParcelPrimCount(LSL_Types.Vector3 pos, int category, int sim_wide) |
1824 | { | 1823 | { |
1825 | return m_LSL_Functions.llGetParcelPrimCount(pos, category, sim_wide); | 1824 | return m_LSL_Functions.llGetParcelPrimCount(pos, category, sim_wide); |
1826 | } | 1825 | } |
1827 | 1826 | ||
1828 | public LSL_Types.list llGetParcelPrimOwners(vector pos) | 1827 | public LSL_Types.list llGetParcelPrimOwners(LSL_Types.Vector3 pos) |
1829 | { | 1828 | { |
1830 | return m_LSL_Functions.llGetParcelPrimOwners(pos); | 1829 | return m_LSL_Functions.llGetParcelPrimOwners(pos); |
1831 | } | 1830 | } |
@@ -1838,12 +1837,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1838 | // | 1837 | // |
1839 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs | 1838 | // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs |
1840 | // | 1839 | // |
1841 | public int llGetParcelMaxPrims(vector pos, int sim_wide) | 1840 | public int llGetParcelMaxPrims(LSL_Types.Vector3 pos, int sim_wide) |
1842 | { | 1841 | { |
1843 | return m_LSL_Functions.llGetParcelMaxPrims(pos, sim_wide); | 1842 | return m_LSL_Functions.llGetParcelMaxPrims(pos, sim_wide); |
1844 | } | 1843 | } |
1845 | 1844 | ||
1846 | public LSL_Types.list llGetParcelDetails(vector pos, LSL_Types.list param) | 1845 | public LSL_Types.list llGetParcelDetails(LSL_Types.Vector3 pos, LSL_Types.list param) |
1847 | { | 1846 | { |
1848 | return m_LSL_Functions.llGetParcelDetails(pos, param); | 1847 | return m_LSL_Functions.llGetParcelDetails(pos, param); |
1849 | } | 1848 | } |
@@ -2381,7 +2380,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2381 | public const int OBJECT_CREATOR = 8; | 2380 | public const int OBJECT_CREATOR = 8; |
2382 | 2381 | ||
2383 | // Can not be public const? | 2382 | // Can not be public const? |
2384 | public vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); | 2383 | public LSL_Types.Vector3 ZERO_VECTOR = new LSL_Types.Vector3(0.0, 0.0, 0.0); |
2385 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); | 2384 | public LSL_Types.Quaternion ZERO_ROTATION = new LSL_Types.Quaternion(0.0, 0, 0.0, 1.0); |
2386 | } | 2385 | } |
2387 | } | 2386 | } |
diff --git a/OpenSim/Region/ScriptEngine/Common/Executor.cs b/OpenSim/Region/ScriptEngine/Common/Executor.cs index 45f7355..8e0d6f1 100644 --- a/OpenSim/Region/ScriptEngine/Common/Executor.cs +++ b/OpenSim/Region/ScriptEngine/Common/Executor.cs | |||
@@ -28,7 +28,6 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | 30 | using System.Reflection; |
31 | using System.Runtime.Remoting.Lifetime; | ||
32 | 31 | ||
33 | namespace OpenSim.Region.ScriptEngine.Common | 32 | namespace OpenSim.Region.ScriptEngine.Common |
34 | { | 33 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ExecutorBase.cs b/OpenSim/Region/ScriptEngine/Common/ExecutorBase.cs index 50eb56f..19fb487 100644 --- a/OpenSim/Region/ScriptEngine/Common/ExecutorBase.cs +++ b/OpenSim/Region/ScriptEngine/Common/ExecutorBase.cs | |||
@@ -26,9 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Runtime.Remoting.Lifetime; | 29 | using System.Runtime.Remoting.Lifetime; |
31 | using System.Text; | ||
32 | 30 | ||
33 | namespace OpenSim.Region.ScriptEngine.Common | 31 | namespace OpenSim.Region.ScriptEngine.Common |
34 | { | 32 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index c00254d..04f8967 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -34,13 +34,12 @@ using System.Threading; | |||
34 | using Axiom.Math; | 34 | using Axiom.Math; |
35 | using libsecondlife; | 35 | using libsecondlife; |
36 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
37 | using OpenSim.Framework.Communications; | 37 | using OpenSim.Region.Environment; |
38 | using OpenSim.Region.Environment.Interfaces; | 38 | using OpenSim.Region.Environment.Interfaces; |
39 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
39 | using OpenSim.Region.Environment.Scenes; | 40 | using OpenSim.Region.Environment.Scenes; |
40 | using OpenSim.Region.ScriptEngine.Common; | ||
41 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | 41 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; |
42 | using OpenSim.Region.Environment; | 42 | |
43 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
44 | //using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL; | 43 | //using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL; |
45 | 44 | ||
46 | namespace OpenSim.Region.ScriptEngine.Common | 45 | namespace OpenSim.Region.ScriptEngine.Common |
@@ -86,7 +85,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
86 | } | 85 | } |
87 | catch (AppDomainUnloadedException) | 86 | catch (AppDomainUnloadedException) |
88 | { | 87 | { |
89 | System.Console.WriteLine("[SCRIPT]: state change called when script was unloaded. Nothing to worry about, but noting the occurance"); | 88 | Console.WriteLine("[SCRIPT]: state change called when script was unloaded. Nothing to worry about, but noting the occurance"); |
90 | } | 89 | } |
91 | } | 90 | } |
92 | } | 91 | } |
@@ -1677,10 +1676,10 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1677 | //m_pendingFriendRequests.Add(friendTransactionID, fromAgentID); | 1676 | //m_pendingFriendRequests.Add(friendTransactionID, fromAgentID); |
1678 | 1677 | ||
1679 | GridInstantMessage msg = new GridInstantMessage(); | 1678 | GridInstantMessage msg = new GridInstantMessage(); |
1680 | msg.fromAgentID = new System.Guid(m_host.UUID.ToString()); // fromAgentID.UUID; | 1679 | msg.fromAgentID = new Guid(m_host.UUID.ToString()); // fromAgentID.UUID; |
1681 | msg.fromAgentSession = new System.Guid(friendTransactionID.ToString());// fromAgentSession.UUID; | 1680 | msg.fromAgentSession = new Guid(friendTransactionID.ToString());// fromAgentSession.UUID; |
1682 | msg.toAgentID = new System.Guid(user); // toAgentID.UUID; | 1681 | msg.toAgentID = new Guid(user); // toAgentID.UUID; |
1683 | msg.imSessionID = new System.Guid(friendTransactionID.ToString()); // This is the item we're mucking with here | 1682 | msg.imSessionID = new Guid(friendTransactionID.ToString()); // This is the item we're mucking with here |
1684 | Console.WriteLine("[Scripting IM]: From:" + msg.fromAgentID.ToString() + " To: " + msg.toAgentID.ToString() + " Session:" + msg.imSessionID.ToString() + " Message:" + message); | 1683 | Console.WriteLine("[Scripting IM]: From:" + msg.fromAgentID.ToString() + " To: " + msg.toAgentID.ToString() + " Session:" + msg.imSessionID.ToString() + " Message:" + message); |
1685 | Console.WriteLine("[Scripting IM]: Filling Session: " + msg.imSessionID.ToString()); | 1684 | Console.WriteLine("[Scripting IM]: Filling Session: " + msg.imSessionID.ToString()); |
1686 | msg.timestamp = (uint)Util.UnixTimeSinceEpoch();// timestamp; | 1685 | msg.timestamp = (uint)Util.UnixTimeSinceEpoch();// timestamp; |
@@ -2654,7 +2653,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2654 | { | 2653 | { |
2655 | return new LSL_Types.Vector3(0, 0, 0); | 2654 | return new LSL_Types.Vector3(0, 0, 0); |
2656 | } | 2655 | } |
2657 | if (src.Data[index].GetType() == typeof(OpenSim.Region.ScriptEngine.Common.LSL_Types.Vector3)) | 2656 | if (src.Data[index].GetType() == typeof(LSL_Types.Vector3)) |
2658 | { | 2657 | { |
2659 | return (LSL_Types.Vector3)src.Data[index]; | 2658 | return (LSL_Types.Vector3)src.Data[index]; |
2660 | } | 2659 | } |
@@ -2675,7 +2674,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2675 | { | 2674 | { |
2676 | return new LSL_Types.Quaternion(0, 0, 0, 1); | 2675 | return new LSL_Types.Quaternion(0, 0, 0, 1); |
2677 | } | 2676 | } |
2678 | if (src.Data[index].GetType() == typeof(OpenSim.Region.ScriptEngine.Common.LSL_Types.Quaternion)) | 2677 | if (src.Data[index].GetType() == typeof(LSL_Types.Quaternion)) |
2679 | { | 2678 | { |
2680 | return (LSL_Types.Quaternion)src.Data[index]; | 2679 | return (LSL_Types.Quaternion)src.Data[index]; |
2681 | } | 2680 | } |
@@ -2713,11 +2712,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2713 | return 0; | 2712 | return 0; |
2714 | } | 2713 | } |
2715 | 2714 | ||
2716 | if (src.Data[index] is System.Int32) | 2715 | if (src.Data[index] is Int32) |
2717 | return 1; | 2716 | return 1; |
2718 | if (src.Data[index] is System.Double) | 2717 | if (src.Data[index] is Double) |
2719 | return 2; | 2718 | return 2; |
2720 | if (src.Data[index] is System.String) | 2719 | if (src.Data[index] is String) |
2721 | { | 2720 | { |
2722 | LLUUID tuuid; | 2721 | LLUUID tuuid; |
2723 | if (LLUUID.TryParse(src.Data[index].ToString(), out tuuid)) | 2722 | if (LLUUID.TryParse(src.Data[index].ToString(), out tuuid)) |
@@ -2729,11 +2728,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2729 | return 4; | 2728 | return 4; |
2730 | } | 2729 | } |
2731 | } | 2730 | } |
2732 | if (src.Data[index] is OpenSim.Region.ScriptEngine.Common.LSL_Types.Vector3) | 2731 | if (src.Data[index] is LSL_Types.Vector3) |
2733 | return 5; | 2732 | return 5; |
2734 | if (src.Data[index] is OpenSim.Region.ScriptEngine.Common.LSL_Types.Quaternion) | 2733 | if (src.Data[index] is LSL_Types.Quaternion) |
2735 | return 6; | 2734 | return 6; |
2736 | if (src.Data[index] is OpenSim.Region.ScriptEngine.Common.LSL_Types.list) | 2735 | if (src.Data[index] is LSL_Types.list) |
2737 | return 7; | 2736 | return 7; |
2738 | return 0; | 2737 | return 0; |
2739 | 2738 | ||
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs index 8d8e0bc..fa957bb 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs | |||
@@ -25,7 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using OpenSim.Region.Environment.Interfaces; |
29 | 29 | ||
30 | namespace OpenSim.Region.ScriptEngine.Common | 30 | namespace OpenSim.Region.ScriptEngine.Common |
31 | { | 31 | { |
@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
35 | 35 | ||
36 | string State { get; set; } | 36 | string State { get; set; } |
37 | 37 | ||
38 | OpenSim.Region.Environment.Interfaces.ICommander GetCommander(string name); | 38 | ICommander GetCommander(string name); |
39 | 39 | ||
40 | double llSin(double f); | 40 | double llSin(double f); |
41 | double llCos(double f); | 41 | double llCos(double f); |
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs index 55c13a4..7a8b4ca 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | |||
@@ -26,8 +26,8 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Text.RegularExpressions; | ||
30 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Text.RegularExpressions; | ||
31 | 31 | ||
32 | namespace OpenSim.Region.ScriptEngine.Common | 32 | namespace OpenSim.Region.ScriptEngine.Common |
33 | { | 33 | { |
@@ -639,7 +639,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
639 | public double GeometricMean() | 639 | public double GeometricMean() |
640 | { | 640 | { |
641 | double ret = 1.0; | 641 | double ret = 1.0; |
642 | list nums = list.ToDoubleList(this); | 642 | list nums = ToDoubleList(this); |
643 | for (int i = 0; i < nums.Data.Length; i++) | 643 | for (int i = 0; i < nums.Data.Length; i++) |
644 | { | 644 | { |
645 | ret *= (double)nums.Data[i]; | 645 | ret *= (double)nums.Data[i]; |
@@ -650,7 +650,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
650 | public double HarmonicMean() | 650 | public double HarmonicMean() |
651 | { | 651 | { |
652 | double ret = 0.0; | 652 | double ret = 0.0; |
653 | list nums = list.ToDoubleList(this); | 653 | list nums = ToDoubleList(this); |
654 | for (int i = 0; i < nums.Data.Length; i++) | 654 | for (int i = 0; i < nums.Data.Length; i++) |
655 | { | 655 | { |
656 | ret += 1.0 / (double)nums.Data[i]; | 656 | ret += 1.0 / (double)nums.Data[i]; |
@@ -661,7 +661,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
661 | public double Variance() | 661 | public double Variance() |
662 | { | 662 | { |
663 | double s = 0; | 663 | double s = 0; |
664 | list num = list.ToDoubleList(this); | 664 | list num = ToDoubleList(this); |
665 | for (int i = 0; i < num.Data.Length; i++) | 665 | for (int i = 0; i < num.Data.Length; i++) |
666 | { | 666 | { |
667 | s += Math.Pow((double)num.Data[i], 2); | 667 | s += Math.Pow((double)num.Data[i], 2); |
@@ -701,7 +701,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
701 | output = "["; | 701 | output = "["; |
702 | foreach (object o in m_data) | 702 | foreach (object o in m_data) |
703 | { | 703 | { |
704 | if (o is System.String) | 704 | if (o is String) |
705 | { | 705 | { |
706 | output = output + "\"" + o + "\", "; | 706 | output = output + "\"" + o + "\", "; |
707 | } | 707 | } |
@@ -837,7 +837,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
837 | 837 | ||
838 | #region Operators | 838 | #region Operators |
839 | 839 | ||
840 | static public implicit operator System.Boolean(key k) | 840 | static public implicit operator Boolean(key k) |
841 | { | 841 | { |
842 | if (k.value.Length == 0) | 842 | if (k.value.Length == 0) |
843 | { | 843 | { |
@@ -864,7 +864,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
864 | return new key(s); | 864 | return new key(s); |
865 | } | 865 | } |
866 | 866 | ||
867 | static public implicit operator System.String(key k) | 867 | static public implicit operator String(key k) |
868 | { | 868 | { |
869 | return k.value; | 869 | return k.value; |
870 | } | 870 | } |
@@ -917,7 +917,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
917 | #endregion | 917 | #endregion |
918 | 918 | ||
919 | #region Operators | 919 | #region Operators |
920 | static public implicit operator System.Boolean(LSLString s) | 920 | static public implicit operator Boolean(LSLString s) |
921 | { | 921 | { |
922 | if (s.m_string.Length == 0) | 922 | if (s.m_string.Length == 0) |
923 | { | 923 | { |
@@ -929,7 +929,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
929 | } | 929 | } |
930 | } | 930 | } |
931 | 931 | ||
932 | static public implicit operator System.String(LSLString s) | 932 | static public implicit operator String(LSLString s) |
933 | { | 933 | { |
934 | return s.m_string; | 934 | return s.m_string; |
935 | } | 935 | } |
@@ -1017,12 +1017,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1017 | } | 1017 | } |
1018 | 1018 | ||
1019 | #endregion | 1019 | #endregion |
1020 | static public implicit operator System.Int32(LSLInteger i) | 1020 | static public implicit operator Int32(LSLInteger i) |
1021 | { | 1021 | { |
1022 | return i.value; | 1022 | return i.value; |
1023 | } | 1023 | } |
1024 | 1024 | ||
1025 | static public implicit operator System.Boolean(LSLInteger i) | 1025 | static public implicit operator Boolean(LSLInteger i) |
1026 | { | 1026 | { |
1027 | if (i.value == 0) | 1027 | if (i.value == 0) |
1028 | { | 1028 | { |
@@ -1086,7 +1086,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1086 | 1086 | ||
1087 | #region Operators | 1087 | #region Operators |
1088 | 1088 | ||
1089 | static public implicit operator System.Double(LSLFloat f) | 1089 | static public implicit operator Double(LSLFloat f) |
1090 | { | 1090 | { |
1091 | return f.value; | 1091 | return f.value; |
1092 | } | 1092 | } |
@@ -1097,7 +1097,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1097 | //} | 1097 | //} |
1098 | 1098 | ||
1099 | 1099 | ||
1100 | static public implicit operator System.Boolean(LSLFloat f) | 1100 | static public implicit operator Boolean(LSLFloat f) |
1101 | { | 1101 | { |
1102 | if (f.value == 0) | 1102 | if (f.value == 0) |
1103 | { | 1103 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs index de19f4e..b919f8d 100644 --- a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs | |||
@@ -25,21 +25,13 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | using System; | 27 | using System; |
28 | using System.Collections; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Runtime.Remoting.Lifetime; | ||
31 | using System.Text; | ||
32 | using System.Threading; | ||
33 | using Axiom.Math; | 28 | using Axiom.Math; |
34 | using libsecondlife; | 29 | using libsecondlife; |
35 | using OpenSim.Framework; | 30 | using Nini.Config; |
36 | using OpenSim.Framework.Communications; | 31 | using OpenSim.Framework.Console; |
37 | using OpenSim.Region.Environment.Interfaces; | 32 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 33 | using OpenSim.Region.Environment.Scenes; |
39 | using OpenSim.Region.ScriptEngine.Common; | 34 | |
40 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | ||
41 | using OpenSim.Region.Environment; | ||
42 | using OpenSim.Region.Environment.Modules.LandManagement; | ||
43 | //using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL; | 35 | //using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL; |
44 | 36 | ||
45 | namespace OpenSim.Region.ScriptEngine.Common | 37 | namespace OpenSim.Region.ScriptEngine.Common |
@@ -408,7 +400,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
408 | public bool osConsoleCommand(string command) | 400 | public bool osConsoleCommand(string command) |
409 | { | 401 | { |
410 | m_host.AddScriptLPS(1); | 402 | m_host.AddScriptLPS(1); |
411 | Nini.Config.IConfigSource config = new Nini.Config.IniConfigSource(Application.iniFilePath); | 403 | IConfigSource config = new IniConfigSource(Application.iniFilePath); |
412 | if (config.Configs["LL-Functions"] == null) | 404 | if (config.Configs["LL-Functions"] == null) |
413 | config.AddConfig("LL-Functions"); | 405 | config.AddConfig("LL-Functions"); |
414 | 406 | ||
@@ -416,7 +408,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
416 | { | 408 | { |
417 | if (World.PermissionsMngr.CanRunConsoleCommand(m_host.OwnerID)) | 409 | if (World.PermissionsMngr.CanRunConsoleCommand(m_host.OwnerID)) |
418 | { | 410 | { |
419 | OpenSim.Framework.Console.MainConsole.Instance.RunCommand(command); | 411 | MainConsole.Instance.RunCommand(command); |
420 | return true; | 412 | return true; |
421 | } | 413 | } |
422 | return false; | 414 | return false; |
diff --git a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands_Interface.cs b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands_Interface.cs index 3102e3f..a4dd3b0 100644 --- a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands_Interface.cs +++ b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands_Interface.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | namespace OpenSim.Region.ScriptEngine.Common | 28 | namespace OpenSim.Region.ScriptEngine.Common |
33 | { | 29 | { |
34 | public interface OSSL_BuilIn_Commands_Interface | 30 | public interface OSSL_BuilIn_Commands_Interface |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AppDomainManager.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AppDomainManager.cs index 41100c9..262d75f 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AppDomainManager.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AppDomainManager.cs | |||
@@ -29,7 +29,6 @@ using System; | |||
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using OpenSim.Region.ScriptEngine.Common; | ||
33 | 32 | ||
34 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 33 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
35 | { | 34 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandManager.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandManager.cs index a1bb5c9..7dad7ee 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandManager.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandManager.cs | |||
@@ -25,16 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections; | 28 | using System.Collections; |
30 | using System.Collections.Generic; | ||
31 | using System.Threading; | 29 | using System.Threading; |
32 | using libsecondlife; | 30 | using libsecondlife; |
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | ||
35 | using OpenSim.Region.Environment.Modules; | ||
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Interfaces; | ||
38 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins; | 33 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins; |
39 | using Timer=OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins.Timer; | 34 | using Timer=OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins.Timer; |
40 | 35 | ||
@@ -50,11 +45,11 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
50 | 45 | ||
51 | public ScriptEngine m_ScriptEngine; | 46 | public ScriptEngine m_ScriptEngine; |
52 | 47 | ||
53 | public AsyncCommandPlugins.Timer m_Timer; | 48 | public Timer m_Timer; |
54 | public AsyncCommandPlugins.HttpRequest m_HttpRequest; | 49 | public HttpRequest m_HttpRequest; |
55 | public AsyncCommandPlugins.Listener m_Listener; | 50 | public Listener m_Listener; |
56 | public AsyncCommandPlugins.SensorRepeat m_SensorRepeat; | 51 | public SensorRepeat m_SensorRepeat; |
57 | public AsyncCommandPlugins.XmlRequest m_XmlRequest; | 52 | public XmlRequest m_XmlRequest; |
58 | 53 | ||
59 | public AsyncCommandManager(ScriptEngine _ScriptEngine) | 54 | public AsyncCommandManager(ScriptEngine _ScriptEngine) |
60 | { | 55 | { |
@@ -81,7 +76,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
81 | cmdHandlerThread.Priority = ThreadPriority.BelowNormal; | 76 | cmdHandlerThread.Priority = ThreadPriority.BelowNormal; |
82 | cmdHandlerThread.IsBackground = true; | 77 | cmdHandlerThread.IsBackground = true; |
83 | cmdHandlerThread.Start(); | 78 | cmdHandlerThread.Start(); |
84 | OpenSim.Framework.ThreadTracker.Add(cmdHandlerThread); | 79 | ThreadTracker.Add(cmdHandlerThread); |
85 | } | 80 | } |
86 | } | 81 | } |
87 | 82 | ||
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/HttpRequest.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/HttpRequest.cs index d62734f..521402e 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/HttpRequest.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/HttpRequest.cs | |||
@@ -26,16 +26,8 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Threading; | ||
32 | using libsecondlife; | ||
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 29 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Modules; | 30 | using OpenSim.Region.Environment.Modules; |
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | ||
38 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins; | ||
39 | 31 | ||
40 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins | 32 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins |
41 | { | 33 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Listener.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Listener.cs index 00cbd8c..874a905 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Listener.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Listener.cs | |||
@@ -25,16 +25,8 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Threading; | ||
32 | using libsecondlife; | ||
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 28 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Modules; | 29 | using OpenSim.Region.Environment.Modules; |
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | ||
38 | 30 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins | 31 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins |
40 | { | 32 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs index fd8dbd1..71ae80c 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs | |||
@@ -26,15 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
31 | using System.Threading; | ||
32 | using libsecondlife; | 30 | using libsecondlife; |
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | ||
35 | using OpenSim.Region.Environment.Modules; | ||
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Scenes; | ||
38 | 33 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins | 34 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins |
40 | { | 35 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Timer.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Timer.cs index 63a8d19..141e471 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Timer.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/Timer.cs | |||
@@ -28,13 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Threading; | ||
32 | using libsecondlife; | 31 | using libsecondlife; |
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | ||
35 | using OpenSim.Region.Environment.Modules; | ||
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | ||
38 | 32 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins | 33 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins |
40 | { | 34 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/XmlRequest.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/XmlRequest.cs index be4f418..c3e1804 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/XmlRequest.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/XmlRequest.cs | |||
@@ -26,15 +26,8 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Threading; | ||
32 | using libsecondlife; | ||
33 | using Axiom.Math; | ||
34 | using OpenSim.Region.Environment.Interfaces; | 29 | using OpenSim.Region.Environment.Interfaces; |
35 | using OpenSim.Region.Environment.Modules; | 30 | using OpenSim.Region.Environment.Modules; |
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | using OpenSim.Framework; | ||
38 | 31 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins | 32 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugins |
40 | { | 33 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventManager.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventManager.cs index 2f2b384..b4789a9 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventManager.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventManager.cs | |||
@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
35 | /// Prepares events so they can be directly executed upon a script by EventQueueManager, then queues it. | 35 | /// Prepares events so they can be directly executed upon a script by EventQueueManager, then queues it. |
36 | /// </summary> | 36 | /// </summary> |
37 | [Serializable] | 37 | [Serializable] |
38 | public class EventManager : OpenSim.Region.ScriptEngine.Common.ScriptServerInterfaces.RemoteEvents, iScriptEngineFunctionModule | 38 | public class EventManager : ScriptServerInterfaces.RemoteEvents, iScriptEngineFunctionModule |
39 | { | 39 | { |
40 | // | 40 | // |
41 | // Class is instanced in "ScriptEngine" and Uses "EventQueueManager" that is also instanced in "ScriptEngine". | 41 | // Class is instanced in "ScriptEngine" and Uses "EventQueueManager" that is also instanced in "ScriptEngine". |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueManager.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueManager.cs index cd03699..7cbbd4f 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueManager.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueManager.cs | |||
@@ -28,10 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Threading; | ||
32 | using libsecondlife; | 31 | using libsecondlife; |
33 | using OpenSim.Framework; | ||
34 | using OpenSim.Region.Environment.Scenes.Scripting; | ||
35 | 32 | ||
36 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 33 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
37 | { | 34 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs index b8d950a..d77f698 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs | |||
@@ -27,11 +27,8 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using System.Threading; | 30 | using System.Threading; |
33 | using libsecondlife; | 31 | using libsecondlife; |
34 | using Nini.Config; | ||
35 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
36 | using OpenSim.Region.Environment.Scenes.Scripting; | 33 | using OpenSim.Region.Environment.Scenes.Scripting; |
37 | 34 | ||
@@ -123,7 +120,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
123 | EventQueueThread.Priority = MyThreadPriority; | 120 | EventQueueThread.Priority = MyThreadPriority; |
124 | EventQueueThread.Name = "EventQueueManagerThread_" + ThreadCount; | 121 | EventQueueThread.Name = "EventQueueManagerThread_" + ThreadCount; |
125 | EventQueueThread.Start(); | 122 | EventQueueThread.Start(); |
126 | OpenSim.Framework.ThreadTracker.Add(EventQueueThread); | 123 | ThreadTracker.Add(EventQueueThread); |
127 | 124 | ||
128 | // Look at this... Don't you wish everyone did that solid coding everywhere? :P | 125 | // Look at this... Don't you wish everyone did that solid coding everywhere? :P |
129 | if (ThreadCount == int.MaxValue) | 126 | if (ThreadCount == int.MaxValue) |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/MaintenanceThread.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/MaintenanceThread.cs index ad41e5b..2bf0e41 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/MaintenanceThread.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/MaintenanceThread.cs | |||
@@ -27,9 +27,8 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using System.Threading; | 30 | using System.Threading; |
31 | using OpenSim.Framework; | ||
33 | 32 | ||
34 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 33 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
35 | { | 34 | { |
@@ -94,7 +93,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
94 | MaintenanceThreadThread.Name = "ScriptMaintenanceThread"; | 93 | MaintenanceThreadThread.Name = "ScriptMaintenanceThread"; |
95 | MaintenanceThreadThread.IsBackground = true; | 94 | MaintenanceThreadThread.IsBackground = true; |
96 | MaintenanceThreadThread.Start(); | 95 | MaintenanceThreadThread.Start(); |
97 | OpenSim.Framework.ThreadTracker.Add(MaintenanceThreadThread); | 96 | ThreadTracker.Add(MaintenanceThreadThread); |
98 | } | 97 | } |
99 | } | 98 | } |
100 | 99 | ||
@@ -144,7 +143,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
144 | { | 143 | { |
145 | while (true) | 144 | while (true) |
146 | { | 145 | { |
147 | System.Threading.Thread.Sleep(MaintenanceLoopms); // Sleep before next pass | 146 | Thread.Sleep(MaintenanceLoopms); // Sleep before next pass |
148 | 147 | ||
149 | // Reset counters? | 148 | // Reset counters? |
150 | if (MaintenanceLoopTicks_ScriptLoadUnload_ResetCount) | 149 | if (MaintenanceLoopTicks_ScriptLoadUnload_ResetCount) |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptEngine.cs index 02e49a2..a7ad50d 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptEngine.cs | |||
@@ -27,13 +27,11 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.Reflection; |
31 | using log4net; | ||
31 | using Nini.Config; | 32 | using Nini.Config; |
32 | using OpenSim.Framework.Console; | ||
33 | using OpenSim.Region.Environment.Interfaces; | 33 | using OpenSim.Region.Environment.Interfaces; |
34 | using OpenSim.Region.Environment.Scenes; | 34 | using OpenSim.Region.Environment.Scenes; |
35 | using OpenSim.Region.ScriptEngine.Common; | ||
36 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | ||
37 | 35 | ||
38 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 36 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
39 | { | 37 | { |
@@ -42,9 +40,9 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
42 | /// </summary> | 40 | /// </summary> |
43 | /// | 41 | /// |
44 | [Serializable] | 42 | [Serializable] |
45 | public abstract class ScriptEngine : IRegionModule, OpenSim.Region.ScriptEngine.Common.ScriptServerInterfaces.ScriptEngine, iScriptEngineFunctionModule | 43 | public abstract class ScriptEngine : IRegionModule, ScriptServerInterfaces.ScriptEngine, iScriptEngineFunctionModule |
46 | { | 44 | { |
47 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 46 | ||
49 | public static List<ScriptEngine> ScriptEngines = new List<ScriptEngine>(); | 47 | public static List<ScriptEngine> ScriptEngines = new List<ScriptEngine>(); |
50 | public Scene World; | 48 | public Scene World; |
@@ -75,7 +73,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
75 | 73 | ||
76 | public abstract ScriptManager _GetScriptManager(); | 74 | public abstract ScriptManager _GetScriptManager(); |
77 | 75 | ||
78 | public log4net.ILog Log | 76 | public ILog Log |
79 | { | 77 | { |
80 | get { return m_log; } | 78 | get { return m_log; } |
81 | } | 79 | } |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptManager.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptManager.cs index 09f84d6..cd2e530 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptManager.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/ScriptManager.cs | |||
@@ -32,9 +32,7 @@ using System.Reflection; | |||
32 | using System.Runtime.Serialization.Formatters.Binary; | 32 | using System.Runtime.Serialization.Formatters.Binary; |
33 | using System.Threading; | 33 | using System.Threading; |
34 | using libsecondlife; | 34 | using libsecondlife; |
35 | using OpenSim.Framework; | ||
36 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
37 | using OpenSim.Region.ScriptEngine.Common; | ||
38 | 36 | ||
39 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 37 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
40 | { | 38 | { |
@@ -106,9 +104,9 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
106 | 104 | ||
107 | #region Object init/shutdown | 105 | #region Object init/shutdown |
108 | 106 | ||
109 | public ScriptEngineBase.ScriptEngine m_scriptEngine; | 107 | public ScriptEngine m_scriptEngine; |
110 | 108 | ||
111 | public ScriptManager(ScriptEngineBase.ScriptEngine scriptEngine) | 109 | public ScriptManager(ScriptEngine scriptEngine) |
112 | { | 110 | { |
113 | m_scriptEngine = scriptEngine; | 111 | m_scriptEngine = scriptEngine; |
114 | } | 112 | } |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/iScriptEngineFunctionModule.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/iScriptEngineFunctionModule.cs index 4e037b3..768ba6d 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/iScriptEngineFunctionModule.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/iScriptEngineFunctionModule.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | 28 | namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase |
33 | { | 29 | { |
34 | public interface iScriptEngineFunctionModule | 30 | public interface iScriptEngineFunctionModule |
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptServerInterfaces.cs b/OpenSim/Region/ScriptEngine/Common/ScriptServerInterfaces.cs index 6110251..1119fe8 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptServerInterfaces.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptServerInterfaces.cs | |||
@@ -28,7 +28,6 @@ | |||
28 | using libsecondlife; | 28 | using libsecondlife; |
29 | using Nini.Config; | 29 | using Nini.Config; |
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Console; | ||
32 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
33 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | 32 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; |
34 | 33 | ||
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC/MyBase.cs b/OpenSim/Region/ScriptEngine/Common/TRPC/MyBase.cs index 6fe6381..14c6078 100644 --- a/OpenSim/Region/ScriptEngine/Common/TRPC/MyBase.cs +++ b/OpenSim/Region/ScriptEngine/Common/TRPC/MyBase.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | namespace OpenSim.Region.ScriptEngine.Common.TRPC | 28 | namespace OpenSim.Region.ScriptEngine.Common.TRPC |
33 | { | 29 | { |
34 | class MyBase | 30 | class MyBase |
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPClient.cs b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPClient.cs index 7689d69..624c3bb 100644 --- a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPClient.cs +++ b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPClient.cs | |||
@@ -25,12 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
30 | using System.Diagnostics; | 29 | using System.Diagnostics; |
31 | using System.Net; | 30 | using System.Net; |
32 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
33 | using System.Text; | ||
34 | 32 | ||
35 | namespace OpenSim.Region.ScriptEngine.Common.TRPC | 33 | namespace OpenSim.Region.ScriptEngine.Common.TRPC |
36 | { | 34 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPCommon.cs b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPCommon.cs index 521d75b..ab9d9b4 100644 --- a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPCommon.cs +++ b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPCommon.cs | |||
@@ -25,11 +25,13 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Net; | ||
29 | |||
28 | namespace OpenSim.Region.ScriptEngine.Common.TRPC | 30 | namespace OpenSim.Region.ScriptEngine.Common.TRPC |
29 | { | 31 | { |
30 | public class TCPCommon | 32 | public class TCPCommon |
31 | { | 33 | { |
32 | public delegate void ClientConnectedDelegate(int ID, System.Net.EndPoint Remote); | 34 | public delegate void ClientConnectedDelegate(int ID, EndPoint Remote); |
33 | public delegate void DataReceivedDelegate(int ID, byte[] data, int offset, int length); | 35 | public delegate void DataReceivedDelegate(int ID, byte[] data, int offset, int length); |
34 | public delegate void DataSentDelegate(int ID, int length); | 36 | public delegate void DataSentDelegate(int ID, int length); |
35 | public delegate void CloseDelegate(int ID); | 37 | public delegate void CloseDelegate(int ID); |
@@ -46,7 +48,7 @@ namespace OpenSim.Region.ScriptEngine.Common.TRPC | |||
46 | 48 | ||
47 | public interface ClientInterface : ServerAndClientInterface | 49 | public interface ClientInterface : ServerAndClientInterface |
48 | { | 50 | { |
49 | event TCPCommon.ConnectErrorDelegate ConnectError; | 51 | event ConnectErrorDelegate ConnectError; |
50 | void Connect(string RemoteHost, int RemotePort); | 52 | void Connect(string RemoteHost, int RemotePort); |
51 | void Disconnect(int ID); | 53 | void Disconnect(int ID); |
52 | } | 54 | } |
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPServer.cs b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPServer.cs index 5d1e53a..55a20e7 100644 --- a/OpenSim/Region/ScriptEngine/Common/TRPC/TCPServer.cs +++ b/OpenSim/Region/ScriptEngine/Common/TRPC/TCPServer.cs | |||
@@ -30,7 +30,6 @@ using System.Collections.Generic; | |||
30 | using System.Diagnostics; | 30 | using System.Diagnostics; |
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Net.Sockets; | 32 | using System.Net.Sockets; |
33 | using TCPCommon=OpenSim.Region.ScriptEngine.Common.TRPC.TCPCommon; | ||
34 | 33 | ||
35 | namespace OpenSim.Region.ScriptEngine.Common.TRPC | 34 | namespace OpenSim.Region.ScriptEngine.Common.TRPC |
36 | { | 35 | { |
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs b/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs index 4567e60..013ae0f 100644 --- a/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs +++ b/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs | |||
@@ -28,7 +28,9 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Diagnostics; | 30 | using System.Diagnostics; |
31 | using System.Net; | ||
31 | using System.Text; | 32 | using System.Text; |
33 | using System.Web; | ||
32 | using libsecondlife; | 34 | using libsecondlife; |
33 | using OpenSim.Region.ScriptEngine.Common.TRPC; | 35 | using OpenSim.Region.ScriptEngine.Common.TRPC; |
34 | 36 | ||
@@ -41,24 +43,24 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
41 | 43 | ||
42 | public delegate void ReceiveCommandDelegate(int ID, string Command, params object[] p); | 44 | public delegate void ReceiveCommandDelegate(int ID, string Command, params object[] p); |
43 | public event ReceiveCommandDelegate ReceiveCommand; | 45 | public event ReceiveCommandDelegate ReceiveCommand; |
44 | System.Collections.Generic.Dictionary<string, Type> TypeDictionary = new Dictionary<string, Type>(); | 46 | Dictionary<string, Type> TypeDictionary = new Dictionary<string, Type>(); |
45 | Type[] Types = | 47 | Type[] Types = |
46 | { | 48 | { |
47 | typeof(System.String), | 49 | typeof(String), |
48 | typeof(System.Int16), | 50 | typeof(Int16), |
49 | typeof(System.Int32), | 51 | typeof(Int32), |
50 | typeof(System.Int64), | 52 | typeof(Int64), |
51 | typeof(System.Double), | 53 | typeof(Double), |
52 | typeof(System.Decimal), | 54 | typeof(Decimal), |
53 | typeof(System.Array), | 55 | typeof(Array), |
54 | typeof(LLUUID), | 56 | typeof(LLUUID), |
55 | typeof(System.UInt16), | 57 | typeof(UInt16), |
56 | typeof(System.UInt32), | 58 | typeof(UInt32), |
57 | typeof(System.UInt64) | 59 | typeof(UInt64) |
58 | }; | 60 | }; |
59 | 61 | ||
60 | // TODO: Maybe we should move queue into TCPSocket so we won't have to keep one queue instance per connection | 62 | // TODO: Maybe we should move queue into TCPSocket so we won't have to keep one queue instance per connection |
61 | private System.Collections.Generic.Dictionary<int, InQueueStruct> InQueue = new Dictionary<int, InQueueStruct>(); | 63 | private Dictionary<int, InQueueStruct> InQueue = new Dictionary<int, InQueueStruct>(); |
62 | private class InQueueStruct | 64 | private class InQueueStruct |
63 | { | 65 | { |
64 | public byte[] Queue; | 66 | public byte[] Queue; |
@@ -81,7 +83,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
81 | } | 83 | } |
82 | } | 84 | } |
83 | 85 | ||
84 | void TCPS_ClientConnected(int ID, System.Net.EndPoint Remote) | 86 | void TCPS_ClientConnected(int ID, EndPoint Remote) |
85 | { | 87 | { |
86 | // Create a incoming queue for this connection | 88 | // Create a incoming queue for this connection |
87 | InQueueStruct iq = new InQueueStruct(); | 89 | InQueueStruct iq = new InQueueStruct(); |
@@ -165,7 +167,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
165 | for (int i = 1; i < parts.Length; i++) | 167 | for (int i = 1; i < parts.Length; i++) |
166 | { | 168 | { |
167 | string[] spl; | 169 | string[] spl; |
168 | spl = System.Web.HttpUtility.UrlDecode(parts[i]).Split('|'); | 170 | spl = HttpUtility.UrlDecode(parts[i]).Split('|'); |
169 | string t = spl[0]; | 171 | string t = spl[0]; |
170 | param[i - 1] = Convert.ChangeType(spl[1], TypeLookup(t)); | 172 | param[i - 1] = Convert.ChangeType(spl[1], TypeLookup(t)); |
171 | } | 173 | } |
@@ -192,7 +194,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
192 | string tmpStr = Command; | 194 | string tmpStr = Command; |
193 | for (int i = 0; i < p.Length; i++) | 195 | for (int i = 0; i < p.Length; i++) |
194 | { | 196 | { |
195 | tmpStr += "," + p[i].GetType().ToString() + "|" + System.Web.HttpUtility.UrlEncode(p[i].ToString()); // .Replace(",", "%44") | 197 | tmpStr += "," + p[i].GetType().ToString() + "|" + HttpUtility.UrlEncode(p[i].ToString()); // .Replace(",", "%44") |
196 | } | 198 | } |
197 | tmpStr += "\n"; | 199 | tmpStr += "\n"; |
198 | byte[] byteData = Encoding.ASCII.GetBytes(tmpStr); | 200 | byte[] byteData = Encoding.ASCII.GetBytes(tmpStr); |
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index e3013c9..fc38ef2 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -30,10 +30,10 @@ using System.CodeDom.Compiler; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Globalization; | 31 | using System.Globalization; |
32 | using System.IO; | 32 | using System.IO; |
33 | using System.Reflection; | ||
34 | using Microsoft.CSharp; | 33 | using Microsoft.CSharp; |
35 | using Microsoft.VisualBasic; | ||
36 | using Microsoft.JScript; | 34 | using Microsoft.JScript; |
35 | using Microsoft.VisualBasic; | ||
36 | using OpenSim.Region.Environment.Interfaces; | ||
37 | 37 | ||
38 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | 38 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL |
39 | { | 39 | { |
@@ -62,8 +62,8 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
62 | private bool WriteScriptSourceToDebugFile; | 62 | private bool WriteScriptSourceToDebugFile; |
63 | private bool CompileWithDebugInformation; | 63 | private bool CompileWithDebugInformation; |
64 | private bool CleanUpOldScriptsOnStartup; | 64 | private bool CleanUpOldScriptsOnStartup; |
65 | private System.Collections.Generic.Dictionary<string, Boolean> AllowedCompilers = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase); | 65 | private Dictionary<string, bool> AllowedCompilers = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase); |
66 | private System.Collections.Generic.Dictionary<string, enumCompileType> LanguageMapping = new Dictionary<string, enumCompileType>(StringComparer.CurrentCultureIgnoreCase); | 66 | private Dictionary<string, enumCompileType> LanguageMapping = new Dictionary<string, enumCompileType>(StringComparer.CurrentCultureIgnoreCase); |
67 | 67 | ||
68 | private string FilePrefix; | 68 | private string FilePrefix; |
69 | private string ScriptEnginesPath = "ScriptEngines"; | 69 | private string ScriptEnginesPath = "ScriptEngines"; |
@@ -276,7 +276,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
276 | if (enableCommanderLSL == true && l == enumCompileType.cs) | 276 | if (enableCommanderLSL == true && l == enumCompileType.cs) |
277 | { | 277 | { |
278 | foreach (KeyValuePair<string, | 278 | foreach (KeyValuePair<string, |
279 | OpenSim.Region.Environment.Interfaces.ICommander> com | 279 | ICommander> com |
280 | in m_scriptEngine.World.GetCommanders()) | 280 | in m_scriptEngine.World.GetCommanders()) |
281 | { | 281 | { |
282 | compileScript = com.Value.GenerateRuntimeAPI() + compileScript; | 282 | compileScript = com.Value.GenerateRuntimeAPI() + compileScript; |
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs index 20c108d..0025b26 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | |||
@@ -26,9 +26,9 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
29 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
30 | using System.Text.RegularExpressions; | 31 | using System.Text.RegularExpressions; |
31 | using System; | ||
32 | 32 | ||
33 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | 33 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL |
34 | { | 34 | { |
@@ -61,7 +61,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
61 | public string Convert(string Script) | 61 | public string Convert(string Script) |
62 | { | 62 | { |
63 | quotes.Clear(); | 63 | quotes.Clear(); |
64 | string Return = System.String.Empty; | 64 | string Return = String.Empty; |
65 | Script = " \r\n" + Script; | 65 | Script = " \r\n" + Script; |
66 | 66 | ||
67 | // | 67 | // |
@@ -77,12 +77,12 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
77 | // temporarily replace quotes so we can work our magic on the script without | 77 | // temporarily replace quotes so we can work our magic on the script without |
78 | // always considering if we are inside our outside quotes's | 78 | // always considering if we are inside our outside quotes's |
79 | // TODO: Does this work on half-quotes in strings? ;) | 79 | // TODO: Does this work on half-quotes in strings? ;) |
80 | string _Script = System.String.Empty; | 80 | string _Script = String.Empty; |
81 | string C; | 81 | string C; |
82 | bool in_quote = false; | 82 | bool in_quote = false; |
83 | bool quote_replaced = false; | 83 | bool quote_replaced = false; |
84 | string quote_replacement_string = "Q_U_O_T_E_REPLACEMENT_"; | 84 | string quote_replacement_string = "Q_U_O_T_E_REPLACEMENT_"; |
85 | string quote = System.String.Empty; | 85 | string quote = String.Empty; |
86 | bool last_was_escape = false; | 86 | bool last_was_escape = false; |
87 | int quote_replaced_count = 0; | 87 | int quote_replaced_count = 0; |
88 | for (int p = 0; p < Script.Length; p++) | 88 | for (int p = 0; p < Script.Length; p++) |
@@ -101,7 +101,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
101 | } | 101 | } |
102 | else | 102 | else |
103 | { | 103 | { |
104 | if (quote == System.String.Empty) | 104 | if (quote == String.Empty) |
105 | { | 105 | { |
106 | // We didn't replace quote, probably because of empty string? | 106 | // We didn't replace quote, probably because of empty string? |
107 | _Script += quote_replacement_string + | 107 | _Script += quote_replacement_string + |
@@ -111,7 +111,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
111 | quotes.Add( | 111 | quotes.Add( |
112 | quote_replacement_string + | 112 | quote_replacement_string + |
113 | quote_replaced_count.ToString().PadLeft(5, "0".ToCharArray()[0]), quote); | 113 | quote_replaced_count.ToString().PadLeft(5, "0".ToCharArray()[0]), quote); |
114 | quote = System.String.Empty; | 114 | quote = String.Empty; |
115 | } | 115 | } |
116 | break; | 116 | break; |
117 | } | 117 | } |
@@ -155,10 +155,10 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
155 | // | 155 | // |
156 | int ilevel = 0; | 156 | int ilevel = 0; |
157 | int lastlevel = 0; | 157 | int lastlevel = 0; |
158 | string ret = System.String.Empty; | 158 | string ret = String.Empty; |
159 | string cache = System.String.Empty; | 159 | string cache = String.Empty; |
160 | bool in_state = false; | 160 | bool in_state = false; |
161 | string current_statename = System.String.Empty; | 161 | string current_statename = String.Empty; |
162 | for (int p = 0; p < Script.Length; p++) | 162 | for (int p = 0; p < Script.Length; p++) |
163 | { | 163 | { |
164 | C = Script.Substring(p, 1); | 164 | C = Script.Substring(p, 1); |
@@ -319,9 +319,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
319 | { | 319 | { |
320 | state_events.Add(statea, convertnametoFlag(eventa)); | 320 | state_events.Add(statea, convertnametoFlag(eventa)); |
321 | } | 321 | } |
322 | System.Console.WriteLine("State:" + statea + ", event: " + eventa); | 322 | Console.WriteLine("State:" + statea + ", event: " + eventa); |
323 | } | 323 | } |
324 | System.Console.WriteLine("Matches:" + eventmatches.GetUpperBound(0)); | 324 | Console.WriteLine("Matches:" + eventmatches.GetUpperBound(0)); |
325 | // Add namespace, class name and inheritance | 325 | // Add namespace, class name and inheritance |
326 | 326 | ||
327 | // Looking *ONLY* for state entry events | 327 | // Looking *ONLY* for state entry events |
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs index 6f2dbad..99efed3 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptEngine.cs | |||
@@ -28,13 +28,12 @@ | |||
28 | /* Original code: Tedd Hansen */ | 28 | /* Original code: Tedd Hansen */ |
29 | using System; | 29 | using System; |
30 | using Nini.Config; | 30 | using Nini.Config; |
31 | using OpenSim.Framework.Console; | ||
32 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
33 | 32 | ||
34 | namespace OpenSim.Region.ScriptEngine.DotNetEngine | 33 | namespace OpenSim.Region.ScriptEngine.DotNetEngine |
35 | { | 34 | { |
36 | [Serializable] | 35 | [Serializable] |
37 | public class ScriptEngine : OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptEngine | 36 | public class ScriptEngine : Common.ScriptEngineBase.ScriptEngine |
38 | { | 37 | { |
39 | // We need to override a few things for our DotNetEngine | 38 | // We need to override a few things for our DotNetEngine |
40 | public override void Initialise(Scene scene, IConfigSource config) | 39 | public override void Initialise(Scene scene, IConfigSource config) |
@@ -43,7 +42,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
43 | InitializeEngine(scene, config, true, GetScriptManager()); | 42 | InitializeEngine(scene, config, true, GetScriptManager()); |
44 | } | 43 | } |
45 | 44 | ||
46 | public override OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptManager _GetScriptManager() | 45 | public override Common.ScriptEngineBase.ScriptManager _GetScriptManager() |
47 | { | 46 | { |
48 | return new ScriptManager(this); | 47 | return new ScriptManager(this); |
49 | } | 48 | } |
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs index 05a2d06..e242748 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs | |||
@@ -34,7 +34,7 @@ using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | |||
34 | 34 | ||
35 | namespace OpenSim.Region.ScriptEngine.DotNetEngine | 35 | namespace OpenSim.Region.ScriptEngine.DotNetEngine |
36 | { | 36 | { |
37 | public class ScriptManager : OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptManager | 37 | public class ScriptManager : Common.ScriptEngineBase.ScriptManager |
38 | { | 38 | { |
39 | public ScriptManager(Common.ScriptEngineBase.ScriptEngine scriptEngine) | 39 | public ScriptManager(Common.ScriptEngineBase.ScriptEngine scriptEngine) |
40 | : base(scriptEngine) | 40 | : base(scriptEngine) |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/Engine.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/Engine.cs index 54328ff..0208350 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/Engine.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/Engine.cs | |||
@@ -33,7 +33,6 @@ using System.Reflection.Emit; | |||
33 | using System.Text; | 33 | using System.Text; |
34 | using System.Threading; | 34 | using System.Threading; |
35 | using OpenSim.Region.ScriptEngine.Common; | 35 | using OpenSim.Region.ScriptEngine.Common; |
36 | using OpenSim.Region.ScriptEngine.LSOEngine.LSO; | ||
37 | 36 | ||
38 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | 37 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO |
39 | { | 38 | { |
@@ -59,11 +58,11 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | |||
59 | string DLL_FileName = asmName.Name + ".dll"; | 58 | string DLL_FileName = asmName.Name + ".dll"; |
60 | string DLL_FileName_WithPath = Path.GetDirectoryName(LSO_FileName) + @"\" + DLL_FileName; | 59 | string DLL_FileName_WithPath = Path.GetDirectoryName(LSO_FileName) + @"\" + DLL_FileName; |
61 | 60 | ||
62 | LSOEngine.LSO.Common.SendToLog("LSO File Name: " + Path.GetFileName(LSO_FileName)); | 61 | Common.SendToLog("LSO File Name: " + Path.GetFileName(LSO_FileName)); |
63 | LSOEngine.LSO.Common.SendToLog("Assembly name: " + asmName.Name); | 62 | Common.SendToLog("Assembly name: " + asmName.Name); |
64 | LSOEngine.LSO.Common.SendToLog("Assembly File Name: " + asmName.Name + ".dll"); | 63 | Common.SendToLog("Assembly File Name: " + asmName.Name + ".dll"); |
65 | LSOEngine.LSO.Common.SendToLog("Starting processing of LSL ByteCode..."); | 64 | Common.SendToLog("Starting processing of LSL ByteCode..."); |
66 | LSOEngine.LSO.Common.SendToLog(String.Empty); | 65 | Common.SendToLog(String.Empty); |
67 | 66 | ||
68 | 67 | ||
69 | // Create Assembly | 68 | // Create Assembly |
@@ -104,7 +103,7 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | |||
104 | LSOP.Parse(); | 103 | LSOP.Parse(); |
105 | 104 | ||
106 | // Constructor has to be created AFTER LSO_Parser because of accumulated variables | 105 | // Constructor has to be created AFTER LSO_Parser because of accumulated variables |
107 | if (LSOEngine.LSO.Common.IL_CreateConstructor) | 106 | if (Common.IL_CreateConstructor) |
108 | IL_CREATE_CONSTRUCTOR(typeBuilder, LSOP); | 107 | IL_CREATE_CONSTRUCTOR(typeBuilder, LSOP); |
109 | 108 | ||
110 | LSOP.CloseFile(); | 109 | LSOP.CloseFile(); |
@@ -113,15 +112,15 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | |||
113 | */ | 112 | */ |
114 | 113 | ||
115 | 114 | ||
116 | LSOEngine.LSO.Common.SendToLog("Attempting to compile assembly..."); | 115 | Common.SendToLog("Attempting to compile assembly..."); |
117 | // Compile it | 116 | // Compile it |
118 | Type type = typeBuilder.CreateType(); | 117 | Type type = typeBuilder.CreateType(); |
119 | LSOEngine.LSO.Common.SendToLog("Compilation successful!"); | 118 | Common.SendToLog("Compilation successful!"); |
120 | 119 | ||
121 | LSOEngine.LSO.Common.SendToLog("Saving assembly: " + DLL_FileName); | 120 | Common.SendToLog("Saving assembly: " + DLL_FileName); |
122 | asmBuilder.Save(DLL_FileName); | 121 | asmBuilder.Save(DLL_FileName); |
123 | 122 | ||
124 | LSOEngine.LSO.Common.SendToLog("Returning assembly filename: " + DLL_FileName); | 123 | Common.SendToLog("Returning assembly filename: " + DLL_FileName); |
125 | 124 | ||
126 | 125 | ||
127 | return DLL_FileName; | 126 | return DLL_FileName; |
@@ -166,7 +165,7 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | |||
166 | 165 | ||
167 | private static void IL_CREATE_CONSTRUCTOR(TypeBuilder typeBuilder, LSO_Parser LSOP) | 166 | private static void IL_CREATE_CONSTRUCTOR(TypeBuilder typeBuilder, LSO_Parser LSOP) |
168 | { | 167 | { |
169 | LSOEngine.LSO.Common.SendToDebug("IL_CREATE_CONSTRUCTOR()"); | 168 | Common.SendToDebug("IL_CREATE_CONSTRUCTOR()"); |
170 | //ConstructorBuilder constructor = typeBuilder.DefineConstructor( | 169 | //ConstructorBuilder constructor = typeBuilder.DefineConstructor( |
171 | // MethodAttributes.Public, | 170 | // MethodAttributes.Public, |
172 | // CallingConventions.Standard, | 171 | // CallingConventions.Standard, |
@@ -235,7 +234,7 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | |||
235 | Type datatype = null; | 234 | Type datatype = null; |
236 | 235 | ||
237 | // Push data to stack | 236 | // Push data to stack |
238 | LSOEngine.LSO.Common.SendToDebug("Adding to static (" + pos + ") type: " + | 237 | Common.SendToDebug("Adding to static (" + pos + ") type: " + |
239 | ((LSO_Enums.Variable_Type_Codes) sb.ObjectType).ToString() + " (" + sb.ObjectType + | 238 | ((LSO_Enums.Variable_Type_Codes) sb.ObjectType).ToString() + " (" + sb.ObjectType + |
240 | ")"); | 239 | ")"); |
241 | switch ((LSO_Enums.Variable_Type_Codes) sb.ObjectType) | 240 | switch ((LSO_Enums.Variable_Type_Codes) sb.ObjectType) |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/IL_common_functions.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/IL_common_functions.cs index 60d68f5..6d0e35c 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/IL_common_functions.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/IL_common_functions.cs | |||
@@ -26,10 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | /* Original code: Tedd Hansen */ | 28 | /* Original code: Tedd Hansen */ |
29 | using System; | ||
30 | using System.Reflection; | ||
31 | using System.Reflection.Emit; | ||
32 | |||
33 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | 29 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO |
34 | { | 30 | { |
35 | internal partial class LSO_Parser | 31 | internal partial class LSO_Parser |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSL_BaseClass_OPCODES.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSL_BaseClass_OPCODES.cs index ad216aa..1b73311 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSL_BaseClass_OPCODES.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSL_BaseClass_OPCODES.cs | |||
@@ -25,9 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | |||
31 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | 28 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO |
32 | { | 29 | { |
33 | //public partial class LSL_BaseClass | 30 | //public partial class LSL_BaseClass |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Parser.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Parser.cs index a110c28..e4a57e8 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Parser.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Parser.cs | |||
@@ -33,7 +33,6 @@ using System.IO; | |||
33 | using System.Reflection; | 33 | using System.Reflection; |
34 | using System.Reflection.Emit; | 34 | using System.Reflection.Emit; |
35 | using System.Text; | 35 | using System.Text; |
36 | using OpenSim.Region.ScriptEngine.LSOEngine.LSO; | ||
37 | 36 | ||
38 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | 37 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO |
39 | { | 38 | { |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSOScript.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSOScript.cs index 3b5ca0f..f035c03 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSOScript.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/LSOScript.cs | |||
@@ -25,10 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.IO; | ||
31 | using System.Text; | ||
32 | using OpenSim.Region.ScriptEngine.LSOEngine.LSO; | 28 | using OpenSim.Region.ScriptEngine.LSOEngine.LSO; |
33 | 29 | ||
34 | namespace OpenSim.Region.ScriptEngine.LSOEngine | 30 | namespace OpenSim.Region.ScriptEngine.LSOEngine |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/LSOEngine/ScriptEngine.cs index 8495037..3c0e9cd 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/ScriptEngine.cs | |||
@@ -27,18 +27,12 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using Nini.Config; | 29 | using Nini.Config; |
30 | using OpenSim.Framework.Console; | ||
31 | using OpenSim.Region.Environment.Interfaces; | ||
32 | using OpenSim.Region.Environment.Scenes; | 30 | using OpenSim.Region.Environment.Scenes; |
33 | using OpenSim.Region.ScriptEngine.Common; | ||
34 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | ||
35 | using EventManager = OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.EventManager; | ||
36 | using ScriptManager=OpenSim.Region.ScriptEngine.LSOEngine.ScriptManager; | ||
37 | 31 | ||
38 | namespace OpenSim.Region.ScriptEngine.LSOEngine | 32 | namespace OpenSim.Region.ScriptEngine.LSOEngine |
39 | { | 33 | { |
40 | [Serializable] | 34 | [Serializable] |
41 | public class ScriptEngine : OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptEngine | 35 | public class ScriptEngine : Common.ScriptEngineBase.ScriptEngine |
42 | { | 36 | { |
43 | // We need to override a few things for our DotNetEngine | 37 | // We need to override a few things for our DotNetEngine |
44 | public override void Initialise(Scene scene, IConfigSource config) | 38 | public override void Initialise(Scene scene, IConfigSource config) |
@@ -46,7 +40,7 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine | |||
46 | InitializeEngine(scene, config, true, GetScriptManager()); | 40 | InitializeEngine(scene, config, true, GetScriptManager()); |
47 | } | 41 | } |
48 | 42 | ||
49 | public override OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptManager _GetScriptManager() | 43 | public override Common.ScriptEngineBase.ScriptManager _GetScriptManager() |
50 | { | 44 | { |
51 | return new ScriptManager(this); | 45 | return new ScriptManager(this); |
52 | } | 46 | } |
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/ScriptManager.cs b/OpenSim/Region/ScriptEngine/LSOEngine/ScriptManager.cs index a933b08..0434f55 100644 --- a/OpenSim/Region/ScriptEngine/LSOEngine/ScriptManager.cs +++ b/OpenSim/Region/ScriptEngine/LSOEngine/ScriptManager.cs | |||
@@ -26,11 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.IO; | ||
31 | using System.Reflection; | ||
32 | using System.Runtime.Serialization.Formatters.Binary; | ||
33 | using System.Threading; | ||
34 | using libsecondlife; | 29 | using libsecondlife; |
35 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
36 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
@@ -39,7 +34,7 @@ using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | |||
39 | 34 | ||
40 | namespace OpenSim.Region.ScriptEngine.LSOEngine | 35 | namespace OpenSim.Region.ScriptEngine.LSOEngine |
41 | { | 36 | { |
42 | public class ScriptManager : OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.ScriptManager | 37 | public class ScriptManager : Common.ScriptEngineBase.ScriptManager |
43 | { | 38 | { |
44 | public ScriptManager(Common.ScriptEngineBase.ScriptEngine scriptEngine) | 39 | public ScriptManager(Common.ScriptEngineBase.ScriptEngine scriptEngine) |
45 | : base(scriptEngine) | 40 | : base(scriptEngine) |
diff --git a/OpenSim/Region/ScriptEngine/RemoteServer/RemoteServer.cs b/OpenSim/Region/ScriptEngine/RemoteServer/RemoteServer.cs index 2a2f24f..603808e 100644 --- a/OpenSim/Region/ScriptEngine/RemoteServer/RemoteServer.cs +++ b/OpenSim/Region/ScriptEngine/RemoteServer/RemoteServer.cs | |||
@@ -26,8 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Net.Sockets; |
30 | using System.Text; | ||
31 | using System.Runtime.Remoting; | 30 | using System.Runtime.Remoting; |
32 | using System.Runtime.Remoting.Channels; | 31 | using System.Runtime.Remoting.Channels; |
33 | using System.Runtime.Remoting.Channels.Tcp; | 32 | using System.Runtime.Remoting.Channels.Tcp; |
@@ -61,20 +60,20 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer | |||
61 | // Use the object | 60 | // Use the object |
62 | if (obj.Equals(null)) | 61 | if (obj.Equals(null)) |
63 | { | 62 | { |
64 | System.Console.WriteLine("Error: unable to locate server"); | 63 | Console.WriteLine("Error: unable to locate server"); |
65 | } | 64 | } |
66 | else | 65 | else |
67 | { | 66 | { |
68 | return obj; | 67 | return obj; |
69 | } | 68 | } |
70 | } | 69 | } |
71 | catch (System.Net.Sockets.SocketException) | 70 | catch (SocketException) |
72 | { | 71 | { |
73 | System.Console.WriteLine("Error: unable to connect to server"); | 72 | Console.WriteLine("Error: unable to connect to server"); |
74 | } | 73 | } |
75 | catch (System.Runtime.Remoting.RemotingException) | 74 | catch (RemotingException) |
76 | { | 75 | { |
77 | System.Console.WriteLine("Error: unable to connect to server"); | 76 | Console.WriteLine("Error: unable to connect to server"); |
78 | } | 77 | } |
79 | return null; | 78 | return null; |
80 | } | 79 | } |
diff --git a/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs index 0995afb..c33cfd1 100644 --- a/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs | |||
@@ -28,8 +28,9 @@ | |||
28 | /* Original code: Tedd Hansen */ | 28 | /* Original code: Tedd Hansen */ |
29 | 29 | ||
30 | using System; | 30 | using System; |
31 | using System.Reflection; | ||
32 | using log4net; | ||
31 | using Nini.Config; | 33 | using Nini.Config; |
32 | using OpenSim.Framework.Console; | ||
33 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
34 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
35 | 36 | ||
@@ -42,7 +43,7 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer | |||
42 | [Serializable] | 43 | [Serializable] |
43 | public class ScriptEngine : IRegionModule | 44 | public class ScriptEngine : IRegionModule |
44 | { | 45 | { |
45 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 47 | ||
47 | internal Scene World; | 48 | internal Scene World; |
48 | internal EventManager m_EventManager; // Handles and queues incoming events from OpenSim | 49 | internal EventManager m_EventManager; // Handles and queues incoming events from OpenSim |
@@ -53,7 +54,7 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer | |||
53 | Common.mySE = this; | 54 | Common.mySE = this; |
54 | } | 55 | } |
55 | 56 | ||
56 | public log4net.ILog Log | 57 | public ILog Log |
57 | { | 58 | { |
58 | get { return m_log; } | 59 | get { return m_log; } |
59 | } | 60 | } |
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index 3eaf5aa..72c10f3 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | |||
@@ -30,10 +30,11 @@ using System.Collections.Generic; | |||
30 | using System.Data; | 30 | using System.Data; |
31 | using System.Data.SqlClient; | 31 | using System.Data.SqlClient; |
32 | using System.IO; | 32 | using System.IO; |
33 | using System.Reflection; | ||
33 | using libsecondlife; | 34 | using libsecondlife; |
34 | using OpenSim.Framework; | 35 | using log4net; |
35 | using OpenSim.Framework.Console; | ||
36 | using OpenSim.Data; | 36 | using OpenSim.Data; |
37 | using OpenSim.Framework; | ||
37 | using OpenSim.Region.Environment.Interfaces; | 38 | using OpenSim.Region.Environment.Interfaces; |
38 | using OpenSim.Region.Environment.Scenes; | 39 | using OpenSim.Region.Environment.Scenes; |
39 | 40 | ||
@@ -41,7 +42,7 @@ namespace OpenSim.DataStore.MSSQL | |||
41 | { | 42 | { |
42 | public class MSSQLDataStore : IRegionDataStore | 43 | public class MSSQLDataStore : IRegionDataStore |
43 | { | 44 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 46 | ||
46 | private const string primSelect = "select * from prims"; | 47 | private const string primSelect = "select * from prims"; |
47 | private const string shapeSelect = "select * from primshapes"; | 48 | private const string shapeSelect = "select * from primshapes"; |
diff --git a/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Editing/Flatten.cs b/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Editing/Flatten.cs index ba076c2..7162758 100644 --- a/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Editing/Flatten.cs +++ b/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Editing/Flatten.cs | |||
@@ -25,8 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | |||
30 | namespace libTerrain | 28 | namespace libTerrain |
31 | { | 29 | { |
32 | partial class Channel | 30 | partial class Channel |