aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/RegionApplicationBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-08-10Some cleaning up and removed a few old files no longer in use.MW1-1/+1
Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).
2007-08-10Made a few changes so that once we enable the sqlite data store (simple line ↵MW1-1/+1
change in OpenSimMain), then basic ( with a few limits at moment) prim database backup will work.
2007-08-06Re-added Grid mode. (which had got removed/disabled in revision 1515)MW1-2/+1
2007-08-06* SimpleApp works again:lbsa711-0/+2
* NetworkServersInfo settable without config file * DefaultHomeLoc throws if getted before setted * Removed nonsensical sandbox distinction * Refactored default config file creation * Some more small refactorings on shapes
2007-07-29Deleting objects should now work. But beware they aren't send to your trash ↵MW1-1/+1
folder or anything so there is at the moment no way to recover deleted objects.
2007-07-29Commit 1/2Adam Frisby1-2/+2
* DB4o no longer crashes the sim on Startup * DB4o now crashes the sim on shutdown. * Variety of console verbosity fixes.
2007-07-26* Started renaming world to Scenelbsa711-1/+1
* Update and UpdateMovement now first stores array to avoid collection update exceptions * Ignored some bins
2007-07-22* Some work in progress code: Inventory cache, start of inventory ↵MW1-1/+1
server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
2007-07-21* Renamed terrain functions to match OpenSim naming styles.Adam Frisby1-1/+1
* Added capability to support minimum/maximum terrain limits (from the last 'bake')
2007-07-20* Fixed an config issue (log not initialized in RegionInfo config)lbsa711-2/+1
* Added LineInfo stacktrace parser to LogBase (not used yet though)
2007-07-19* Fixing sandbox mode crash caused by removal of LocalStorage during cleanup ↵Adam Frisby1-0/+2
earlier.
2007-07-19* Cleaned out remaining references to the old LocalStorage system in prep. ↵Adam Frisby1-3/+2
to move to StorageManager.
2007-07-18*New Configuration System, much easier and less buggy compared to the ↵mingchen1-2/+2
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
2007-07-16* RegionApplicationBase restructuring now completelbsa711-8/+44
* Still has some weird bug in SimpleApp though.
2007-07-16* And yet more restructuring of startup sequence...lbsa711-4/+12
2007-07-16* Massive restructuring of RegionApplicationBase, OpenSimMain and SimpleApplbsa711-3/+37
2007-07-16* Since we're discussing it, applying the m_ convention on some members...lbsa711-7/+7
2007-07-16* Removed some superfluous assignslbsa711-1/+0
* Moved physics plugin scene creation into local scope
2007-07-16* working on RegionApplicationBaselbsa711-1/+1
* Renamed PhysicsManager to PhysicsPluginManager because it is.
2007-07-16* Restructured the RegionApplicationBase.lbsa711-56/+3
2007-07-16changed to native line ending encodingSean Dague1-118/+118
2007-07-16* Some minor renamingslbsa711-1/+1
2007-07-15* Added loading methods for NullStorage.Adam Frisby1-0/+1
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-17/+6
* added some licensing info
2007-06-27*Moved VersionInfo.cs to its correct place in OpenSim.csprojmingchen1-1/+1
*Added OpenSim.Region.Caps *Updated prebuild.xml and ran prebuild
2007-06-27*Some more restructuring/fixing -- should compile, but high chance I forgot ↵mingchen1-3/+2
to add/remove something