aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* added llGetEnv() implementationFreaky Tech2015-03-033-6/+39
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected osMakeNotecard(string data) text length was calculated wrong. The ↵Freaky Tech2015-03-031-5/+15
| | | | | | Linden text format defines a byte count in that format. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* removed replacement texture in UDP Texture code. The replacement texture ↵Freaky Tech2015-03-032-19/+2
| | | | | | introduces false data into viewer cache. Removing that decreases the necessity for clearing the viewer cache. The viewer knows with ImageNotInDatabase that it is missing and can therefore know what to do about it a lot better than the sim does. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* changed llGetMemoryLimit to return 65536 as for Mono LSLFreaky Tech2015-03-031-2/+2
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected memory info for scriptsFreaky Tech2015-03-031-6/+6
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected llGetStartParameter according to ↵Freaky Tech2015-03-031-0/+2
| | | | | | http://wiki.secondlife.com/wiki/LlGetStartParameter Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected handling when XML parsing in Presence Connector failsFreaky Tech2015-03-031-0/+1
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* XML should not contain any BOM. Disabled BOM generation in BaseHttpServerFreaky Tech2015-03-031-1/+2
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected llResetScript according to description within LSL wikiFreaky Tech2015-03-031-1/+2
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected response when a not existing folder is requested by a viewer in ↵Freaky Tech2015-03-031-9/+28
| | | | | | that case the response has to report it as bad_folders with uuid instead of returning some dummy Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* increased IPv4 TTL of LLUDP SocketsFreaky Tech2015-03-031-0/+11
| | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Fix erratic Npc movementBlueWall2015-03-021-1/+1
|
* Add FreakyTech to CONTRIBUTORS.txtBlueWall2015-03-021-0/+1
|
* added missing senderId in GiveInventoryFolder this little mistake prevented ↵Freaky Tech2015-03-021-1/+1
| | | | | | passing on folders for HG visitors Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Handle kick user from estate management toolsBlueWall2015-03-011-0/+14
|
* minor: Remove mono compiler warnings from EstateDataConnectorJustin Clark-Casey (justincc)2015-02-281-2/+0
|
* Correct PRIM_TEXT return value from trans to alpha.Magnuz Binder2015-02-281-1/+1
|
* Use using constructs on disposable io objects in LLRaw to ensure they are ↵Justin Clark-Casey (justincc)2015-02-281-113/+111
| | | | always closed even if an exception is thrown.
* Add Magnuz Binder to CONTRIBUTORSJustin Clark-Casey (justincc)2015-02-281-0/+1
|
* Add OpenSim.Framework using statement necessary to get previous fad4d4dc to ↵Justin Clark-Casey (justincc)2015-02-281-0/+1
| | | | compile.
* Permit loading of LLRAW files bigger than 256x256 by calculating size based ↵Magnuz Binder2015-02-281-1/+9
| | | | on file size rather than assuming 256x256, same as for RAW32.
* Comment out now unused and not properly working private SP.m_leftButtonDown ↵Justin Clark-Casey (justincc)2015-02-271-2/+7
| | | | with a comment on how probably to implement it properly if it is needed in the future
* Don't slow down avatar walk speed if camera is changed (e.g. by holding down ↵Justin Clark-Casey (justincc)2015-02-271-28/+12
| | | | | | | | lmb on an avatar and moving the mouse). Does this by not applying unwanted direction components to the avatar self movement calculation (exception is flying in mouse look). Matches behaviuor on linden lab grid Addresses http://opensimulator.org/mantis/view.php?id=6835
* Don't slide crouching avatar when camera is panned around them with left ↵Justin Clark-Casey (justincc)2015-02-271-1/+3
| | | | | | mouse button This matches linden lab grid behaviour
* Revert "Adding dynamic ossl permission control"BlueWall2015-02-274-119/+0
| | | | | This reverts commit a3681f3052fb5e98e31e7051329a5b748a8bdd8d until further testing. Jenkins now fails ossl tests.
* Adding dynamic ossl permission controlBlueWall2015-02-274-0/+119
| | | | | | | | | | | Add permission by identifying uuid (owner/creator/group) and function. Revoke permission in the same manner. Permission adjustments immediately effect running scripts ability to call os functions. osGrantScriptPermissions(UUID key,string function) Threat Level Severe osRevokeScriptPermissions(UUID key,string function) Threat Level Severe work sponsored by: Rage
* When an avatar is walking across a region border, force the first ↵Justin Clark-Casey (justincc)2015-02-261-5/+18
| | | | | | | AgentUpdate received on the new root agent to update movement parameters. This prevents the avatar from drifting in its last direction of travel if a movement key was released at certain moments in the cross. Relates to http://opensimulator.org/mantis/view.php?id=7435
* minor: In HGAssetMapper, don't complain on seeing an XmlDeclaration as we ↵Justin Clark-Casey (justincc)2015-02-251-0/+5
| | | | | | know that we not using those in transformation. Relates to http://opensimulator.org/mantis/view.php?id=7447
* Fix bug where the uuid gatherer was not inspecting UUIDs for items in an ↵Justin Clark-Casey (justincc)2015-02-253-39/+65
| | | | | | | | embedded object's inventory. Added regression test for this case. Likely a regression since 08606ae4 (Thu Jan 8 2015) Relates to Mantises 7439, 7450 and possibly others.
* Reduce coupling in regression test task inventory creation methods to make ↵Justin Clark-Casey (justincc)2015-02-2511-45/+82
| | | | them usable in tests with no scene present
* On shutdown (job engine stop), don't allow the ObjectDisposedException on ↵Justin Clark-Casey (justincc)2015-02-251-2/+13
| | | | | | BlockingCollection.Take() to propogate if the running thread checked IsRunning before the stop thread set it and disposed of the canellation source. Looks to address http://opensimulator.org/mantis/view.php?id=7453
* llLookAt(): use non-physical rotation if host prim is a physical attachmentdahlia2015-02-241-1/+1
|
* BulletSim: update the OSX BulletSim binary to the latest sources inRobert Adams2015-02-211-0/+0
| | | | opensim-libs.
* Fix cross-grid inventory delivery notifications, fixes ↵BlueWall2015-02-211-0/+1
| | | | http://opensimulator.org/mantis/view.php?id=7113
* In HGAssetMapper.RewriteSOP(), don't explicitly end the document.Justin Clark-Casey (justincc)2015-02-211-2/+0
| | | | | | The document here has no <?xml declaration. Though ideally it may be present, in practice it has not been added as the data here is embedded within an asset On Mono 3.2.8 and probably other versions, calling WriteEndDocument() without a declaration does nothing. On Windows .NET, the same operation throws a "Document does not have a root element" exception which may be contributing to Mantis 7397 and possibly 7439
* If HGAssetMapper.PostAsset fails then be more explicit about the uuid, type, ↵Justin Clark-Casey (justincc)2015-02-191-2/+27
| | | | size and base asset uuid of the failure for debugging purposes.
* Make any exception that gets to LLClientView.ProcessSpecificPacketAsync() ↵Justin Clark-Casey (justincc)2015-02-191-3/+4
| | | | tells us the exception type as well as the message and stacktrace details.
* Add the type of the unrecognized node to the HG asset mapping error message ↵Justin Clark-Casey (justincc)2015-02-191-1/+3
| | | | in TransformXml()
* minor: Add explanation that [Startup] CombineContiguousRegions should be ↵Justin Clark-Casey (justincc)2015-02-191-1/+2
| | | | false for varregions.
* Comment out unnecessary "Region Found!" alert message when searching mapdahlia2015-02-181-2/+3
|
* Add NaN and Infinity tests for SOP Velocity and Acceleration setters.dahlia2015-02-162-5/+29
|
* Use a boolean flag to signal lookat is running instead of ↵dahlia2015-02-161-4/+10
| | | | Quaternion.Identity so it can be a valid target orientation
* Filter NaN and Infinity values at SOP AngularVelocity setterdahlia2015-02-161-1/+6
|
* BulletSim: bring the BulletSim dll's and so's up to date withRobert Adams2015-02-134-0/+0
| | | | the sources in the 'libs' source repository. No functional changes.
* Add missing BSD headers to files in OpenSim/Framework/ServiceAuthJustin Clark-Casey (justincc)2015-02-133-3/+84
|
* If serialized scene object XML has a SavedScriptState with no UUID, then ↵Justin Clark-Casey (justincc)2015-02-111-1/+5
| | | | | | read past the innerXML instead of wrongly continously looping on the same element. Addresses http://opensimulator.org/mantis/view.php?id=7437
* Somewhat naive implementation of RotationalVelocity setter for ODE. Enables ↵dahlia2015-02-071-0/+9
| | | | llSetRotationalVelocity(), llTargetOmega(), llLookAt(), and probably a few more LSL features for physical objects in ODE.
* llLookAt() strength parameter should slow rotation as it is increased. ↵dahlia2015-02-071-2/+2
| | | | Thanks Vegaslan for pointing this out.
* llLookAt(): reduce and clamp strengh to reduce probability of overshootdahlia2015-02-071-2/+5
|
* llLookAt() and llRotLookAt(): all orientation updates now done via angular ↵dahlia2015-02-061-17/+28
| | | | velocity manipulation. Also correct some orientation glitches during interpolation.