Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the new | Melanie Thielker | 2008-11-19 | 1 | -1/+4 |
| | | | | | | libOMV. | ||||
* | Reverting the texture sending patch and the new libOMV. This makes this | Melanie Thielker | 2008-11-19 | 1 | -4/+1 |
| | | | | | | | | | release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366 | ||||
* | Remove perts of jhurliman's AD security patch that had slipped in | Melanie Thielker | 2008-11-18 | 1 | -8/+0 |
| | |||||
* | * Update libOMV to r2359. This is necessary for the progressive texture patch | Justin Clarke Casey | 2008-11-17 | 1 | -1/+12 |
| | | | | | | | | * Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly | ||||
* | Remove another interface that is no longer needed | Melanie Thielker | 2008-09-26 | 1 | -1/+1 |
| | |||||
* | DNE code cleanups | Melanie Thielker | 2008-09-26 | 1 | -67/+39 |
| | |||||
* | After the last commit, the old Common assembly was still being loaded. | Melanie Thielker | 2008-09-26 | 1 | -2/+2 |
| | | | | | | | Removing it made DNE scripts crash. Fixed here. Now on to converge the compilers. | ||||
* | Yay! Common/ is gone! One API is achieved! | Melanie Thielker | 2008-09-26 | 1 | -1/+2 |
| | |||||
* | Add per-instance date to DNE to avoid serializing stuff 10 times a second. | Melanie Thielker | 2008-09-26 | 1 | -1/+2 |
| | | | | | | Clode cleanup and removal of commented stuff in ScriptManager. | ||||
* | Remove all the subclassing complexity and script server interfaces from | Melanie Thielker | 2008-09-26 | 1 | -0/+254 |
| | | | | | | | | 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. | ||||
* | Major reorganizing of DotNetEngine. Moved common script engine parts to ↵ | Tedd Hansen | 2008-01-12 | 1 | -238/+0 |
| | | | | | | | | ScriptEngine.Common, only .Net-specific code in DotNetEngine. AppDomains, event handling, event execution queue and multithreading, script load/unload queue, etc has been moved to ScriptEngine.Common. Loads of things has been put into interfaces instead of the specific class. We are now one step closer to ScriptServer, and its very easy to implement new script languages. Just a few lines required to make them a OpenSim script module with all its glory. | ||||
* | In this commit I am using an editor feature called "Save All" before I commit. | Tedd Hansen | 2007-12-30 | 1 | -0/+12 |
| | |||||
* | * Optimized usings | lbsa71 | 2007-10-30 | 1 | -25/+23 |
| | | | | | | * Shortened type references * Removed redundant 'this' qualifier | ||||
* | * Applied patch #418 : copyright-r2012.patch - some errors, but got most thru | lbsa71 | 2007-10-15 | 1 | -0/+28 |
| | |||||
* | Implemented: llSetText, llResetScript | Tedd Hansen | 2007-09-16 | 1 | -3/+3 |
| | | | | | Implemented: llHTTPRequest (queue, thread, etc -- but not actuall call) | ||||
* | Now loading "OpenSim.Region.ScriptEngine.Common.dll" into scripts AppDomain ↵ | Tedd Hansen | 2007-09-15 | 1 | -2/+5 |
| | | | | and "using OpenSim.Region.ScriptEngine.Common;" at start of script when converted from LSL. Vectors and rotations now works. | ||||
* | remove ^M, as native storage should be UNIX format, and ^M in/out mashing | Sean Dague | 2007-09-13 | 1 | -197/+197 |
| | | | | | | will happen on the windows side now that eol-style is correct | ||||
* | Hiding evidence that I once was a VB coder (thanks to refactoring). Renamed ↵ | Tedd Hansen | 2007-09-13 | 1 | -22/+22 |
| | | | | member names to smallcapsy. | ||||
* | startup event on script added to object, not all inside object. | Tedd Hansen | 2007-08-28 | 1 | -1/+0 |
| | |||||
* | Scripts no longer crash sim after 5 minutes (override ↵ | Tedd Hansen | 2007-08-25 | 1 | -17/+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. | ||||
* | GC.GetTotalMemory(true) was blocking. | Tedd Hansen | 2007-08-22 | 1 | -2/+4 |
| | | | | | We now support individual scripts on individual prims. Do the script dance... \o/ \o\ /o/ \o/ .o. | ||||
* | (Untested) Scripts are individually loaded into objects (on rez), and event ↵ | Tedd Hansen | 2007-08-22 | 1 | -0/+1 |
| | | | | fired likewise. Bugfixes coming in next commit. | ||||
* | Some minor changes + krinkec's updates to ll* functions. | Tedd Hansen | 2007-08-20 | 1 | -1/+1 |
| | |||||
* | Added event method invoke cache to Executor. "Bind once, Invoke multiple ↵ | Tedd Hansen | 2007-08-19 | 1 | -30/+21 |
| | | | | times". Will speed up script event execution considerable. But at the cost of some memory (will be optimized later with RuntimeXHandle). | ||||
* | Moved script loading from ScriptManager to AppDomainManager. Now increases ↵ | Tedd Hansen | 2007-08-19 | 1 | -5/+34 |
| | | | | scripts loaded count in AppDomain properly. | ||||
* | Moved in-AppDomain event execution from Script to ↵ | Tedd Hansen | 2007-08-18 | 1 | -37/+29 |
| | | | | OpenSim.Region.ScriptEngine.Executor. Script no longer responsible for handling event calls to itself (and we can create reference cache in Executor). | ||||
* | Added (theoretical) AppDomain cleanup code. | Tedd Hansen | 2007-08-18 | 1 | -17/+89 |
| | |||||
* | LSL Compiler now only referring required assemblies (DotNetEngine and ↵ | Tedd Hansen | 2007-08-18 | 1 | -4/+4 |
| | | | | 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. | ||||
* | Moved LSL_BuiltIn_Commands_Interface.cs to a separate library ↵ | Tedd Hansen | 2007-08-18 | 1 | -6/+1 |
| | | | | (OpenSim.Region.ScriptEngine.Common). Fixed last compile error (forgot to include LSL_BuiltIn_Commands.cs). | ||||
* | Started on AppDomains for ScriptEngine. Moved llFunctions in ↵ | Tedd Hansen | 2007-08-18 | 1 | -0/+115 |
LSL_BaseClass.cs to LSL_BuiltIn_Commands.cs. Changed how scripts are loaded. |