aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Fix a regression in the last few scene commands changes where setting these ↵Justin Clark-Casey (justincc)2013-01-111-52/+2
| | | | | | | via the viewer estate dialog stopped working. Forgot to register the new interface. Also removes some code which got included by adpating an existing module.
* Add "debug scene get" console command to list current scene optionsJustin Clark-Casey (justincc)2013-01-101-2/+43
|
* Move scene debug commands into separate module. Command changes from "debug ↵Justin Clark-Casey (justincc)2013-01-105-138/+350
| | | | scene <key> <value>" to "debug scene set <key> <value>" to accomodate future settings
* refactor: route the final scene backup through the same code that handles ↵Justin Clark-Casey (justincc)2013-01-101-10/+1
| | | | | | periodic backup This is rather than making unnecessary duplicate checks that the SOG later performs again.
* minor: Capitalize GroupsModule command categoryJustin Clark-Casey (justincc)2013-01-101-1/+1
|
* minor: add missing newline to "debug scene" console commandJustin Clark-Casey (justincc)2013-01-101-1/+1
|
* Remove unimplemented "debug teleport" console commandJustin Clark-Casey (justincc)2013-01-101-2/+0
|
* Add "debug scene pbackup true|false" console command. This enables or ↵Justin Clark-Casey (justincc)2013-01-102-13/+36
| | | | | | disable periodic scene backup. For debug purposes. If false, scene is still saved on shutdown.
* On baked texture save, replace any HG ID with an ordinary asset ID so the ↵Justin Clark-Casey (justincc)2013-01-101-0/+3
| | | | HGAssetBroker doesn't try to save back to the avatar's originating region
* revert accidental change to MemoryWatchdog stat calculation in previous b1b4687Justin Clark-Casey (justincc)2013-01-101-1/+1
|
* Add "show script timers" command to show script timers. For debug purposes.Justin Clark-Casey (justincc)2013-01-104-36/+82
| | | | Also, "show sensors" changes to "show script sensors".
* Add "show sensors" command to show script sensor information for debug purposes.Justin Clark-Casey (justincc)2013-01-103-32/+153
|
* minor: Remove unnecessary commented out code from last commit c28a2f05 and ↵Justin Clark-Casey (justincc)2013-01-091-4/+1
| | | | fix up code comment
* minor: make spacing consistent in console help outputJustin Clark-Casey (justincc)2013-01-091-3/+6
|
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2013-01-093-39/+45
|\
| * BulletSim: Fix hover height (boats float at the correct level).Robert Adams2013-01-082-8/+12
| | | | | | | | Fix problem of vehicles going crazy when backing up.
| * minor: Fix command match of "debug script" command to "debug scripts" to ↵Justin Clark-Casey (justincc)2013-01-091-1/+1
| | | | | | | | match other scripts commands (and it's own short help text)
| * minor: Allow "script *" console commands to take multiple script item idsJustin Clark-Casey (justincc)2013-01-091-30/+32
| |
* | Revert "Prevent empty Anim Packs"Melanie2013-01-091-12/+0
| | | | | | | | This reverts commit 5561333668f61f043cdfc0733a4eb50a1bcfb14e.
* | Revert "Fix sequence id fr default anim"Melanie2013-01-091-1/+1
|/ | | | This reverts commit a775931a0cec9f65748c6e20dd2695edcbe21b7f.
* Fix sequence id fr default animMelanie2013-01-081-1/+1
|
* Prevent empty Anim PacksMelanie2013-01-081-0/+12
|
* Add the new UpdateAgentInformation cap to make maturity on more recent viewersMelanie2013-01-081-2/+20
| | | | work.
* BulletSim: improve vehicle angular banking and deflection computation. ↵Robert Adams2013-01-071-19/+18
| | | | Rotate angular correction forces to be world relative rather than vehicle relative.
* BulletSim: add function to push avatar up when hitting stairs.Robert Adams2013-01-075-27/+119
| | | | | | | | | | It looks like BulletSim and ODE rely on penetration correction to cause the avatar to move up and thus allowing walking up stairs. Object penetration was minimized for walking and flying (so one doesn't go through walls) and this stopped stairs from working. This commit introduces avatar movement code to check for collisions at the feet while walking and attempts to raise the avatar for the steps. Not yet perfect but movement is better.
* BulletSim: fix exception when re-creating the terrain when loading an OAR fileRobert Adams2013-01-071-0/+2
|
* BulletSim: comments and removing small compile errors introduced in last commit.Robert Adams2013-01-063-9/+3
|
* BulletSim: update DLLs and SOs with better debugging output.Robert Adams2013-01-068-12/+151
| | | | | Add definition of hand crafted avatar mesh. Not used yet. Comments and cleanup.
* BulletSim: fix problem where mesh shapes were physically just their bounding ↵Robert Adams2013-01-041-0/+1
| | | | box and not the complete mesh. Fill mesh physical objects are back.
* BulletSim: implement llMoveToTarget by adding PIDActive, etc.Robert Adams2013-01-042-50/+33
| | | | | Implementation of non-vehicle hover but haven't tested it a lot. Update TODO list.
* BulletSim: add some features to the PID motor to make it more flexible.Robert Adams2013-01-041-9/+18
|
* BulletSim: convert avatar movement from a force to an impulse. Shouldn'tRobert Adams2013-01-041-2/+2
| | | | change functionality but removes an oddity in computing the force.
* BulletSim: add initial implementation of llMoveToTarget and hover height.Robert Adams2013-01-041-10/+147
| | | | Not all there yet.
* BulletSim: reorganize motor code a little to pull together common functions.Robert Adams2013-01-041-18/+129
| | | | Add BSFMotor.
* BulletSim: add comments to force and impulse setting functionsRobert Adams2013-01-041-0/+8
| | | | so it is clear what Bullet is actually doing with the set values.
* BulletSim: fix problem where pre-step actions would not replacedRobert Adams2013-01-041-0/+4
| | | | by new registrations thus causing multiple instances of an action.
* BulletSim: add ResetBroadphasePool and ResetConstraintSolver diagnosticRobert Adams2013-01-048-50/+73
| | | | | functions. If values set from console, the functions are called. Looking for why the collision pools fill up with unnecessary stuff.
* minor: Rename BUILDING.txt to BUILDING.md in distbin distribution nant targetJustin Clark-Casey (justincc)2013-01-041-1/+1
|
* Set default particle burst count to 1 instead of 0 in any set particle ↵Justin Clark-Casey (justincc)2013-01-041-3/+3
| | | | | | system script call that does not have an empty list. As per http://opensimulator.org/mantis/view.php?id=6353
* Fix build break caused by missing ) from dce2809.Justin Clark-Casey (justincc)2013-01-041-1/+1
| | | | Was hand-typing in a line of code I had tested before but not retested this time
* Automatically grant sit-related llRequestPermissions() for subsequent ↵Justin Clark-Casey (justincc)2013-01-041-15/+1
| | | | | | avatars sitting on the same scene obejct, instead of wrongly popping up request permissions dialog. Resolves http://opensimulator.org/mantis/view.php?id=6478
* refactor: simplify llGetNumberOfPrims() to return prim count + sitting ↵Justin Clark-Casey (justincc)2013-01-041-7/+1
| | | | avatar count rather than independently inspecting every scene presence
* Fix llGetLinkName() to return the name of the last avatar sat as the last ↵Justin Clark-Casey (justincc)2013-01-041-41/+35
| | | | | | link number. As per http://wiki.secondlife.com/wiki/LlGetLinkName
* Fix llGetLinkKey() to return the last sat avatar as the last link number.Justin Clark-Casey (justincc)2013-01-043-63/+99
| | | | | | | | As per http://wiki.secondlife.com/wiki/LlGetLinkKey This is done by keeping a scene-object wide list of sitters. This also fixes bugs in this function where linknums 0 and 1 weren't treated properly if there were sitting avatars on a single prim. This also fixes a minor race condition for multiple concurrent sitters on a prim with no current sitters by locking on the object-wide list rather than individual sop lists Addresses http://opensimulator.org/mantis/view.php?id=6477
* minor: Add some doc to the extremely unhelpful 'fudge....' comment as to why ↵Justin Clark-Casey (justincc)2013-01-031-1/+4
| | | | we're deselecting the prim in code before scheduling an update on attachment
* Fix problem where object attached from ground often does not get attached ↵Justin Clark-Casey (justincc)2013-01-031-9/+1
| | | | | | | | properly. It seems this is happening because we send a kill for objects that are selected when attached. A code comment says that this is to get the client to deselect it, but v3 and v1 clients do this just fine without the kill. Aims to address http://opensimulator.org/mantis/view.php?id=6456
* Scipt modules get the OpenMetaverse types, so lists passed as arguments to ↵SignpostMarv2013-01-031-2/+27
| | | | script module functions which then later call LSL_Types.list.GetVector3Item() or LSL_Types.list.GetQuaternionItem() methods would then trigger an InvalidCastException, which is now avoided.
* Improving documentation of AttachToAvatar and GetLine methods in LSL_Api.cs ↵SignpostMarv2013-01-031-8/+15
| | | | based on doxygen error output
* updating documentation in SampleMoneyModule based on doxygen error log ↵SignpostMarv2013-01-031-6/+8
| | | | output; changing an xml-style hint to a uri-style hint in the class summary, improving documentation of Initialise method and removing a superfluous parameter, improving documentating of ClientClosed method and documenting an omitted parameter
* updating config properties added during upgrade process, adding error log ↵SignpostMarv2013-01-032-8/+10
| | | | file to doxygen config, adding doxygen output directory & error log to .gitignore