diff options
author | lbsa71 | 2008-12-08 14:45:40 +0000 |
---|---|---|
committer | lbsa71 | 2008-12-08 14:45:40 +0000 |
commit | b4a725ed87e088c0ec06e96c34569159cf3b3931 (patch) | |
tree | 35ceeb43ef48c4998306ae761c6a57bd46d31e2e | |
parent | * Adds some rudimentary error handling to the physics debug drawstuff tool. (diff) | |
download | opensim-SC_OLD-b4a725ed87e088c0ec06e96c34569159cf3b3931.zip opensim-SC_OLD-b4a725ed87e088c0ec06e96c34569159cf3b3931.tar.gz opensim-SC_OLD-b4a725ed87e088c0ec06e96c34569159cf3b3931.tar.bz2 opensim-SC_OLD-b4a725ed87e088c0ec06e96c34569159cf3b3931.tar.xz |
* Killed off OpenSimExport. One project less to maintain.
-rw-r--r-- | OpenSim/Tools/Export/OpenSimExport.cs | 112 | ||||
-rw-r--r-- | prebuild.xml | 38 |
2 files changed, 1 insertions, 149 deletions
diff --git a/OpenSim/Tools/Export/OpenSimExport.cs b/OpenSim/Tools/Export/OpenSimExport.cs deleted file mode 100644 index 570a855..0000000 --- a/OpenSim/Tools/Export/OpenSimExport.cs +++ /dev/null | |||
@@ -1,112 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.IO; | ||
30 | using log4net.Config; | ||
31 | using Nini.Config; | ||
32 | using OpenSim; | ||
33 | using OpenSim.Framework; | ||
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Environment; | ||
36 | using OpenSim.Region.Environment.Scenes; | ||
37 | |||
38 | namespace OpenSimExport | ||
39 | { | ||
40 | public class OpenSimExport | ||
41 | { | ||
42 | public IniConfigSource config; | ||
43 | public StorageManager sman; | ||
44 | |||
45 | public OpenSimExport(IniConfigSource config) | ||
46 | { | ||
47 | this.config = config; | ||
48 | IConfig startup = config.Configs["Startup"]; | ||
49 | // AddinManager.Initialize("."); | ||
50 | // AddinManager.Registry.Update(null); | ||
51 | |||
52 | MainConsole.Instance = CreateConsole(); | ||
53 | |||
54 | sman = new StorageManager( | ||
55 | startup.GetString("storage_plugin", "OpenSim.DataStore.NullStorage.dll"), | ||
56 | startup.GetString("storage_connection_string", String.Empty), | ||
57 | startup.GetString("estate_connection_string", String.Empty) | ||
58 | ); | ||
59 | } | ||
60 | |||
61 | public static void Main(string[] args) | ||
62 | { | ||
63 | XmlConfigurator.Configure(); | ||
64 | |||
65 | OpenSimExport export = new OpenSimExport(InitConfig(args)); | ||
66 | RegionInfo reg = new RegionInfo("Sara Jane", "Regions/1000-1000.xml",false); | ||
67 | |||
68 | Console.WriteLine("This application does nothing useful yet: " + reg.RegionID); | ||
69 | foreach (SceneObjectGroup group in export.sman.DataStore.LoadObjects(reg.RegionID)) | ||
70 | { | ||
71 | Console.WriteLine("{0} -> {1}", reg.RegionID, group.UUID); | ||
72 | } | ||
73 | } | ||
74 | |||
75 | protected static ConsoleBase CreateConsole() | ||
76 | { | ||
77 | return new ConsoleBase("Export", null); | ||
78 | } | ||
79 | |||
80 | private static IniConfigSource InitConfig(string[] args) | ||
81 | { | ||
82 | Console.WriteLine("Good"); | ||
83 | ArgvConfigSource configSource = new ArgvConfigSource(args); | ||
84 | configSource.AddSwitch("Startup", "inifile"); | ||
85 | |||
86 | IConfig startupConfig = configSource.Configs["Startup"]; | ||
87 | string iniFilePath = startupConfig.GetString("inifile", "OpenSim.ini"); | ||
88 | Console.WriteLine(iniFilePath); | ||
89 | IniConfigSource config = new IniConfigSource(); | ||
90 | //check for .INI file (either default or name passed in command line) | ||
91 | if (! File.Exists(iniFilePath)) | ||
92 | { | ||
93 | iniFilePath = Path.Combine(Util.configDir(), iniFilePath); | ||
94 | } | ||
95 | |||
96 | if (File.Exists(iniFilePath)) | ||
97 | { | ||
98 | config.Merge(new IniConfigSource(iniFilePath)); | ||
99 | config.Merge(configSource); | ||
100 | } | ||
101 | else | ||
102 | { | ||
103 | // no default config files, so set default values, and save it | ||
104 | Console.WriteLine("We didn't find a config!"); | ||
105 | config.Merge(ConfigurationLoader.DefaultConfig()); | ||
106 | config.Merge(configSource); | ||
107 | } | ||
108 | |||
109 | return config; | ||
110 | } | ||
111 | } | ||
112 | } | ||
diff --git a/prebuild.xml b/prebuild.xml index f4f17f7..981c0bb 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2580,43 +2580,7 @@ | |||
2580 | </Project> | 2580 | </Project> |
2581 | 2581 | ||
2582 | <!-- Tools --> | 2582 | <!-- Tools --> |
2583 | <Project name="OpenSimExport" path="OpenSim/Tools/Export" type="Exe"> | 2583 | |
2584 | <Configuration name="Debug"> | ||
2585 | <Options> | ||
2586 | <OutputPath>../../../bin/</OutputPath> | ||
2587 | </Options> | ||
2588 | </Configuration> | ||
2589 | <Configuration name="Release"> | ||
2590 | <Options> | ||
2591 | <OutputPath>../../../bin/</OutputPath> | ||
2592 | </Options> | ||
2593 | </Configuration> | ||
2594 | |||
2595 | <ReferencePath>../../../bin/</ReferencePath> | ||
2596 | <Reference name="System" localCopy="false"/> | ||
2597 | <Reference name="System.Xml"/> | ||
2598 | <Reference name="Mono.Addins.dll" /> | ||
2599 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2600 | <Reference name="OpenSim"/> | ||
2601 | <Reference name="OpenSim.Framework"/> | ||
2602 | <Reference name="OpenSim.Data"/> | ||
2603 | <Reference name="OpenSim.Framework.Console"/> | ||
2604 | <Reference name="OpenSim.Framework.Statistics"/> | ||
2605 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
2606 | <Reference name="OpenSim.Framework.Servers"/> | ||
2607 | <Reference name="OpenSim.Region.Environment"/> | ||
2608 | <Reference name="OpenSim.Region.ClientStack"/> | ||
2609 | <Reference name="OpenSim.Framework.Communications"/> | ||
2610 | <Reference name="OpenSim.Region.Communications.OGS1"/> | ||
2611 | <Reference name="XMLRPC.dll"/> | ||
2612 | <Reference name="OpenSim.Region.Communications.Local"/> | ||
2613 | <Reference name="Nini.dll" /> | ||
2614 | <Reference name="log4net.dll"/> | ||
2615 | <Files> | ||
2616 | <Match pattern="*.cs" recurse="true"/> | ||
2617 | </Files> | ||
2618 | </Project> | ||
2619 | |||
2620 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> | 2584 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> |
2621 | <Configuration name="Debug"> | 2585 | <Configuration name="Debug"> |
2622 | <Options> | 2586 | <Options> |