| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
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.
|
|
|
|
|
|
|
| |
This allows cross-api method calls on the implementation and also allows
"Meta APIs" that only provide common functionality to other APIs
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
| |
functions return CLI strings, which, in the case of lists, don't
get wrapped. Therefore, the list had to be able to deal with
that CLI type here. The correct fix would be to change all LSL
function returns to LSL types.
|
|
|
|
|
|
| |
* leaving in the ones to do with ScriptBase since these actually indicate coding bugs that I don't have the time/brainpower to fix at the moment
|
| |
|
|
|
|
| |
means less code in this case)
|
| |
|
|
|
|
|
|
|
| |
does, but it seems every other function here has it, so it is probably
needed.
|
|
|
|
|
|
|
| |
Implement an osParseJSON method useful for handling simple JSON returns
from http requests. This will only work in C# at this point.
|
|
|
|
|
|
|
| |
Allow parsing of hexadecimal int constants from strings.
Also fixes a DBNull value in the touch type field crashing the sim
|
|
|
|
|
| |
Fix unreachable code due to typo in llDetectedGroup.
|
|
|
|
|
|
|
| |
osSetDynamicTextureData() produces error on console if
ExtraParams passed empty string
|
| |
|
|
|
|
|
| |
One member missing, so a portion is commented out.
|
| |
|
|
|
|
|
|
|
| |
Make CHANGED constants consistent with LSL, and consistent across the
code base
|
|
|
|
|
|
| |
Fix an invalid bounds check in Builtin_Commands
|
|
|
|
|
|
|
| |
variables to their initializer values, rather then zeroing them.
Also handles lists properly now.
|
| |
|
|
|
|
|
|
| |
same state
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
and llGroundContour in the last checkin and this replaces
them again in LSL_BuiltIn_Commands.cs.
|
| |
|
|
|
|
|
|
| |
llGroundContour into our Common/LS:L_BuiltIn_Commands
file.
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
| |
scriptsleep calls.
|
|
|
|
|
|
|
|
|
| |
duplicate delivery of state_entry if a region is restarted just after
saving the script. Changes script state saves to no longer abort long-
running event handlers. Queues the save instead. Adds shutdown handler
to save script state on irderly shutdown
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
inside our LSL-C# wrapper subroutines.
|
|
|
|
|
| |
calls from our LSL-C# wrappers.
|
| |
|
|
|
|
|
|
|
| |
Thank you, Xugu Madison and ChrisDown, for a patch that
fixes linux filename extensions from .Xml back to .xml
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
|
|
| |
Solves SetPrimitiveParams, Revolutions not calculated
properly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|