aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-01* Breaking all the code, breaking all the code..!Adam Frisby1-1/+1
* Made a bunch more members static, removed some dead code, general cleaning.
2008-05-01* Assorted spring cleanings.Adam Frisby2-3/+4
2008-04-30* Sometimes you know, you do something really stupid.Adam Frisby4-4/+4
* This is one of those times (should fix build)
2008-04-30Patch from Melanie: 0001077: [PATCH] LSL types cannot be cast implicitly or ↵Teravus Ovares5-20/+21
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.
2008-04-28wrap a common exception that we get on shutdown of the script engine to keepSean Dague1-4/+9
people from thinking it's a real issue.
2008-04-27* Patch from XenReborn to make remove-region work properly without needing ↵Teravus Ovares1-0/+10
to do a change-region first. Careful though. I still suggest you do a change-region first. * Patch from Melanie to implement touch_end. * Thanks XenReborn!. Thanks Melanie!
2008-04-25* Implements llTarget, llTargetRemove, at_target(), not_at_target()Teravus Ovares1-4/+7
2008-04-24replace hard tabs with 4 spaces to be consistant in the source.Sean Dague1-5/+5
Please adjust your editors to not use hard tabs.
2008-04-23* Patch from Melanie. Mantis 0001037: Add various internal plumbing to ↵Teravus Ovares1-5/+23
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.
2008-04-22* Implemented NoScript areas (without loosing script state).Teravus Ovares1-9/+13
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby14-75/+20
(this took a while to run).
2008-04-20Removed some script engine noise from consoleTedd Hansen1-1/+1
2008-04-18Mantis #851, 100% CPU on unhandlet HTTP event. Thanks cmickeyb.Tedd Hansen1-9/+21
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague1-1/+1
actually a little more work than I expected given the copious use of out params.
2008-04-09From: Michael Osias <mosias@us.ibm.com>Justin Clarke Casey1-1/+4
"This is llDetectedKey for touch_start - it is already implemented for sensor." Thanks Michael
2008-03-25Comment out unused private methods.Jeff Ames1-40/+42
2008-03-18Formatting cleanup. Minor refactoring.Jeff Ames1-2/+2
2008-03-18* Applied Grumly57 patch for #781; Thanks, Grumly!lbsa711-7/+7
2008-03-18Patch from DrSchofld (IBM). In his own wordsJustin Clarke Casey1-2/+2
structs (such as LLUUID) are considered values by mono. comparing them against null makes no sense and the mono compiler will flag that as evaluating to always false --- except if "cleverly" disguised. the attached patch fixes such an occurrence in OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs. [yes, i'm on a crusade against comparing structs against null, go ask jradford from libsl ;-)]
2008-03-18Formatting cleanup.Jeff Ames15-400/+377
2008-03-17Fix a few mono compiler warnings. Minor cleanup.Jeff Ames1-1/+1
2008-03-14* Preliminary work with the ODEPlugin to collect collision data.Teravus Ovares1-3/+3
2008-03-12there was a single instance where the log4net object was notSean Dague1-1/+1
static readonly. I suspect this was the cause of mantis #500.
2008-03-04Added copyright heaaders. Minor cleanup.Jeff Ames5-22/+5
2008-03-03* Removed a bunch of compiler warnings.Adam Frisby3-3/+3
2008-03-01Thank you very much, Kinoc for:Charles Krinke1-4/+29
* Impelements llInstantMessage * Reimplements llOwnerSay as llInstantMessage(llGetOWner(),msg). * Try's to better identify the "True Name" of objects in llDetectedName by checking for avatar name, scene Object Part name and entity name. * Uses similar logic in the llSensor and llSensorRepeat functions.
2008-02-25Moved AsyncCommandManager into separate classes under "plugins".Tedd Hansen6-512/+737
2008-02-25eolTedd Hansen6-727/+727
2008-02-25Step 1 in reorganizing AsyncCommandManagerTedd Hansen7-679/+729
2008-02-25Initial patch for llSensor*Tedd Hansen1-3/+272
llSensor, llSensorRepeat, llSensorRemove, llDetectedName, llDetectedKey, llDetectedOwner, llDetectedType, llDetectedPos, llDetectedVel, llDetectedRot Thank you very much kinoc! :)
2008-02-25I'm the stupidest stupid in the whole world. :)Tedd Hansen1-3/+4
Fixed a bug in new Prim where I actually ADDED new values to old values instead of directly assigning them... Now that was a waste of time! :P
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 Ames9-35/+19
2008-02-20llSetTimerEvent updated to use ticks instead of DateTime for internal timing.Tedd Hansen1-20/+37
2008-02-20llSetTimerEvent was setting seconds as milliseconds causing major problems ↵Tedd Hansen1-1/+1
in timed scripts...