aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-10-29Immediately setting gain to zero as a workaround for code not stopping sound ↵SignpostMarv1-0/+1
started by llPlaySound
2012-10-29Fix memory leak where removing an NPC did not remove its circuits.Justin Clark-Casey (justincc)3-3/+15
This was because we were removing by circuitcode where NPCs have no code. Now removing by agent ID instead. This commit also fixes the "show circuits" console command to work properly where the circuit has no associated IP address.
2012-10-29Add "force gc" region console command which manually invokes garbage collection.Justin Clark-Casey (justincc)2-1/+13
For debugging purposes.
2012-10-28Deep copy the collection of at_target objects so it can't be modified whileMelanie1-2/+5
it's being iterated
2012-10-27minor: Fix verbose IAR save message to make it a bit clearer that item data ↵Justin Clark-Casey (justincc)1-1/+1
is being saved at that point, not asset data.
2012-10-26Fix "save iar" hanging permanently if the asset request phase times out.Justin Clark-Casey (justincc)4-14/+33
Unlike "save oar", this was happening on the same thread as the original request. The timeout happens on another so the original thread is never aborted. On "save oar" this leaves the thread hanging (still bad) but on "save iar" it left the console thread hanging. Temporary fix is to make "save iar" do asset request on a separate thread, like "save oar". Longer term fix will be to restructure asset save to use a ManualResetEvent rather than a separate timeout timer.
2012-10-26Separate LSL's notion of the default anim from the actually playing anims.Melanie2-5/+7
2012-10-26Revert "Fix for Mantis 0006376: Avatar no longer show Walking animation when ↵Melanie1-1/+1
any AO hud is" This reverts commit fa484c3494a7190b4d7526094347be74d091e125.
2012-10-26minor: Make the error thrown logged when a simulator in grid mode is trying ↵Justin Clark-Casey (justincc)1-1/+1
to set estate owner to a user that doesn't exist a little more obvious.
2012-10-26refactoring IWorldCommListenerInfo.GetRegexBitfield() method to be a field ↵SignpostMarv2-14/+9
with a private setter
2012-10-26adding ability for listeners to be filtered by regular expressions and a ↵SignpostMarv6-19/+242
general-purpose function to see if a given string matches a given regex
2012-10-26Formatting and casing correction in WorldCommModule, trailing new line in ↵SignpostMarv3-5/+5
OSSL to get git diff to not complain
2012-10-26minor: Add comment as to why we are pulcking plain old ints out of the ↵Justin Clark-Casey (justincc)1-0/+2
LSL_List when converting values from LSL for modInvoke()
2012-10-26Removing the apparently superfluous explicit namespace reference so that the ↵SignpostMarv1-8/+2
if-else-if-else block in ConvertFromLSL can have a consistent appearance
2012-10-26system ints can end up in LSL lists, which can cause counter-intuitive ↵SignpostMarv1-0/+2
unknown list element type errors in ConvertFromLSL (via modInvoke)
2012-10-26Comment out InventoryTransferModule.NeedSceneCacheClear() and invocations ↵Justin Clark-Casey (justincc)3-103/+106
since the call itself does nothing and the return value is ignored by all callers. This is a very old method (+4 years) so is probably confusing code cruft.
2012-10-26Fixed saving non-square multi-region OARsOren Hurvitz1-1/+1
2012-10-25minor: if a scene is already shutting down on Scene.Close(), warn and exit ↵Justin Clark-Casey (justincc)1-0/+6
instead of attempting to run another shutdown concurrently. Thanks to Oren Hurvitz for this change.
2012-10-25Changed "course" to "coarse" in several placesOren Hurvitz3-18/+18
2012-10-25In Scene.Close(), dispose of the physics scene after base.Close() since ↵Justin Clark-Casey (justincc)2-6/+25
script events can still access Physics scene until the script engine shuts down (triggered off base.Close()) XEngine listeners to EventManager.OnShutdown which is triggered from base.Close(). Possibly it could listen for the earlier OnSceneShuttingDown instead, but the easier solution right now is to relocate disposal of the physics scene. This bug has existed since c150320 (Thu Jul 26 15:27:18 2012) and was in 0.7.4
2012-10-25Fix for Mantis 0006376: Avatar no longer show Walking animation when any AO ↵nebadon1-1/+1
hud is loaded. Thank you tglion
2012-10-25Fix script error messages not showing up in viewer 3 and associated viewers.Justin Clark-Casey (justincc)9-34/+75
Viewer 3 will discard such a message if the chat message owner does not match the avatar. We were filling the ownerID with the primID, so this never matched, hence viewer 3 did not see any script error messages. This commit fills the ownerID in with the prim ownerID so the script owner will receive script error messages. This does not affect viewer 1 and associated viewers which continue to process script errors as normal.
2012-10-25Get osNpcCreate() and osNpcLoadAppearance() to generate a script error if ↵Justin Clark-Casey (justincc)2-11/+30
appearance notecard does not exist, rather than returning UUID.Zero or silently failing.
2012-10-25When scripts generate expected exceptions (e.g. due to checked bad ↵Justin Clark-Casey (justincc)5-9/+52
parameter) throw ScriptException instead of just a plain old exception. This is to make it easier to distinguish these exceptions from unexpected OpenSimulator problems internally and in regression tests. No functional changes.
2012-10-25Make osNpcCreate() return UUID.Zero instead of throwing an exception if ↵Justin Clark-Casey (justincc)3-12/+74
notecard name is invalid. Make osNpcLoadAppearance() fail silently in same circumstance rather than throwing exception.
2012-10-25Add TestOsNpcLoadAppearance()Justin Clark-Casey (justincc)3-4/+48
2012-10-25Move npc creation tests involving appearance from OSSL_ApiAppearanceTest to ↵Justin Clark-Casey (justincc)2-70/+69
OSSL_ApiNpcTests This is a more intuitive location.
2012-10-24Allow "show object", "show part", "dump object" and "delete object" to ↵Justin Clark-Casey (justincc)4-45/+153
accept a local ID as well as a UUID. This means that the sub-commands are now id rather than uuid, e.g. show object id
2012-10-24Get "save oar" and "save iar" to tell you in a more friendly manner if the ↵Justin Clark-Casey (justincc)6-11/+41
filename to save already exists, rather than exception throwing. Also changes ConsoleUtil.CheckFileExists to CheckFileDoesNotExist() since this is more meaningful in the context, even though it does result in double negatives.
2012-10-24Add "dump object uuid" console command. This allows any object in the scene ↵Justin Clark-Casey (justincc)2-91/+168
to be serialized and dumped to XML for debug purposes.
2012-10-24minor: Move co-ordinate related help to object commands to common ↵Justin Clark-Casey (justincc)2-33/+20
ConsoleUtil.CoordHelp
2012-10-23BulletSim: fix problem with avatars sinking into the ground.Robert Adams4-15/+23
Change terrain activation state to DISABLE_SIMULATION for better performance.
2012-10-23BulletSim: minor change to insure avatar body recreation when shape changes.Robert Adams1-3/+3
2012-10-22BulletSim: remove chatty debug message.Robert Adams2-2/+2
2012-10-22BulletSim: fix bug that caused error (and a crash on 32 bit Linux) when mesh ↵Robert Adams8-35/+51
assets weren't already in the cache. Comment cleanups.
2012-10-22BulletSim: fix problem of not rebuilding shape by clearing last rebuild ↵Robert Adams2-2/+8
failed flag in BSPrim.ForceBodyShapeRebuild()
2012-10-22BulletSim: remove trailing spaces to make git happy.Robert Adams8-36/+36
2012-10-22BulletSim: encorporate UBit's suggestion to save a copy of mesh raw data.Robert Adams1-2/+1
2012-10-22BulletSim: Create LinkSet abstract class and sparate constraint based ↵Robert Adams3-319/+434
linksets into own subclass. Will eventually add manual movement linkset subclass.
2012-10-23Make it possible to turn the base UDP object packet pools on and off whilst ↵Justin Clark-Casey (justincc)3-51/+132
running via the "debug lludp pool <on|off>" console command. For debug purposes. This does not currently apply to the higher LLUDP packetpool.
2012-10-23Add object count stats for new IncomingPacket and UDPPacketBuffer pools if ↵Justin Clark-Casey (justincc)6-14/+153
they are enabled. Add count stats for existing LLUDP pool. This introduces a pull stat type in addition to the push stat type. A pull stat takes a method on construction which knows how to update the stat on request. In this way, special interfaces for pull stat collection are not necessary.
2012-10-23minor: Get content type handler logger to log "unset" for the content type ↵Justin Clark-Casey (justincc)1-1/+1
instead of blank if no content type was set.
2012-10-23minor: Use LogIncomingToContentTypeHandler() method for incoming HTTP data ↵Justin Clark-Casey (justincc)1-8/+2
where this wasn't already used. This allows log level 5 (log sample or large part of incoming post data) to operate and removes copy/paste.
2012-10-21Refactor: Move Dwell reply to a module that can be disabled. The prior,Melanie3-12/+111
hardcoded approach disabled the use of non-core dwell tracking modules.
2012-10-21SQLite DB: some values of land data will be not saved / loadedPixelTomsen2-5/+21
http://opensimulator.org/mantis/view.php?id=6370 Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-10-20Fix: invinite loading for Viewer3 : parcelinfo request of traffic-value ↵PixelTomsen2-125/+272
(implementation of dwell-value in LandData + eventhandler, return always 0); source-formatting of LandData Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-10-20Add CLICK_ACTION_ZOOMBlueWall1-0/+1
Add support for V2/3 CLICK_ACTION_ZOOM to llSetClickAction
2012-10-20minor: remove unnecessary bit of method doc from ↵Justin Clark-Casey (justincc)1-3/+0
OdePrim.BadMeshAssetCollideBits that monodevelop inserted automatically
2012-10-20Fix minor issues from commit 28483150Justin Clark-Casey (justincc)1-12/+17
Fix spelling of collide, change to more self-documenting property BadMeshAssetCollideBits, add method doc, change to private to reduce code analysis complexity
2012-10-20minor: Rename assetCache constructor param in UUIDGatherer to assetService ↵Justin Clark-Casey (justincc)1-2/+2
which is what it is.