aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-10-05Forgot to actually remove the packetpool set code from scene.Justin Clark-Casey (justincc)1-7/+0
2012-10-04Allow default animation to be stopped to be replaced with another one.Melanie2-16/+29
Fixes Mantis #6327
2012-10-04Add generic PercentageStat.Justin Clark-Casey (justincc)1-1/+1
Not yet used.
2012-10-04Add experimental "slow frames" stat, available in "show stats" and via the ↵Justin Clark-Casey (justincc)1-0/+33
monitoring module. This increments a SlowFrames counter if a frame takes over 120% of maximum time. This commit also introduces a generic OpenSim.Framework.Monitoring.Stat which is available to any code that wants to register a statistic. This is more granualar than asking objects to create their own reports. At some point this will supersede earlier IMonitor and IAlert facilities in MonitoringModule which are only available to scene code.
2012-10-02Prevent the ExtraSettings code from crashing SQLite driven sims.Melanie1-0/+6
2012-09-27Add MaxPrimsUndo config setting to [Startup] section of OpenSim.ini.Justin Clark-Casey (justincc)5-19/+12
This controls how many undo steps the simulator will store for each prim. Default is now 20 rather than 5 as it briefly was. The default number could be increased through this is a memory tradeoff which will scale with the number of prims in the sim and level of activity.
2012-09-26Don't store undo states if a scene object is manipulated when it is not in a ↵Justin Clark-Casey (justincc)2-3/+26
scene. Adds regression test for this.
2012-09-26refactor: Change control structures in SOP.StoreUndoState() to reduce nesting.Justin Clark-Casey (justincc)1-45/+43
2012-09-26Make it possible to rescale SOGs when they are not in a scene.Justin Clark-Casey (justincc)2-34/+40
2012-09-26Enforce existing 5 action hardcoded undo limit.Justin Clark-Casey (justincc)3-27/+65
This was present in the code but not enforced, which led to a memory leak over time as part properties were changed, whether by viewer, script or another source. This commit enforces that limit, which will soon become configurable. Regression test for undo limit added Should help with http://opensimulator.org/mantis/view.php?id=6279
2012-09-26Add basic undo/redo regression tests.Justin Clark-Casey (justincc)3-8/+137
2012-09-24Documenting object-related eventsSignpostMarv1-0/+43
2012-09-24Documenting LSL script-related eventsSignpostMarv1-2/+147
2012-09-21This fixes HG attachments' missing assets (textures, etc).Diva Canto1-10/+17
Also, further improvements on HGUuidGatherer: if the assets are already in this grid don't fetch them again.
2012-09-22Documenting non-LSL script-related eventsSignpostMarv1-0/+52
2012-09-21Moved the small HGUuidGatherer class to the file where its parent class is. ↵Diva Canto1-0/+36
No need to keep 2 separate files.
2012-09-21Rename UuidGather.m_assetCache to m_assetService. If HGUuidGatherer hasn't ↵Justin Clark-Casey (justincc)1-7/+4
been instantiated with an assetServerURL then call down to overriden UuidGatherer.GetAsset() instead of calling m_assetService.GetAsset() itself - these two codepaths are now identical.
2012-09-21Simplify UuidGatherer by performing asset fetch synchronously rather than ↵Justin Clark-Casey (justincc)1-40/+44
using the async call but waiting for completion anyway!
2012-09-20Documentation of teleport-related eventsSignpostMarv1-0/+19
2012-09-20minor tweaks to existing comments for IDE goodnessSignpostMarv1-4/+7
2012-09-20Documentation of agent-related eventsSignpostMarv1-1/+34
2012-09-20Documentation of object-related eventsSignpostMarv1-1/+38
2012-09-20Documentation of OnPluginConsoleSignpostMarv1-0/+16
2012-09-20Make ResendAppearanceUpdates = true by default in [Appearance] in ↵Justin Clark-Casey (justincc)1-0/+2
OpenSimDefaults.ini. This resends appearance uuids to avatars in the scene once a minute. I have seen this help in the past resolve grey appearance problems where viewers have for unknown reasons sometimes ignored the packet. The overhead is very small since only the UUIDs are sent - the viewer then requests the texture only if it does not have it cached. This setting will not help with cloudy avatars which are usually due to the viewer not uploading baked texture data or uploading something that isn't valid JPEG2000
2012-09-18Cleanup from prev. commitBlueWall1-2/+2
Make correct defaults to Phys/nonPhys prims to fix errors in prev. commit
2012-09-18Fix some inconsistencies in configurartion: NonPhys primsBlueWall1-3/+3
Fix inconsistencies between configuration parameter names and their description names. Changing the configuration parameters for non physical prim size min-max from Nonphys* to NonPhys*. Please update your OpenSim.ini and Regions.ini to reflect these changes.
2012-09-17preventing a null reference exception from being thrownSignpostMarv1-0/+3
Signed-off-by: Melanie <melanie@t-data.com>
2012-09-14Added unit tests for multi-region OARsOren Hurvitz1-1/+5
2012-09-14Support multi-region OAR filesOren Hurvitz1-3/+3
Merged ArchiveWriteRequestPreparation.cs and ArchiveWriteRequestExecution.cs. This simplifies the code, and it's faster to write each scene to the archive as it's found rather than all at once at the end.
2012-09-13Documentation of parcel-related eventsSignpostMarv1-0/+44
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-09-12Fix indentation and issues where tabs were used instead of spaces in commit ↵Justin Clark-Casey (justincc)1-7/+8
783ee949
2012-09-12Documentation of economy-related EventManager eventsSignpostMarv1-0/+21
2012-09-11documentation (OnSceneObjectPartCopy)SignpostMarv1-0/+3
2012-09-11documentation (OnRemovePresence)SignpostMarv1-0/+7
2012-09-11documentation (OnNewPresence)SignpostMarv1-0/+7
2012-09-11documentation (OnClientConnect)SignpostMarv1-0/+9
2012-09-11documentation (OnBackup)SignpostMarv1-0/+7
2012-09-11documentation (OnTerrainTick)SignpostMarv1-0/+7
2012-09-11documentation (OnTerrainTainted)SignpostMarv1-0/+7
2012-09-11documentation (OnClientMovement)SignpostMarv1-0/+7
2012-09-11Documenting some of the events on ↵SignpostMarv1-0/+8
OpenSim.Region.Framework.Scenes.EventManager (OnFrame)
2012-09-09implementing per-region configuration of limits on the number of prims one ↵SignpostMarv2-0/+29
can have in a linkset Applied with changes - patch was based on a repo different from core Signed-off-by: Melanie <melanie@t-data.com>
2012-09-08refactoring to allow Scene.GetLandData to accept Vector3 as an argument. ↵SignpostMarv1-0/+10
Note that the prior work on LSL_Vector implicit operators means one does not need to explicitly cast a LSL_Vector to Vector3
2012-09-06adding utility method for getting SceneObjectGroup from sceneSignpostMarv1-0/+12
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-09-06adding utility method for getting SceneObjectPart from sceneSignpostMarv1-0/+12
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-09-04formattingSignpostMarv1-6/+6
2012-09-04although the attachmentPoint argument is a uint, zero is not a valid ↵SignpostMarv1-1/+4
attachment point
2012-08-29Fix regression introduced in a0d178b2 (Sat Aug 25 02:00:17 2012) where ↵Justin Clark-Casey (justincc)1-2/+34
folders with asset type of 'Folder' and 'Unknown' were accidentally treated as system folders. This prevented more than one additional ordinary folder from being created in the base "My Inventory" user folder. Added regression test for this case. Switched tests to use XInventoryService with mostly implemented TestXInventoryDataPlugin rather than InventoryService Disabled TestLoadIarV0_1SameNameCreator() since this has not been working for a very long time (ever since XInventoryService) started being used since it doesnt' preserve creator data in the same way as InventoryService did and so effectively lost the OSPAs. However, nobody noticed/complained about this issue and OSPAs have been superseded by HG like creator information via the --home save oar/iar switch.
2012-08-25minor: Fix bad log message for failure to create an inventory folderJustin Clark-Casey (justincc)1-1/+1
2012-08-25Log initial script startup info notice when xengine actually starts to do ↵Justin Clark-Casey (justincc)1-1/+1
this for debugging purposes, rather than before it actually starts to do this.