aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
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-11Allow an incoming identifier to be specified for a JsonStore.Mic Bowman1-1/+1
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-06If reusing dynamic textures, do not reuse small data length textures that ↵Justin Clark-Casey (justincc)1-3/+54
fall below current viewer discard level 2 thresholds. Viewer LL 3.3.4 and before sometimes fail to properly redisplay dynamic textures that have a small data length compared to pixel size when pulled from cache. This appears to happen when the data length is smaller than the estimate discard level 2 size the viewer uses when making this GetTexture request. This commit works around this by always regenerating dynamic textures that fall below this threshold rather than reusing them if ReuseDynamicTextures = true This can be controlled by the [Textures] ReuseDynamicLowDataTextures config setting which defaults to false.
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-31adding support for static method script invocationsSignpostMarv1-2/+9
2012-08-31adding documentation to script invokation methodsSignpostMarv1-0/+22
2012-08-29This partially implements the LSL function to set the responseMic Bowman1-0/+2
type for an HTTP request. Since the "official" LSL function limits the use of the response type, it is implemented as osSetContentType with a string for the content mime type and a threat level of high. With this function you should be able to implement rather functional media-on-a-prim application with much less difficulty.
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-28Add experimental DynamicTextureModule.ReuseTextures flag, currently only ↵Justin Clark-Casey (justincc)1-1/+13
configurable on compile. Disabled (status quo) by default. This flag makes the dynamic texture module reuse cache previously dynamically generated textures given the same input commands and extra params for 24 hours. This occurs as long as those commands would always generate the same texture (e.g. they do not contain commands to fetch data from the web). This makes texture changing faster as a viewer-cached texture uuid is sent and may reduce simulator load in regions with generation of lots of dynamic textures. A downside is that this stops expiry of old temporary dynamic textures from the cache, Another downside is that a jpeg2000 generation that partially failed is currently not regenerated until restart or after 24 hours.
2012-08-28Add IDynamicTextureManager.ConvertData() to match AsyncConvertData(). ↵Justin Clark-Casey (justincc)1-1/+1
Remove mismatching ConvertStream() where there is no AsyncConvertStream and neither IDynamicTextureManager implementer implements this method.
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.
2012-08-24Extend "Restarting scripts in attachments" debug log message to show actual ↵Justin Clark-Casey (justincc)1-1/+3
name of user and the region they are in
2012-08-24If a connecting scene presence is replacing an existing scene presence then ↵Justin Clark-Casey (justincc)1-1/+1
bypass close checks.
2012-08-24Pass the "attachToBackup" bool given to SceneGraph.AddNewSceneObject() down ↵Justin Clark-Casey (justincc)1-1/+1
into the 3-parameter AddNewSceneObject() method instead of always hardcoding true. This doesn't affect any core OpenSimulator code since all callers were passing true anyway But it allows region modules to create objects that are never persisted.
2012-08-24Fix bad child prim permissions that can make objects change perms after rezzingMelanie3-3/+39
Port from Avination
2012-08-20refactoring out SetFaceColorSignpostMarv1-52/+15
2012-08-20making use of implicit operators and Util.Clip handling of Vector3SignpostMarv1-21/+26
2012-08-20single operation for PRIM_COLORSignpostMarv1-0/+49
2012-08-20fix typoSignpostMarv1-1/+1
2012-08-20Add --force flag to "kick user" console command to allow bypassing of recent ↵Justin Clark-Casey (justincc)2-4/+7
race condition checks. This is to allow a second attempt to remove an avatar even if "show connections" shows them as already inactive (i.e. close has already been attempted once). You should only attempt --force if a normal kick fails. This is partly for diagnostics as we have seen some connections occasionally remain on lbsa plaza even if they are registered as inactive. This is not a permanent solution and may not work anyway - the ultimate solution is to stop this problem from happening in the first place.
2012-08-17fixing bug that get/set the wrong property for prim types other than sphere ↵SignpostMarv1-1/+2
& box
2012-08-17implementedSignpostMarv1-0/+50
2012-08-17BulletSim: Properly regenerate hulls when objects made physical.Robert Adams1-8/+8
This fixes the problem of non-base shapes (cubes and spheres) falling through the terrain.
2012-08-17Modify order of code so SOP doesn't set the physics actor flyingRobert Adams1-7/+12
property multiple times every time Update is called. This eliminates zillions of settings which is better for BulletSim. The should be no functionality change.
2012-08-15Correct an exception report in SceneObjectPart so it outputs the stack.Robert Adams1-1/+1
2012-08-15enables configurable minimum sizes for physical & non-physical primsSignpostMarv4-20/+93
2012-08-15Add support for the extra params to scene and the event managerMelanie2-0/+62
2012-08-15Add a skeleton for a name value storage associated with regionsMelanie3-0/+15
2012-08-14Allow the use of the region debug console found in recent viewers. This consoleMelanie1-0/+39
will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
2012-08-14Lay some groundwork for temp attachments. Decouple attachments from inventory.Melanie2-2/+2
2012-08-03Restore SOG constructor chaining removed in recent 513b77b. This is not a ↵Justin Clark-Casey (justincc)1-1/+1
functional change.
2012-08-03Move previously unadvertised SendPeriodicAppearanceUpdates setting from ↵Justin Clark-Casey (justincc)1-1/+7
[Startup] to [Appearance] config section. Add description and default of false (as before) to OpenSimDefaults.ini If set to true, this config switch will resend avatar appearance information (a small amount of UUID data, not the baked textures themselves) to other avatars in the sim every 60 seconds. For me, this has helped with situations where avatars appear persistently grey - the LL viewer sometimes did not appear to request assets the first time the appearance data was sent. However, this switch will not help with other appearance failure situations (e.g. failure to bake assets). This setting is experimental but will not have any significant impact on the simulator if turned to true.
2012-08-03refactor: rename SOG.RezzingObjectID to SOG.FromPartID to match ↵Justin Clark-Casey (justincc)2-2/+2
FromFolderID, FromItemID and to reflect that it's a SOP ID rather than a SOG ID.