aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-24Ok, so NOW scripts work. New patch to break them coming soon.Tedd Hansen2-1/+3
2008-02-24By now you all have learned that when I'm committing scripting usually ↵Tedd Hansen6-2278/+2284
doesn't work, so no big surprise. :) Modified baseclass for compiled script to incorp new OSSL commands class and renamed it to follow standards and all that. Scripts may work again. :)
2008-02-24Forgot to change what class compiled scripts must inherit from to get their ↵Tedd Hansen1-3/+3
commands :)
2008-02-24Implemented object oriented Prim.Position, Prim.Rotation and Prim.Text.Tedd Hansen1-9/+20
Example: Prim.Position.X += 10;
2008-02-24eolTedd Hansen3-165/+165
2008-02-24Changed so "BuiltIn_Commands" given to scripts is easily extendable. Added ↵Tedd Hansen7-7/+170
new OSSL_BuilIn_Commands class where we can start adding our own modular commands.
2008-02-22Fix for error message during startup (shared thread started processing ↵Tedd Hansen2-1/+4
region queue before queue objects were fully operational)
2008-02-22ScriptEngine works again (startup-nully-error gone)Tedd Hansen4-19/+18
2008-02-22One more: Async LSL command thread is also shared now.Tedd Hansen4-248/+275
2008-02-22Bugfixes - Scripting works againTedd Hansen2-2/+17
2008-02-22Some misplaced code made scripts never start :)Tedd Hansen1-14/+13
2008-02-22Better timing of MaintenanceThread's tasks (uses less CPU)Tedd Hansen1-20/+39
Updated OpenSim.ini.example
2008-02-22Bugfixes - wasn't counting threads right++Tedd Hansen3-17/+17
2008-02-22Minor annoying Exception-bug fixedTedd Hansen2-2/+3
2008-02-22Execution threads are now shared between regions too. Default thread count ↵Tedd Hansen3-242/+229
regardless of number of regions is now 3. This will save you around 33 threads for a normal 3x3 region server. But, this is totally completely untested. So it probably won't work for another patch or five.
2008-02-22Maintenance thread in charge of loading/unloading of scripts. 1 thread less ↵Tedd Hansen2-17/+28
per region. Total so far: 2 threads less per region Note: Currently causes delay in load/unload of scripts
2008-02-22Now last commit will compile too... The features just keep on coming!Tedd Hansen3-6/+12
2008-02-22From this commit and a few hours into the future ScriptEngine will be unstable:Tedd Hansen5-79/+87
* Speeding up ScriptEngine shutdown * Sharing threads so that minimum total thread count for any amount of regions will be 2. (1 maintenance, 1 script execution) You can choose more script exec threads if you want of course. In this commit: Sharing maintenance thread between all regions.
2008-02-21Fixes to ScriptEngine thread cleanup on destructorTedd Hansen4-17/+14
2008-02-21ScriptEngine changes in locking. Another step in direction of shared threads.Tedd Hansen2-24/+22
2008-02-21"threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen4-0/+4
compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
2008-02-20div+Tedd Hansen1-1/+1
threads console command will list all threads. This + yesterdays naming threads patch will give a good overview of what threads we have running.
2008-02-20Minor cleanup.Jeff Ames27-91/+62
2008-02-20llSetTimerEvent updated to use ticks instead of DateTime for internal timing.Tedd Hansen3-24/+41
2008-02-20llSetTimerEvent was setting seconds as milliseconds causing major problems ↵Tedd Hansen2-2/+2
in timed scripts...
2008-02-19From: Michael Osias <mosias@us.ibm.com>Sean Dague4-50/+118
This patch implements the llSendRemoteData command and fixes mantis 552, and possibly 586.
2008-02-18bring back some script engine debugging, hoping this will help track down ↵Sean Dague3-18/+18
the randoms segfaults
2008-02-18Patch from Michael Osias IBM (jimbo2120)Justin Clarke Casey1-0/+7
In his own words: If a prim becomes a listener or remote channel and the script is deleted, it cannot become a listener or channel again with a new script. This patch fixes that.
2008-02-18Thank you very much, Hashbox for:Charles Krinke3-8/+15
Changed the public IsAdministrator back to protected, now checks Config to see whether it is allowed to run or not. Defaults to false (not allowed). To use add the following to OpenSim.ini [LL-Functions] AllowosConsoleCommand=true
2008-02-17Thank you Hashbox for adding the Charles Krinke3-2/+18
osConsoleCommand Feature to ll-functions.
2008-02-17Added copyright notices.Jeff Ames2-2/+58
2008-02-16Update svn properties.Jeff Ames3-140/+140
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 Hansen6-62/+145
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 Frisby2-24/+42
* 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-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-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 Krinke2-4/+4
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-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.