aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Replaced throwing exceptions with calls to Error()David Rowe2014-01-311-7/+9
|
* Replaced llSay()ing LSL errors with calls Error()David Rowe2014-01-311-9/+8
|
* Replaced LSLError() calls with calls to Error()David Rowe2014-01-311-15/+10
|
* Updated "deprecated" LSL errors to use Deprecrated()David Rowe2014-01-311-19/+11
|
* Updated "not implemented" LSL errors to use NotImplemented()David Rowe2014-01-311-4/+3
|
* Updated ShoutError() calls to use new LSL error methodsDavid Rowe2014-01-311-38/+27
|
* Updated methods for handling LSL script errors, deprecated, and not implementedDavid Rowe2014-01-311-7/+58
|
* Record whether login to home fails because no home set (UUID.Zero) or region ↵Justin Clark-Casey (justincc)2014-01-301-7/+22
| | | | not found.
* Add "show grid user" robust/standalone console command for debug purposes.Justin Clark-Casey (justincc)2014-01-301-0/+33
| | | | | Shows all data on entries which match or start with a given ID. This would usually be a UUID.
* Added osGetRegionSize(), which returns the region size in meters and ↵Oren Hurvitz2014-01-283-0/+29
| | | | recognizes megaregions
* Convert tabs to spaces from previous commit 8c2b41b01Justin Clark-Casey (justincc)2014-01-281-27/+27
|
* Make inidirectory files supercede distro filesDev Random2014-01-271-27/+49
|
* minor: remove long unused state queue from "show queues" console reportsJustin Clark-Casey (justincc)2014-01-241-5/+3
|
* minor: correct the usage statement on the "show image queues" console ↵Justin Clark-Casey (justincc)2014-01-241-1/+1
| | | | command - should not have been "image queues show"
* Skip IClientAPIs that don't implement IStatsCollector (such as NPCAvatar) ↵Justin Clark-Casey (justincc)2014-01-241-15/+15
| | | | | | from the "show queues" console report to stop screwing up formatting. "show pquques" already did this
* Properly dispose of drawing objects to reduce/stop memory leakage on ↵Justin Clark-Casey (justincc)2014-01-244-319/+343
| | | | generating map tiles with the MapImageModule and TexturedMapTileRenderer (the current defaults)
* Add "generate map" console command to allow manual regeneration and storage ↵Justin Clark-Casey (justincc)2014-01-232-1/+19
| | | | | | of maptiles Primarily for test purposes though could be useful if one prefers to manually update the map tile
* Stop exceptions being generated on agent connection if a telehub object has ↵Justin Clark-Casey (justincc)2014-01-207-40/+186
| | | | been deleted or has no spawn points.
* Following on from 50ea2e0, only fetch scene presence for check if ↵Justin Clark-Casey (justincc)2014-01-181-17/+38
| | | | lightscript function has failed initial IsEstateManagerOrOwner() check
* Fixed: Windlight functions caused an error if called when the script's owner ↵Oren Hurvitz2014-01-181-3/+9
| | | | isn't in the scene
* Revert "Fixed: Windlight functions caused an error if called when the ↵Justin Clark-Casey (justincc)2014-01-171-9/+3
| | | | | | | | script's owner isn't in the scene" This reverts commit 39e5785c0f5bfa9fce2549757ac895920c88825a. Did not mean to apply this yet.
* minor: Add Ai Austin to additional OpenSim contributors by request as he has ↵Justin Clark-Casey (justincc)2014-01-171-8/+3
| | | | added config corrections and does extensive liaison with other projects
* Fixed: Windlight functions caused an error if called when the script's owner ↵Oren Hurvitz2014-01-171-3/+9
| | | | isn't in the scene
* Actually put IsChildAgent = true inside the lock, otherwise there is still a ↵Justin Clark-Casey (justincc)2014-01-161-1/+3
| | | | small window for race conditions on duplicate CompleteMovement calls
* Prevent duplicate invocations or race dontision in SP.CompleteMovement()Justin Clark-Casey (justincc)2014-01-162-56/+65
| | | | | This can happen under poor network conditions if a viewer repeats the message send If this happens, physics actors can get orphaned, which unecessarily raises physics frame times
* Can delete the Offline Messages sent to/from a user.Oren Hurvitz2014-01-165-0/+44
| | | | This is useful if the user is deleted.
* In the offline message table, store the sender.Oren Hurvitz2014-01-164-5/+16
| | | | This data is useful for preventing abuse (e.g., someone who sends too many messages), or for deleting message if their sender has been deleted.
* Fixed offline IMOren Hurvitz2014-01-161-8/+4
|
* Remove old IInterRegionComms and references. This hasn't been used since ↵Justin Clark-Casey (justincc)2014-01-164-127/+4
| | | | 2009 and was superseded by ISimulationService
* minor: Add David Rowe to ctrlaltdavid handle by requestJustin Clark-Casey (justincc)2014-01-141-1/+1
|
* Allow Boolean nodes in XML to be specified as "0/1". AuroraSim does that.Oren Hurvitz2014-01-112-2/+4
|
* In library inventory, correct asset id for llSay example scriptJustin Clark-Casey (justincc)2014-01-102-4/+4
| | | | | From http://opensimulator.org/mantis/view.php?id=6917 Thanks to FreakyTech for this spot.
* minor: Add ctrlaltdavid to contributors listJustin Clark-Casey (justincc)2014-01-101-0/+1
|
* Fixed llTextBox error message textDavid Rowe2014-01-101-1/+1
|
* Dynamically adjust to the number of visual params sent.Melanie2014-01-101-1/+1
|
* When moving the root prim of an attachment: a) Change the attach position; ↵Oren Hurvitz2014-01-101-5/+5
| | | | b) Move the other prims in the reverse direction to compensate
* When creating a coalesced object, set its permissions to the ↵Oren Hurvitz2014-01-101-7/+16
| | | | lowest-common-denominator of all the sub-objects
* When creating a coalesced object, set its Creator ID if all the objects have ↵Oren Hurvitz2014-01-101-4/+15
| | | | the same creator
* Refactored: use a single function to apply an object's folded permissions to ↵Oren Hurvitz2014-01-106-39/+48
| | | | its main permissions
* Refactored setting permissions when rezzing items: use the same function ↵Oren Hurvitz2014-01-105-94/+160
| | | | | | when rezzing from user inventory and prim inventory. Also, fixed a bug: when rezzing a coalesced object from a prim's inventory, apply the coalesced object's name and description only to the first sub-object; not to all the objects in the coalescence. (This was already done correctly when rezzing from a user's inventory.)
* If an agent is sitting, then do send the rotation in the agent update ↵Justin Clark-Casey (justincc)2014-01-082-8/+19
| | | | | | | | instead of zeroing it to resolve mouselook camera problems Addresses http://opensimulator.org/mantis/view.php?id=6892 Thanks to tglion for this spot. This resolves a recent regression from 17b32b764acd815400d9eb903aaec6dcebd60ac7
* Add lsl arg syntax checking for control eventJustin Clark-Casey (justincc)2013-12-212-9386/+9716
|
* refactor: rename internal lsl parser VectorDeclaration -> VecDeclaration for ↵Justin Clark-Casey (justincc)2013-12-211-7907/+7903
| | | | consistency
* Add arg checking for at_target lsl eventJustin Clark-Casey (justincc)2013-12-212-8828/+9158
|
* Add lsl event arg checking for at_rot_targetJustin Clark-Casey (justincc)2013-12-212-8915/+9306
|
* Add lsl event argument checking for attach and on_rezJustin Clark-Casey (justincc)2013-12-212-8593/+8946
|
* Add missing viewer param elements for butt and breast physics.Justin Clark-Casey (justincc)2013-12-191-1/+75
| | | | | Patch from http://opensimulator.org/mantis/view.php?id=6864 except with tabs replaced by spaces Thanks cinderblocks!
* Create regression test TestSendAgentGroupDataUpdate() for groups agent data ↵Justin Clark-Casey (justincc)2013-12-184-8/+71
| | | | sending
* Extend TestLlGetNotecardLine() regression test to contain chars that are two ↵Justin Clark-Casey (justincc)2013-12-141-1/+1
| | | | bytes in utf8
* ParseNotecardToList() returned data past end of notecard text (mantis #6881).Kevin Cozens2013-12-141-15/+15
|