aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/ScriptServerInterfaces.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove interfaces that are no longer used from DNEMelanie Thielker2008-09-261-91/+0
|
* Convergence is almost complete. This brings the diff between the API to < 10kMelanie Thielker2008-09-251-11/+13
| | | | | | | | 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.
* Change the scirpt engine loading mechanism. Script engines are nowMelanie Thielker2008-09-211-1/+1
| | | | | | | | | 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.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-29/+29
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* Thank you, salahazar, for a patch that corrects the behavior ofMelanie Thielker2008-08-271-3/+3
| | | | | | | llDetectedLink(). Also a small refactor to remove an interface member from IScriptEngine.
* Formatting cleanup.Jeff Ames2008-08-181-1/+1
|
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-281-1/+1
| | | | | not break trunk.
* * This sends collision events to the script engine. Teravus Ovares2008-06-051-4/+5
| | | | | * Unfortunately, there's some kludges with the Async manager and the llDetected functions that I have yet to decipher... so llDetected functions don't work with collision events at the moment....
* * Theoretically, everything is in place for scripted take controls... ↵Teravus Ovares2008-05-071-1/+1
| | | | | | | Theoretically. * I've still got to test, it's still theoretical code :D. Good thing it isn't enabled by default!
* Patch from Melanie: 0001077: [PATCH] LSL types cannot be cast implicitly or ↵Teravus Ovares2008-04-301-1/+1
| | | | | | | explicitly in many cases Thanks Melanie! * Also, I moved the event parser and re-writer to a separate static object. More work will be done here shortly.
* * Implements llTarget, llTargetRemove, at_target(), not_at_target()Teravus Ovares2008-04-251-2/+2
|
* * Patch from Melanie. Mantis 0001037: Add various internal plumbing to ↵Teravus Ovares2008-04-231-1/+1
| | | | | | | the example economy module, implements llSetPayPrice(), money() and llGiveMoney() in scripts. Thanks Melanie! * Moves module loading before the script engine so the script engine can pick up events from modules registering interfaces with scene.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-1/+0
| | | | (this took a while to run).
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* Added copyright heaaders. Minor cleanup.Jeff Ames2008-03-041-1/+1
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-051-2/+2
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2008-02-021-1/+2
| | | | | | | OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
* Added license to new filesTedd Hansen2008-01-121-1/+29
|
* Major reorganizing of DotNetEngine. Moved common script engine parts to ↵Tedd Hansen2008-01-121-2/+4
| | | | | | | | 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.
* ScriptServer communication is ok. Script is creatd on onrez. But since it ↵Tedd Hansen2008-01-121-0/+3
| | | | | | | can not access Scene it sort of crashes right away ;) Added some sample placeholders for implementing rest of LSL events.
* Dynamic loading of ScriptEngine in ScriptServerTedd Hansen2008-01-091-0/+4
| | | | | ScriptServer event pipe (OpenSim->ScriptServer->ScriptEngine) should in theory be done
* Set svn:eol-style.Jeff Ames2008-01-061-52/+52
|
* Changes to ScriptServer to (hopefully) make it compile on both .Net and Mono.Tedd Hansen2008-01-051-0/+52
Some debug info for startup added to find bugs. ++