| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
| |
Clode cleanup and removal of commented stuff in ScriptManager.
|
|
|
|
|
|
|
|
| |
DNE and move all of DNE into the DotNetEngine directory. Remove references
that would cause the script runtime to load the entire engine + scene into
each script appdomain. This might help DNE memory consumption.
|
| |
|
|
|
|
|
|
|
|
|
| |
The binaries are still different, but that is only a small step away now.
The OSSLPrim has been removed. This commit will breal all scripts
using Prim.Scale(), etc, syntax. It was not secure and will have to
be brought back in another form.
|
| |
|
|
|
|
|
|
| |
Add a reference for Windows builds
|
|
|
|
|
|
|
|
|
|
| |
Scene. Make the script engines check that the engine name in the
//Engine:language comment is a valid engine and treat it as a normal
comment if it's not.
//DotNetEngine: needs to be written as //ScriptEngine.DotNetEngine: now, since
that is it's real internal name. //XEngine: still works
|
|
|
|
|
|
|
|
| |
The entire LSL API is now in the single, shared file
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs
This is for both engines. The OSSL function are still separate.
|
|
|
|
|
|
|
|
| |
and makes it use a common set of types in both engine. Fixes the issues with
running both engines and HTTP requests / listens / timers etc..
Also fixes a couple of minor Scene issues and a CTB by nullref.
|
|
|
|
|
|
|
|
|
| |
Under both DotNetEngine and XEngine, if an agent's UUID
is passed as the parameter to llGetObjectMass(),
it throws an exception.
|
|
|
|
|
|
|
| |
LSL implementation files. Rename lots of stuff in XEngine for the same
reason. Move methods between interfaces. Just refactor stuff.
|
| |
|
|
|
|
|
|
| |
code merging and transition to Shared/
|
| |
|
|
|
|
|
|
| |
new style of parameter passing, using the IEventReceiver interface.
|
| |
|
|
|
|
|
|
|
|
| |
of the types, located in OpenSim/Region/ScriptEngines/Shared/LSL_Tyoes.cs
Also changes the compiler in DotNetEngine to use that. You _will_ need to
let your region recompile all your scripts!
|
| |
|
|
|
|
|
|
|
|
| |
Thank you, tyre, for a patch that refactors LSL to use a unified set of
method signatures and type names, reorders methods and removes unused
and adds new method stubs.
|
|
|
|
|
|
| |
it was meant to. No functional changes, just better code
|
|
|
|
|
|
|
| |
* Exceptions can thrown by llGetOwnerKey()
* Thanks idb
|
|
|
|
|
|
|
| |
the language specifier. Makes language specifiers work again with
script engine specifiers.
|
| |
|
|
|
|
|
|
|
| |
//XEngine: or //DotNetEnine: , optionally followed by a language
like //XEngine:lsl, and it will be run on the chosen engine.
|
|
|
|
|
|
|
|
|
| |
ordinary region modules and are able to coexist in one instance.
See http://opensimulator.org/wiki/ScriptEngines for details. There were
changes to OpenSim.ini.example, please note DefaultScriptEngine.
Also see the User docs and FAQ on the Wiki. Default is DotNetEngine.
|
| |
|
|
|
|
|
|
| |
The constants for llGetParcelDetails were missing
for DotNetEngine and XEngine.
|
|
|
|
|
|
|
| |
Thank you, idb, for a patch that fixes an overflow issue in casting
string -> int for both engines, and adds tests!
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Guard against NaN being returned from llRotBetween. Return a zero rotation
if the result is NaN.
|
|
|
|
|
|
|
| |
* Update llGetNumberOfNotecardLines() and llGetNotecardLine() to use dataserver on dotnetengine
* Thanks M.Igarashi
|
|
|
|
|
|
|
| |
* Attached patch implements llRequestAgentData for DotNetEngine. (It already is implemented in XEngine.)
* Thanks Y. Nitta
|
|
|
|
|
|
|
| |
* 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!
|
|
|
|
|
|
|
| |
Applying DotNetEnine part of this patch. Thank you, nlin!
Corrects ad hoc key list comparison.
|
|
|
|
|
| |
adds the new function osTeleportAgent().
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
after using llTakeControls my sim receives about 200 messages per second,
l of which get queued , this could be because there is no lag as the viewer
and sim are on the same computer. The patch I have included checks to see if
the "Changed" param is 0 then searches the EventQueue for Control messages
being sent to the same localid, if it finds a message already in the Queue
and Changed==0 then the new message is only notifing you the key is being held,
since there is already a message the new one isnt needed so it isnt added
to the queue.
|
|
|
|
|
|
| |
Added clamping to 0.0 - 1.0 for R, G, B, and A.
|
| |
|
|
|
|
| |
script.
|
|
|
|
|
|
|
| |
Read animation data from avataranimations.xml to allow default animations
to be started and stopped by name from scripts.
|