aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-17Added copyright notices.Jeff Ames1-1/+29
2008-02-16Update svn properties.Jeff Ames2-118/+118
2008-02-16Forgot one small but important line .. ;)Tedd Hansen1-0/+1
2008-02-16Fixed ScriptEngine config in OpenSim.ini.example that was out of place.Tedd Hansen5-62/+123
Added some info to failure on GridServices listening port so people can see what actually went wrong. Moved most of the function/event execution module to a baseclass so other execution methods (instead of reflection) can be used with custom script modules run by ScriptEngine.Common. + some accumulated patches
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-1/+1
* Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
2008-02-10state_entry is now executed on state change.Tedd Hansen2-1/+18
2008-02-10We now support LSL stateTedd Hansen5-7/+9
2008-02-10Implements llListStatistics() and a bunch-o-LSL_Types.list statistical ↵alondria3-4/+282
methods. Added LIST_STAT_HARMONIC_MEAN in addition to LL's LIST_STAT_*
2008-02-10Implemented llGetParcelFlags() and llGetRegionFlags(). I don't think the ↵alondria1-4/+2
RegionFlags are currently implemented within EstateSettings, thus this is always 0.
2008-02-10Implements llGetObjectMass()alondria1-1/+5
2008-02-10Thank you very much, Hashbox for :Charles Krinke1-1/+1
Add scene-debug command to Enable/Disable scripting, collision, and physics from console.
2008-02-08Missed one event message that needed to beCharles Krinke1-8/+9
commented out.
2008-02-08Make timer events from scripts a little less chatty. Charles Krinke2-12/+16
DEBUG is defined by default in the Linux build.
2008-02-06Cleaned up some unreachable code warnings.Jeff Ames1-10/+0
2008-02-06Fixed typo in Mag() (Thanks lc_tuco for pointing this out)Jeff Ames1-1/+1
2008-02-06* Added Active Scripts to report the number of scripts running to Sim Stats Teravus Ovares1-6/+340
* Added Script Performance to report the number of functions run per second to Sim Stats. * Removed a few warnings (@.@ up to 50 now)
2008-02-06Somehow llList2Float never made it into LSL_BaseClass and ↵alondria3-1/+6
LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)
2008-02-05Converted logging to use log4net.Jeff Ames11-88/+72
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-05Added explicit Quaternion->string and list->string conversions.alondria3-2/+116
Some preliminary work on llSetStatus and llGetStatus.
2008-02-05* Refactored the sound calls to SceneObjectPart Teravus Ovares1-114/+5
* Fixed a few bugs * Wrote an example module to make certain event systems more mature.
2008-02-05Added copyright statements.Jeff Ames3-12/+88
2008-02-04Patch from mikkopa/_someone Thanks! adds support for llPreloadSound, ↵Teravus Ovares1-4/+92
llTriggerSound, llPlaySound, llPreloadSound. * Time to make music boxes?
2008-02-04* Whole buncha stuff.Adam Frisby1-0/+12
2008-02-03Added llRot2Fwd, llRot2Left, and llRot2Up as well as explicit vector->string ↵alondria2-3/+8
casting. (Thanks to dalien on informing me how easy the math was for these).
2008-02-03Temporarily disabled shared threads because of a bug. Script were only ↵Tedd Hansen2-2/+4
working on 1 region. :) Using default warning level on C#/VB compile
2008-02-02Implements LSL function llDialog().alondria1-1/+13
The ScriptDialogReply packet handler is a bit of a hack job. It is currently handled similar to ChatFromViewer, which will trigger the listen() event, however this is not exactly how LL's implementation works and will/can be fixed up later.
2008-02-02Added llParseString2List (and a few extra methods to LSL_Types.list).alondria4-5/+74
2008-02-02* Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares1-1/+10
of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
2008-02-02fixed a timing bug in config re-read. Apparently there is 1000000000 ns in ↵Tedd Hansen2-9/+10
one second...
2008-02-02Added commands to change config file from console:Tedd Hansen1-6/+6
CONFIG SET section key value value value CONFIG GET section key CONFIG SAVE (it saves, but does it save correctly?:) ScriptEngine will react correctly to any config change made while it is running.
2008-02-02Updated svn properties.Jeff Ames4-800/+800
2008-02-02Bugfixes. Now it even reads configuration before it uses it! ;)Tedd Hansen1-0/+2
2008-02-02* Committing some untested stuff regarding texture animations. This won't ↵Teravus Ovares1-1/+10
break anything, but the llSetTextureAnim function is completely untested.. (though it may be functional once the script engine works again)
2008-02-02Added load/unload queue size limitTedd Hansen4-18/+83
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 Hansen1-1/+6
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 Hansen3-20/+30
OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
2008-02-02Forgot to create an object before use. Now why can't .Net just do that ↵Tedd Hansen1-7/+10
itself? :)
2008-02-02Added some error checking to MaintenanceThread, no-crash (just log) loading ↵Tedd Hansen1-27/+31
of script engines, and support to load multiple script engines
2008-02-01Moved iniFilePath to a static and put it in OpenSim.Application.iniFilePath.Tedd Hansen1-2/+9
Refreshing config based on this. Temporarily disabled feature to refresh config file while running.
2008-02-01Bugfix, maybe it won't crash during startup and crash somewhere else instead? :)Tedd Hansen1-1/+2
2008-02-01SCRIPTING STILL BROKENTedd Hansen12-398/+598
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-01SCRIPT SUPPORT IS STILL BROKEN.Tedd Hansen4-189/+412
Bugfix: Scripts exceeding max and set to be killed were not killed, only removed. Added ability to re-read configuration while OpenSim is running All regions now sharing one MaintenanceThread New MaintenanceThread: - checks for script execution timeout - re-reads config - starts/stops threads if thread active count becomes too high/low compared to config Speed increase on event execution: - Reuse of try{}catch{} blocks - Time calculation on event execution
2008-02-01Config option to set number of scripts per AppDomainTedd Hansen2-2/+3
2008-02-01Added config options:Tedd Hansen2-2/+46
ScriptThreadPriority to set script thread priority DeactivateScriptOnTimeout to remove script if it is executing too long
2008-02-01Removed "Loading inventory for Primitive" message.Tedd Hansen1-1/+1
Fixed small bug in thread counter.
2008-02-01ExperimentalTedd Hansen3-9/+55
Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
2008-02-01Highly experimentalTedd Hansen2-149/+300
A separate thread is used to enforce max function (event) execution time for scripts.
2008-02-01Fixed errors being thrown by invalid PSYS_SRC_TARGET_KEY's in ↵alondria1-1/+9
llParticleSystem - defaults to source prim (consistent with LL grid). Should fix mantis 427.
2008-02-01Thanks to Hashbox for a patch to:alondria3-2/+25
Implementing llStringTrim and hooking in osRegionNotice
2008-02-01* Added more supported feature to particlesystems. While this appears to ↵Teravus Ovares1-3/+28
have a libsl update... it's really a fix to the libsl version we're already using because of a bug in the particlesystem implementation * Added two new simstat counters in the simstat enum for the RCCS. (I'll find something cool to put in them) * fixed a time waster in ODEPlugin.cs