aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-10The very beginnings of attachments (no detachments! :)Dalien Talbot1-14/+7
2008-02-10Bugfix to state command:Tedd Hansen1-2/+6
"state default;" rewrite to "state ("default");"
2008-02-10Bugfix on that last Quaternion/Vector patchTedd Hansen1-2/+2
2008-02-10Untested bugfix in state supportTedd Hansen1-4/+7
Replaced (?<s1>(?![a-zA-Z_]+)\s*)" + @"([a-zA-Z_]+)(?<s2>[^a-zA-Z_\(\)]*){ with (?<s1>(?![a-zA-Z_]+)\s*)" + @"(state\s+)?([a-zA-Z_]+)(?<s2>[^a-zA-Z_\(\)]*){ Lets see what happens now... :)
2008-02-10Added support for function calls as values in LSL-specific <0,0,0> and ↵Tedd Hansen1-2/+2
<0,0,0,0> Quaternion and Vector
2008-02-10Thank you very much, Hashbox for :Charles Krinke1-3/+3
Add scene-debug command to Enable/Disable scripting, collision, and physics from console.
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-1/+1
2008-02-08* Dun-dun-dun. JavaScript scripting now actually works. :)Adam Frisby1-3/+2
2008-02-07Maybe VB.Net will compile now... who knows ;)Tedd Hansen1-8/+8
2008-02-07Same VB.Net patch done right.Tedd Hansen1-4/+9
2008-02-07VB.Net compiler might work on Windows now.Tedd Hansen1-1/+1
2008-02-06* Marking off which uses of catch (Exception e) is legit and which are not, ↵Adam Frisby2-5/+5
for later removal/replacement.
2008-02-06Fixed regex in LSL2CSConverter so it will properly handle casting to ↵alondria1-2/+2
(string) part of vector (eg. vector.z) This fixes Mantis 388
2008-02-05Converted logging to use log4net.Jeff Ames3-30/+28
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Reverted MySQLDataStore.cs to not use static mutexes any more, patch didn't ↵Tedd Hansen1-1/+0
work anyway. Added js to OpenSim.ini.example.
2008-02-04* Replacing missing break statement from DotNetEngine/Compiler/LSL/Compiler.csAdam Frisby1-0/+1
2008-02-04* Added JavaScript support to OpenSim scripting. Totally Untested. Enjoy. :)Adam Frisby1-2/+19
2008-02-03Temporarily disabled shared threads because of a bug. Script were only ↵Tedd Hansen1-1/+1
working on 1 region. :) Using default warning level on C#/VB compile
2008-02-02Re-enabled AllowedCompilers functionTedd Hansen1-1/+1
Added notice in OpenSim.ini that config refresh function is disabled
2008-02-02Almost forgot to check in:Tedd Hansen1-1/+1
OpenSim.32BitLaunch.exe is a 32-bit application that loads OpenSim.exe using .Net framework, hence it is JIT-compiled to 32-bit. Use this app to start OpenSim on 64-bit systems (works great on Vista 64 :))
2008-02-02Note to self: Next time read debug-files on correct computer. It makes ↵Tedd Hansen1-1/+1
bughunting SO much easier! *jeesh*
2008-02-02Bugfixes. Now it even reads configuration before it uses it! ;)Tedd Hansen2-16/+21
2008-02-02Temporarily disabled AllowedCompilers so all 3 compilers are allowed.Tedd Hansen2-37/+31
Fixed bug in how code is handled, hopefully we can now run all 3 languages? :)
2008-02-02Added header/footer of scripts to make C# and VB scripts much easier to write.Tedd Hansen2-8/+49
Added some logging on what is happening during compile.
2008-02-02Bugfix: LSL was mapped to VB.Net compiler ... that didn't work out so well :)Tedd Hansen1-3/+3
2008-02-02Added load/unload queue size limitTedd Hansen1-3/+3
Added option to share script load/unload thread between regions Added event execution queue size limit + some bugfixes from all the changes
2008-02-02Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2-36/+230
OpenSim in 32-bit mode. Added VISUAL BASIC.NET-support //cs, //lsl and //vb as first characters of script will determine what compiler is used. Compile warnings are no longer treated as errors. Script will still run. Added a few useless and useful config options: Write script source to harddisk for debug, Default compile language, Allowed compilers (languages), compile in release or debug mode, clean up old scripts on startup Loads of warnings for incorrect config
2008-02-02Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2-9/+9
OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
2008-02-01SCRIPTING STILL BROKENTedd Hansen2-2/+2
Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
2008-02-01ExperimentalTedd Hansen1-0/+6
Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
2008-01-22Giving Mantis #388 a shotTedd Hansen1-2/+3
2008-01-21Small bug in ResetScriptTedd Hansen2-11/+1
2008-01-17Added data structure to be passed through event execution queue so that ↵Tedd Hansen1-1/+2
events can use llDetect*-commands to find information about event.
2008-01-15* Mother of all commits:Adam Frisby4-21/+50
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-12Major reorganizing of DotNetEngine. Moved common script engine parts to ↵Tedd Hansen12-6898/+83
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.
2008-01-12ScriptServer communication is ok. Script is creatd on onrez. But since it ↵Tedd Hansen4-26/+58
can not access Scene it sort of crashes right away ;) Added some sample placeholders for implementing rest of LSL events.
2008-01-12Implements llModifyLand() - Still needs some tweaking to match LL's effect ↵alondria1-0/+59
on how much to effect the land.
2008-01-12Linking osTerrainGetHeight, osTerrainSetHeight, and osRegionRestart to ↵alondria1-0/+15
LSL_BaseClass to allow them to be called in LSL scripts.
2008-01-11Fix some warnings under mono.Jeff Ames1-2/+2
2008-01-10Added const definintions for sculpted prims.Tedd Hansen1-1/+7
2008-01-09Dynamic loading of ScriptEngine in ScriptServerTedd Hansen1-1/+7
ScriptServer event pipe (OpenSim->ScriptServer->ScriptEngine) should in theory be done
2008-01-05Only one queue is used for load/unload of scripts.Tedd Hansen1-19/+22
So loading/unloading of scripts are now done in same sequence as they are called.
2008-01-05Changes to ScriptServer to (hopefully) make it compile on both .Net and Mono.Tedd Hansen1-1/+1
Some debug info for startup added to find bugs. ++
2008-01-01Fixed string issue in compilerTedd Hansen1-1/+1
2007-12-31Correction of last commitTedd Hansen2-97/+97
2007-12-31Changed type comparison from String to object typeTedd Hansen1-9/+9
2007-12-30server->script event path almost ready for remote scriptengine (translation ↵Tedd Hansen2-46/+41
table between local script ID and remote script ID missing)
2007-12-30In this commit I am using an editor feature called "Save All" before I commit.Tedd Hansen4-1/+20
2007-12-30Added comments to ScriptEngine classes that explains what their purpose isTedd Hansen6-0/+68
2007-12-27* Optimized usingslbsa7110-61/+68
* shortened references * Removed redundant 'this' * Normalized EOF