aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-07-04Use GetInventoryItem() in llRezAtRoot rather than iterating through a cloned ↵Justin Clark-Casey (justincc)1-40/+36
dictionary
2012-07-04refactor: In llGetNotecardLine() use existing GetInventoryItem() rather than ↵Justin Clark-Casey (justincc)1-10/+4
inspecting a clone of the TaskInventory dictionary that was not cloned thread-safe
2012-07-04refactor: In llGetNumberOfNotecardLines() use existing GetInventoryItem() ↵Justin Clark-Casey (justincc)1-10/+4
rather than inspecting a clone of the TaskInventory dictionary that was not cloned thread-safe
2012-07-04refactor: use existing GetInventoryItem() in GetScriptByName(), itself ↵Justin Clark-Casey (justincc)1-13/+9
renamed from ScriptByName()
2012-07-04refactor: In llGetInventoryType() use existing GetInventoryItem()Justin Clark-Casey (justincc)1-11/+5
2012-07-04refactor: In llGetInventoryCreator() use existing GetInventoryItem()Justin Clark-Casey (justincc)1-12/+8
2012-07-04refactor: In llGetInventoryPermMask() use existing GetInventoryItem()Justin Clark-Casey (justincc)1-24/+21
2012-07-04refactor: in llGetInventoryPermMask use existing GetInventoryItem()Justin Clark-Casey (justincc)1-23/+19
2012-07-04refactor: In llRemoteLoadScriptPin() use existing GetInventoryItem()Justin Clark-Casey (justincc)1-20/+5
2012-07-04refactor: replace use of LSL_Api.GetTaskInventoryItem() with existing ↵Justin Clark-Casey (justincc)1-22/+11
GetInventoryItem()
2012-07-04refactor: In llGetInventoryKey() use existing GetInventoryItem()Justin Clark-Casey (justincc)1-15/+9
2012-07-04In llMessageLinked() use GetInventoryItems() rather than cloning ↵Justin Clark-Casey (justincc)1-4/+2
TaskInventory directory GetInventoryItems() returns a new list and so is equivalent, and creates this list under lock whereas Clone() is not thread-safe
2012-07-04In llRequestInventoryData() use GetInventoryItems() rather than cloning ↵Justin Clark-Casey (justincc)1-3/+2
TaskInventory directory GetInventoryItems() returns a new list and so is equivalent, and creates this list under lock whereas Clone() is not thread-safe
2012-07-04refactor: In llCollisionSound() use existing GetInventoryItem() method ↵Justin Clark-Casey (justincc)1-11/+5
rather than have it iterate through TaskInventory itself.
2012-07-04refactor: In llRemoveInventory() use existing GetInventoryItem() method ↵Justin Clark-Casey (justincc)1-14/+9
rather than have it iterate through TaskInventory itself.
2012-07-04refactor: make llGiveInventory() use existing GetInventoryItem() method ↵Justin Clark-Casey (justincc)1-24/+11
rather than iterate through TaskInventory itself.
2012-07-04refactor: rename Watchdog.WATCHDOG_TIMEOUT_MS to DEFAULT_WATCHDOG_TIMEOUT_MS ↵Justin Clark-Casey (justincc)2-5/+5
to reflect what it actually is
2012-07-03Correct spelling mistake m_BanedViewers to m_BannedViewersJustin Clark-Casey (justincc)1-4/+4
2012-07-03minor: Add some method doc to HasGroupChanged and Schedule ↵Justin Clark-Casey (justincc)1-2/+21
GroupForFull/PartUpdate() to indicate when region modules need to invoke them
2012-07-03Fix issue in database tests where sogs being stored are not in a scene.Justin Clark-Casey (justincc)1-1/+1
This puts an extra m_part.ParentGroup.Scene == null check at the top of SceneObjectPartInventory.QueryScriptStates()
2012-07-02Adds a list of viewers that are allowed or banned from the region.Michelle Argus1-0/+65
Signed-off-by: Melanie <melanie@t-data.com>
2012-07-01Add preservation of running state of scripts when drag-copying.Melanie4-2/+62
2012-06-30Remove some mono compiler warningsJustin Clark-Casey (justincc)7-24/+21
2012-06-30Removing unused handling of incoming create object by userID and itemID only.Justin Clark-Casey (justincc)5-106/+1
It appears this was never actually used since attachments were rezzed in other code. This was never available on remote simulator comms, only local.
2012-06-30Remove code listed for removal in 0.7.3 that handled script restart for ↵Justin Clark-Casey (justincc)1-16/+0
incoming attachments from pre-fatpack regions (versions of OpenSimulator more than a year old)
2012-06-29Move update of the final optional ODE total frame stat inside the OdeLock ↵Justin Clark-Casey (justincc)1-3/+3
rather than outside to avoid a very occasional race condition with the stat collection thread
2012-06-29refactor: rename _collisionEventPrim to m_collisionEventActors and ↵Justin Clark-Casey (justincc)1-12/+12
_collisionEventPrimChanges to m_collisionEventActorsChanges to reflect their actual contents. These dictionaries handle all actor types, not just physical prims.
2012-06-29Fix a regression where we stopped removing avatars from collision event ↵Justin Clark-Casey (justincc)1-1/+1
reporting on logout, rather than stopping clearing their collision events. This occurred in b18c8c8 (Thu May 17 2012). This was a cause of very occasional race conditions and likely memory leakage as clients came and went from the region.
2012-06-29If a link points to a non-existing item in FetchInventory caps, then don't ↵Justin Clark-Casey (justincc)1-1/+2
try to add it to the return data rather than suffering an exception later on
2012-06-29Add IScene.Name for code clarity to replace the RegionInfo.RegionName used ↵Justin Clark-Casey (justincc)4-32/+38
in many, many log messages.
2012-06-28Change AttachmentsModule.DetachSingleAttachmentToInv() to accept a SOG ↵Justin Clark-Casey (justincc)5-52/+58
directly instead of an item ID to then shuffle through attachments, saving CPU busywork. Almost all callers already had the sog to hand. Still checking that it's really an attachment, but now by inspecting SOG.AttachedAvatar
2012-06-28Rather than iterating through all SOGs in the scene looking for the one that ↵Justin Clark-Casey (justincc)1-24/+17
matches out fromItemID on detach, go through the agent's attachment sog list instead.
2012-06-28Remove code that tried to delete an attachment back to inventory if ↵Justin Clark-Casey (justincc)1-6/+1
RezSingleAttachmentFromInventoryInternal() returned null. null would only ever be returned if the item couldn't be located within inventory and this would happen immediately. In this case, derezzing wouldn't work anyway since there is no item to derez.
2012-06-28If rest of first line after colon is blank then still warn about running in ↵Justin Clark-Casey (justincc)1-11/+18
XEngine if engine specified does not exist. This is to take account of situations where the user was intending to specify a script engine using colon using its default language. This probably generates few false positive as scripts are less likely to end a first line colon with a comment for other purposes.
2012-06-28Avoid reporting false positives when a colon is in a comment in the first ↵Justin Clark-Casey (justincc)1-17/+41
line of a script where the user was not trying to select a different script engine. This works by only posting the "Selected engine unavailable" message if we're falling back on XEngine and the language is one handled by XEngine. In cases where the language is not handled or not allowed, the user will still be notified by the later compiler error. This avoids the overwhelming majority of false positives where the first line contains a : for other reasons (e.g. source control systems, vim settings, etc.) Ultimately, I think it would be better to detect script language/engine with a mechanism that didn't just rely on : detection (e.g like #! in unix scripts).
2012-06-28minor: reuse colon index calculation in XEngine.OnRezScript. The index if a ↵Justin Clark-Casey (justincc)1-2/+2
colon is found on the first line will always be the same as for the whole script.
2012-06-27Fix issue in InventoryArchiveTestCase where it didn't call down to ↵Justin Clark-Casey (justincc)1-1/+2
OpenSimTestCase.SetUp()
2012-06-27refactor: Move ScenePresence <-> AgentData attachments copying code into ↵Justin Clark-Casey (justincc)4-37/+74
AttachmentsModule.
2012-06-27Automatically disable log4net before each regression test so that logging is ↵Justin Clark-Casey (justincc)4-5/+50
confined to a single test if it's turned on. This involves making test classes inherit from a common OpenSimTestCase. This will be applied to more classes as required.
2012-06-26Replace "kill uuid" console command with the more consistent "delete object ↵Justin Clark-Casey (justincc)1-56/+0
uuid", which was present in the last opensim release.
2012-06-26Fix output for help on some object region console commandsJustin Clark-Casey (justincc)1-3/+6
2012-06-26Show region positions in "show regions" robust console commandJustin Clark-Casey (justincc)1-1/+7
2012-06-26minor: correct GridService "show regions" cibsike cinnabd usage statementJustin Clark-Casey (justincc)1-1/+1
2012-06-26refactor: Remove unnecessary AttachmentModuleTests.m_userId in favour of ↵Justin Clark-Casey (justincc)2-40/+31
local variables
2012-06-26refactor: Use local attachment module variables instead of global m_attMod.Justin Clark-Casey (justincc)1-11/+10
This also avoids confusion between tests where one sets up m_attMod and another accidentally uses it after failing to set one up itself.
2012-06-26refactor: make m_presence a local variable in all AttachmentsModuleTests ↵Justin Clark-Casey (justincc)1-26/+25
since it doesn't need to be global and some tests set up more than one sp
2012-06-26Add regression test to check that attachments in source region are deleting ↵Justin Clark-Casey (justincc)2-18/+120
when an agent teleports to a neighbouring region
2012-06-26If crossing attachments into another region pre-fatpack, clone objects ↵Justin Clark-Casey (justincc)1-17/+26
before changing properties to avoid hud display race condition with update threads. This matches behaviour in fatpack crossing, where attachments are cloned before their properties are changed. This only applies to crossings to simulators running code released before April 2011.
2012-06-26Add stub for llCastRayBlueWall1-0/+5
2012-06-26Add much easier ConsoleDisplayTable AddColumn() and AddRow() methods.Justin Clark-Casey (justincc)2-6/+20
Use these for new "show regions" command rather than old cumbersome stuff.