aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Scripts no longer crash sim after 5 minutes (override ↵Tedd Hansen2007-08-251-0/+18
| | | | InitializeLifetimeService). Loading/Unloading of scripts are now handled in separate thread so server is no delayed because of this. Each script is loaded into a single AppDomain (temporary test for script unload, eats ~15KB more memory for each script). Unload of scripts has been verified to free up memory.
* Lowered priority of script threads. Executing state_entry() event on script rez.Tedd Hansen2007-08-231-9/+0
|
* More lsl functions (thanks to ldviopeng and wjordan!)Brian McBee2007-08-231-9/+40
|
* Some minor changes + krinkec's updates to ll* functions.Tedd Hansen2007-08-201-9/+66
|
* Moved in-AppDomain event execution from Script to ↵Tedd Hansen2007-08-181-3/+4
| | | | OpenSim.Region.ScriptEngine.Executor. Script no longer responsible for handling event calls to itself (and we can create reference cache in Executor).
* Script loads into separate AppDomain without errors. Events and llFunctions ↵Tedd Hansen2007-08-181-1/+1
| | | | not working yet.
* LSL Compiler now only referring required assemblies (DotNetEngine and ↵Tedd Hansen2007-08-181-90/+91
| | | | Common). Changed Vector and Rotation to custom types (stored in Common) that needs to be changed later. No longer using Axiom. Script support still broken.
* Working on AppDomains. Scripting is now officially broken. :]Tedd Hansen2007-08-181-2/+4
|
* Moved LSL_BuiltIn_Commands_Interface.cs to a separate library ↵Tedd Hansen2007-08-182-629/+472
| | | | (OpenSim.Region.ScriptEngine.Common). Fixed last compile error (forgot to include LSL_BuiltIn_Commands.cs).
* krinkec's updates to ll* interface and functions.Tedd Hansen2007-08-171-2/+2
|
* Bugfixes in LSL compiler. Changed most datatypes to int (instead of UInt32) ↵Tedd Hansen2007-08-151-236/+236
| | | | and double (instead of float).
* * Applying ckrinke's LSL baseclass changes (Thanks!)Adam Frisby2007-08-151-32/+60
|
* * New LSL functionsAdam Frisby2007-08-151-1/+1
| | | | | | | | + llAsin / llAcos + llMD5String + llModPow + llGetUnixTime
* krinkec's updates to ll* interface and functionsTedd Hansen2007-08-141-85/+178
|
* ScriptEngine: Some error handling, logs to loggerTedd Hansen2007-08-141-387/+0
|
* Common script for all objects (Default.lsl). ScriptEngine touch_start event ↵Tedd Hansen2007-08-131-2/+2
| | | | now works, but llSay only outputs to server console.
* krinkec's updates to ll* interface and functionsTedd Hansen2007-08-131-121/+261
|
* ScriptManager now uses LSL-compiler.Tedd Hansen2007-08-121-1/+1
| | | | | LSL_BuiltIn_Commands_TestImplementation.cs no longer needs updating.
* Code comments and cleanup, correct datatypes for key, vector, rotation, ↵Tedd Hansen2007-08-122-0/+755
(hopefully) reference to Axiom during compile, passing of BuiltIns during script load, BuiltIn interface added, etc etc