Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Overload Scene.NewUserConnection() to facilitate NPCs and other region ↵ | dahlia | 2010-10-26 | 1 | -9/+27 |
| | | | | specific applications | ||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Justin Clark-Casey (justincc) | 2010-10-22 | 1 | -3/+3 |
|\ | |||||
| * | Change some exception to use ToString(). e.Message is not sufficient to fix | Melanie | 2010-10-22 | 1 | -3/+3 |
| | | | | | | | | errors. Please don't use e.Message, devs NEED to see the dumps! | ||||
* | | Revert "Merge remote branch 'otakup0pe/mantis5110'" | Justin Clark-Casey (justincc) | 2010-10-22 | 1 | -4/+1 |
|/ | | | | | This reverts commit 21187f459ea2ae590dda4249fa15ebf116d04fe0, reversing changes made to 8f34e46d7449be1c29419a232a8f7f1e5918f03c. | ||||
* | Merge branch 'hg16' into mantis5110 | Jonathan Freedman | 2010-10-22 | 1 | -1/+4 |
|\ | |||||
| * | * change the data exchanged within hypergrid transactions | Jonathan Freedman | 2010-10-21 | 1 | -1/+4 |
| | | |||||
* | | Make SImStatsReporter pick ObjectCapacity striaght out of region info | Melanie | 2010-10-22 | 1 | -2/+0 |
|/ | |||||
* | Plumb the path for multiple object deletes | Melanie | 2010-10-06 | 1 | -2/+2 |
| | |||||
* | Changed SceneObjectGroup to store parts with the fast and thread-safe ↵ | John Hurliman | 2010-09-16 | 1 | -9/+5 |
| | | | | MapAndArray collection | ||||
* | rename SceneObjectGroup.DeleteGroup() to DeleteGroupFromScene() to improve ↵ | Justin Clark-Casey (justincc) | 2010-09-15 | 1 | -1/+1 |
| | | | | code readability | ||||
* | minor: Add comments which explain what's going on wrt avatar movements at ↵ | Justin Clark-Casey (justincc) | 2010-09-13 | 1 | -0/+4 |
| | | | | various points in the main scene loop and associated methods | ||||
* | Merged | John Hurliman | 2010-09-12 | 1 | -7/+7 |
|\ | |||||
| * | Formatting cleanup. | Jeff Ames | 2010-09-12 | 1 | -9/+9 |
| | | |||||
* | | * Added ISimulationDataService and IEstateDataService | John Hurliman | 2010-09-12 | 1 | -31/+71 |
|/ | | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings | ||||
* | Shuffling fields and properties around in Scene to make Scene.cs more readable | John Hurliman | 2010-09-11 | 1 | -138/+124 |
| | |||||
* | Made it impossible to create a user with names containing spaces and ↵ | randomhuman | 2010-09-10 | 1 | -2/+3 |
| | | | | prevented passwords from being echoed after enter is pressed. | ||||
* | First pass at cleaning up thread safety in EntityManager and SceneGraph | John Hurliman | 2010-09-10 | 1 | -24/+21 |
| | |||||
* | Fix deletion persistence when freshly delinked prims are removed | Justin Clark-Casey (justincc) | 2010-09-07 | 1 | -9/+16 |
| | | | | | | | | | | Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion. This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart). However, DeRezObjects() deleted to user inventory, which is required by llDie() or direct region module unlink and deletion. Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path. Uncommented TestDelinkPersistence() since this now passes. Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts. | ||||
* | Make console backup command do a forced backup rather than non-forced | Justin Clark-Casey (justincc) | 2010-09-06 | 1 | -5/+0 |
| | | | | Remove no-arg backup method for simplicity as it only make sense to call non-forced backup internally | ||||
* | Add test to check persistence of newly added pre-linked objects | Justin Clark-Casey (justincc) | 2010-09-06 | 1 | -2/+11 |
| | | | | | Added a MockRegionDataPlugin to do in-memory persistence for tests since adding this to OpenSim.Data.Null.NullDataStore doesn't seem appropriate NullDataStore can do nothing because OpenSim only ever retrieve region objects from the database on startup. Adding an in-memory store here would be unecessary overhead. | ||||
* | Logout the presence if client IP verification fails. | Diva Canto | 2010-09-04 | 1 | -0/+2 |
| | |||||
* | Adjust the "Magic numbers" we use because we can't reference the actual | Melanie Thielker | 2010-08-31 | 1 | -1/+1 |
| | | | | script state enum to reflect recent changes. | ||||
* | Improve liveness by operating on list copies of SOG.Children where appropriate | Justin Clark-Casey (justincc) | 2010-08-28 | 1 | -10/+11 |
| | |||||
* | Remove mono compiler warnings | Justin Clark-Casey (justincc) | 2010-08-26 | 1 | -12/+0 |
| | |||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Justin Clark-Casey (justincc) | 2010-08-26 | 1 | -1/+0 |
|\ | | | | | | | | | | | | | Resolve merge conflicts Conflicts: OpenSim/Region/Framework/Scenes/SceneGraph.cs | ||||
| * | Make scene object directories more robust and prevent deleted SOP's from | Melanie Thielker | 2010-08-25 | 1 | -1/+0 |
| | | | | | | | | sticking around | ||||
* | | Improve consistency of locking for SOG.m_parts in order to avoid race ↵ | Justin Clark-Casey (justincc) | 2010-08-26 | 1 | -15/+20 |
|/ | | | | conditions in linking and unlinking | ||||
* | Split out actual scene object insertion code from Scene.Inventory.RezObject ↵ | Justin Clark-Casey (justincc) | 2010-08-24 | 1 | -1/+17 |
| | | | | | | | | and move into SceneGraph.AddNewSceneObject() The new SceneGraph method is more consumable by region modules that want to extract objects from inventory and add them to the scene in separate stages. This change also reduces the number of redundant client updates scheduled when an object is rezzed directly by a script or region module This code does not touch direct rez by a user | ||||
* | Cleaned up a few more things related to incoming agents. | Diva Canto | 2010-08-20 | 1 | -45/+42 |
| | |||||
* | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim | Melanie | 2010-08-20 | 1 | -25/+27 |
|\ | |||||
| * | Finished implementing ViaLogin vs ViaHGLogin. Removed lookup on ↵ | Diva Canto | 2010-08-19 | 1 | -25/+27 |
| | | | | | | | | myipaddress.com. Also removed client IP verification upon UDP connection that had been left there -- we can't do that in general. | ||||
* | | Add some maptile options, change maptile generation from OpenSimBase to Scene | Melanie | 2010-08-20 | 1 | -9/+54 |
|/ | | | | to make it more configurable. | ||||
* | Updated the create_region command in the RemoteAdmin plugin to properly ↵ | randomhuman | 2010-08-13 | 1 | -39/+0 |
| | | | | support estates without seeking further input on the console. | ||||
* | refactor: move binary statistics logging from scene into separate region module | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -106/+7 |
| | |||||
* | refactor: move Scene.PerformObjectBuy into BuySellModule | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -159/+0 |
| | |||||
* | Establish new Objects/BuySellModule | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -22/+1 |
| | | | | Move Scene.ObjectSaleInfo() to this | ||||
* | refactor: move Scene.TerrainUnAcked() handling into TerrainModule | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -8/+0 |
| | |||||
* | refactor: remove Scene.SetRootAgentScene() in favour of existing event with ↵ | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -11/+0 |
| | | | | same name | ||||
* | refactor: move more map tile generation code from scene to IWorldMapModule | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -27/+0 |
| | |||||
* | refactor: Use SOP.Flags rather than SOP.ObjectFlags | Justin Clark-Casey (justincc) | 2010-08-13 | 1 | -3/+3 |
| | |||||
* | Avoid truncation of error message during region creation. | Marck | 2010-08-10 | 1 | -1/+1 |
| | | | | Signed-off-by: Melanie <melanie@t-data.com> | ||||
* | Merge branch 'moap' | Justin Clark-Casey (justincc) | 2010-08-06 | 1 | -1/+3 |
|\ | |||||
| * | Add EventManager.OnSceneObjectLoaded() for future use. This is fired ↵ | Justin Clark-Casey (justincc) | 2010-07-26 | 1 | -1/+3 |
| | | | | | | | | immediately after a scene object is loaded from storage. | ||||
* | | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim | Diva Canto | 2010-07-30 | 1 | -59/+6 |
|\ \ | |||||
| * | | remove gods event subscription to gods module from scene | Justin Clark-Casey (justincc) | 2010-07-30 | 1 | -21/+4 |
| | | | |||||
| * | | remove empty, unused and uncalled UnsubscribeToClientEvents() | Justin Clark-Casey (justincc) | 2010-07-30 | 1 | -4/+0 |
| | | | |||||
| * | | move attachment subscription events into AttachmentsModule from scene. | Justin Clark-Casey (justincc) | 2010-07-30 | 1 | -34/+2 |
| |/ | | | | | | | restored to some heavy casting in order to preserve RegionCombinerModule semantics, pending better events. | ||||
* | | Changed the way HG client verification is done: now transforming local and ↵ | Diva Canto | 2010-07-30 | 1 | -1/+3 |
|/ | | | | LAN client IPs into external IPs. This addresses some issues related to running both the user agents service and the viewer in the same machine/LAN, which then presents a problem when the user agent goes to an external network. | ||||
* | Allow Megaregions to start properly after an unclean shutdown | Melanie | 2010-07-20 | 1 | -0/+3 |
| | |||||
* | Major attachments cleanup. Remove unused AttachObject ClientView method | Melanie | 2010-07-14 | 1 | -2/+1 |
| | | | | | Clean up use of AttachObject throughout, reduce number of overloads and number of parameters |