aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-08-25Added class for "long commands" (command that returns as event) with ↵Tedd Hansen1-0/+8
dedicated thread for processing. Added support for llSetTimerEvent(). Deleting old compiled scripts before new compile is attempted (avoids loading wrong script on compile error).
2007-08-23Lowered priority of script threads. Executing state_entry() event on script rez.Tedd Hansen1-1/+0
2007-08-22Added OnRemoveScript event handler to ScriptEngine. Fixed event queuing of ↵Tedd Hansen1-1/+1
empty objects crash.
2007-08-22(Untested) Scripts are individually loaded into objects (on rez), and event ↵Tedd Hansen1-16/+28
fired likewise. Bugfixes coming in next commit.
2007-08-18Scripts are working again. Scripts are now loaded into limited AppDomains ↵Tedd Hansen1-1/+1
(no security yet). *phew* that only took me 12 hours of coding...
2007-08-18Moved OpenSim.Region.ScriptEngine.Common.dll from bin\ScriptEngine\ to bin\ ↵Tedd Hansen1-2/+3
folder - hopefully solves compile problem on Linux.
2007-08-18LSL Compiler now only referring required assemblies (DotNetEngine and ↵Tedd Hansen1-6/+11
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.
2007-08-18Working on AppDomains. Scripting is now officially broken. :]Tedd Hansen1-4/+7
2007-08-17Removed RAIL test from startup for now...Tedd Hansen1-0/+1
2007-08-15Bugfixes in LSL compiler. Changed most datatypes to int (instead of UInt32) ↵Tedd Hansen1-0/+7
and double (instead of float).
2007-08-13Common script for all objects (Default.lsl). ScriptEngine touch_start event ↵Tedd Hansen1-1/+1
now works, but llSay only outputs to server console.
2007-08-12ScriptEngine successfully compiles script, we are now even further than LSO was.Tedd Hansen1-1/+18
Also added C# script support.
2007-08-12LSL BuiltIn implementation is now in Compiler\LSL\LSL_BaseClass. So users ↵Tedd Hansen1-2/+8
won't have to reference every internal command by object.
2007-08-12Code comments and cleanup, correct datatypes for key, vector, rotation, ↵Tedd Hansen1-2/+7
(hopefully) reference to Axiom during compile, passing of BuiltIns during script load, BuiltIn interface added, etc etc
2007-08-12Script now compiles unsuccessfullyTedd Hansen1-3/+3
(unknown datatypes, no references)
2007-08-12LSL ScriptEngine now only needs to inherit from BaseClass and we will be ↵Tedd Hansen1-0/+45
MUCH closer to complete LSL support than we were yesterday.