| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Patch for new scripting method osParseJSON.
also, a couple of warning bugs killed.
|
| |
|
|
|
|
|
|
|
|
| |
Correct a condition where a prim is linked before it has been persisted
for the first time and is then persisted through it's former SOG with
a bad offset position.
|
| |
|
|
|
|
|
|
|
| |
Correct color handling functions to no longer return the inverse color.
Remove pointless * 256 / 256 legacy constructs.
|
|
|
|
|
|
|
|
| |
XEngine: Change a number of methods to use the new link part method.
Fix ALL_SIDES for llSetColor, llSetTexture, llSetAlpha, llSetPrimitiveParams,
llGetPrimitiveParams(PRIM_TEXTURE, PRIM_COLOR).
|
|
|
|
|
|
|
| |
XEngine: Introduce a common method to determine link parts to work on.
Fix llSetLinkColor method.
|
|
|
|
|
|
| |
to send a full update and do a persistence save.
|
|
|
|
|
|
|
|
|
| |
XEngine fixes: prevent queue overruns, prevent spamming when no key
is down. Release controls when conflicting permissions are requested
or permissions are refused later. Release when prim or script are deleted.
Fixes Scene script instance deletion semantics.
|
|
|
|
|
|
|
| |
* Fix/implement LSL group-related functions llDetectedGroup, llSameGroup
* Thanks nlin
|
| |
|
|
|
|
|
|
|
| |
* LSL Conformance: llSetPayPrice should accept more than four arguments in list
* Thanks kcozens!
|
|
|
|
|
|
|
| |
* Attached patch implements LSL llGetAgentSize() for DotNetEngine and XEngine.
* Thanks Y. Nitta!
|
|
|
|
|
|
|
| |
* Implementation of LSL llBreakLink and llBreakAllLinks
* Thanks Y. Nitta!
|
|
|
|
|
|
|
| |
* llGround causes Array out of bounds exception in KanEd#11 script
* Thanks Y. Nitta!
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Now each function can be allowed, subject to threat level, disabled,
or restricted to certain UUIDs.
|
| |
|
|
|
|
|
|
| |
in the XEngine section
|
|
|
|
|
|
|
| |
Adds the fix from Mantis #2197 in it's new form.
Stage one of the scripting security changes, more to come.
|
|
|
|
|
| |
adds the new function osTeleportAgent().
|
| |
|
|
|
|
|
|
| |
Prevent illegal color values from being set.
|
|
|
|
|
|
| |
Added clamping to 0.0 - 1.0 for R, G, B, and A.
|
|
|
|
| |
Remove some old dead code.
|
|
|
|
|
|
|
| |
Read animation data from avataranimations.xml to allow default animations
to be started and stopped by name from scripts.
|
|
|
|
|
|
| |
Thank you, tyre, for a patch that fixes the sender UUID in scripted IM
|
|
|
|
|
|
|
|
|
| |
works. Also makes llGetFreeMemory return the constant 16384.
LLGetFreeMemory is useless in SL, as it never goes up, only down.
So, the only thing it is used for, in practice, is to detect an imminent
stack/heap collision, a danger we don't have.
|
|
|
|
|
|
|
|
|
| |
Remove some unused osFunctions that were left in the LSL function
file from the separation way back when. Inline the osSetParcelMediaURL
code to get rid of the osFunction. Really need to add a way for one API
to call another.
|
|
|
|
|
| |
Fix unreachable code due to typo in llDetectedGroup.
|
|
|
|
|
|
|
| |
osSetDynamicTextureData() produces error on console if
ExtraParams passed empty string
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
touch, pay, etc script states correctly.
|
|
|
|
|
|
| |
new method for testing
|
|
|
|
|
|
|
|
|
| |
Thank you, ralphos, for a patch the adapts llSetColor and friends to
a change in the underlying types.
Also, thank you for a much cleaner way of casting types out of
lists, which I will adopt throughout.
|
|
|
|
|
|
| |
Adjust XEngine llSetAlpha to a change in the underlying type
|
|
|
|
|
|
| |
Fix a number of casting issues in XEngine's API
|
|
|
|
|
|
|
|
|
| |
Floating text, Rotation, Texture animation, Particle System
This will make "Eye Candy" scripts work without modification in
XEngine. The use of the CHANGED_REGION_RESTART hack is no longer
needed. Implemented in MySQL only, hovertext also in SQLite.
|
| |
|
| |
|
|
|
|
|
|
|
| |
- these functions are orthogonal to each other and the core implementation is in GroundSlope.
* Please note that this implementation has not been mathematically verified to be correct-as-described, it is probable that this implementation may produce differing results to Linden Lab. Testing (and test data) would be appreciated.
|
|
|
|
|
|
| |
Thank you, HomerHorwitz, for a patch that fixes llGetKey()
|
|
|
|
|
|
|
| |
both llWind and llCloud and remove the
"NotImplemented" status leaving us with about
74 "NotImplemented" LSL-C# wrapper functions.
|
|
|
|
|
|
|
| |
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle.
* This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big!
* Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Types extracted from a LSL_Types.list have to be down-cast initially
to the exact type of value type object that the Object actually is.
This would make for very cumbersome, ugly code when extracting list
parameter items in ll functions where a few implicit conversions
should be applied such as key -> LSLString and LSLInteger -> LSLFloat
(but not LSLFloat -> LSLInteger). This patch adds a set of GetXXXItem
member functions to the LLS_Type.list class, where XXX is the name
of the LSL_Type to be extracted: LSLFLoat, LSLInteger etc. All take
a single, int parameter that is the item number to be extracted.
|
|
|
|
|
|
|
|
| |
llParseString functions throw exception when passed a
list of variables and this patch adds logic to solve
this to LSL_Api.cs
|