| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
socket to external IP instead of internal :)
|
|
|
|
|
|
| |
Added option to try alternate UDP ports if the one configured is in use.
UDP packets are now bound to the actual outside IP address and hopefully won't "randomly" select IP on multihomed systems.
|
|
|
|
|
|
|
|
|
| |
* This can be turned on by setting storage_prim_inventories_experimental = True in OpenSim.ini
* Implemented for sqlite and MySQL, no MSSQL implementation yet
* As an experimental feature, there is no guarantee that this won't take down your region or that the db representation won't need to change.
* More (and continuing) details at http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence
|
|
|
|
|
|
|
| |
* shortened references
* Removed redundant 'this'
* Normalized EOF
|
|
|
|
| |
Works with LibSL rev>1532
|
|
|
|
| |
datastore is sqlite
|
|
|
|
| |
functions for the different datastore interfaces for Land Objects.
|
| |
|
|
|
|
| |
notice of doom
|
| |
|
| |
|
|
|
|
|
|
|
| |
show a user's client that it can't edit a prim if it doesn't have permission.
* Permissions is due for a big revamp. The current way it's done is a hack at best.
|
|
|
|
|
| |
* Various refactorings
|
|
|
|
|
|
|
| |
LoadWorldMap and into its own public method (which is called during region creation). We shouldn't have things like that in methods like LoadWorldMap as some regions might not being having a worldmap loaded via the LoadWorldMap method (like in custom applications).
Deleted the CreateTerrainTextureInitial Method which was a 99% duplicate of CreateTerrainTexture, with just a bool field setting difference. That bool is now passed to CreateTerrainTexture as a param.
|
|
|
|
|
|
|
|
|
|
|
| |
OpenSim.ini.example **
* Now moved region storage from region to application, so we have one storage per application, instead of one per region.
* Changed so that the region store providers use connectionstrings, not filenames
* Removed various unfit fields and properties (call me Darwin)
|
|
|
|
|
|
| |
* Experimental. Linux Prebuild needs testing.
* One more update after this to remove the ODEMeshing directory....
|
|
|
|
| |
standalone mode by specifying a master_avatar_uuid attribute in the place of master_avatar_xxxx_name and master_avatar_password.You will not be asked for the name and password if a valid UUID is specified.
|
|
|
|
|
|
| |
* Shortened type references
* Removed redundant 'this' qualifier
|
|
|
|
|
|
|
| |
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace.
Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
|
|
|
|
|
|
|
|
| |
to be sent to the core application.
* Disabled by default, but has two functions so far -- shutdown (timed or now), and create-region.
* Added SendGeneralAlert function to SceneManager allowing all-user alerts to be sent from OpenSimMain.
|
|
|
|
|
|
|
|
|
| |
* Moved InventoryData to Framework.Types/InventoryItemBase.cs
* Moved UserData to Framework.Interfaces/IUserData.cs
* Moved UserProfileData to Framework/Types/UserProfileData.cs
* Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round)
* Changed some namespaces to reflect file structure
|
| |
|
|
|
|
|
|
|
|
| |
functionality
* Working towards one shared set of services
* Killed off two projects with very little functionality
|
| |
|
|
|
|
|
|
| |
* Changed so prims aren't loaded until AFTER parcels.
* The region startup flow is still an ungodly rats nest.
|
|
|
|
|
|
| |
* Implemented SceneManager.StopScene() and Scene.Stop()
* Some SimpleApping
|
| |
|
|
|
|
| |
should equal project and directory.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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).
|
|
|
|
| |
change in OpenSimMain), then basic ( with a few limits at moment) prim database backup will work.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
| |
folder or anything so there is at the moment no way to recover deleted objects.
|
|
|
|
|
|
|
| |
* DB4o no longer crashes the sim on Startup
* DB4o now crashes the sim on shutdown.
* Variety of console verbosity fixes.
|
|
|
|
|
|
| |
* Update and UpdateMovement now first stores array to avoid collection update exceptions
* Ignored some bins
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
* Added capability to support minimum/maximum terrain limits (from the last 'bake')
|
|
|
|
|
| |
* Added LineInfo stacktrace parser to LogBase (not used yet though)
|
|
|
|
| |
earlier.
|
|
|
|
| |
to move to StorageManager.
|
|
|
|
|
|
|
|
| |
original system in place
*View RegionInfo.cs for an example on how it works!
*This hopefully copies all the files over, but who knows :)
|
|
|
|
|
| |
* Still has some weird bug in SimpleApp though.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* Moved physics plugin scene creation into local scope
|
|
|
|
|
| |
* Renamed PhysicsManager to PhysicsPluginManager because it is.
|
| |
|