aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-068-97/+97
| | | | | | | * 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-4/+4
| | | | | | | llDetectedLink(). Also a small refactor to remove an interface member from IScriptEngine.
* Some complex re-ordering to make prebuild do what needed to be done.Melanie Thielker2008-08-231-0/+1
| | | | | | | | | It is now possible to use module interfaces without referencing Scene. Place those interfaces in OpenSim/Region/Interfaces. They may not use any refs from OpenSim.Region.Environment as parameters. This resolves a circular library ref introduced in r5949
* Formatting cleanup.Jeff Ames2008-08-183-6/+6
|
* Refactor a lot of direct calls to OGS1 to use the cached version instead.Melanie Thielker2008-08-161-3/+4
| | | | | | | Scripts can now no longer DOS the user server and there are a lot fewer gratuitious lookups of user profile data.
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-151-1/+1
|
* Mantis#1941. Thank you kindly, Tyre for a patch thatCharles Krinke2008-08-131-34/+4
| | | | | | makes progress in extracting the line number of LSL script execution errors.
* Minor formatting cleanup.Jeff Ames2008-08-121-1/+1
|
* Mantis#1910. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-101-1/+5
| | | | | | | | In case you run the server with mono --debug OpenSim.exe line numbers are reported as <filename>:<linenumber>, so no "at line" is found. That led to an exception, which is caught since r5766. The attached patch fixes this for mono;
* Mantis#1899. Thank you kindly, Cmickeyb for a patch that:Charles Krinke2008-08-072-3/+3
| | | | | | | attached are some patches to either comment out direct console writes or to convert them to log writes
* Minor formatting cleanup.Jeff Ames2008-08-071-2/+2
|
* * oops, fix build break from last checkinJustin Clarke Casey2008-08-051-2/+2
|
* * possible fix for event queue problems (exceptions and event count max ↵Justin Clarke Casey2008-08-051-1/+17
| | | | | | | | | exceeded issues) seen in osgrid meeting today * From the logs, I'm guessing probable cause is that an exception generated by a bad index given to substring error line number conversion stopped the script being killed, leading to continuous events that filled up the log (maybe) * Someone will need to go back and fix this properly
* Re-fix r5681. Sorry for the inconvenience. We will now return youMelanie Thielker2008-07-271-0/+1
| | | | | | to your scheduled scripting.
* Addresses Mantis #1611Melanie Thielker2008-07-271-0/+3
| | | | | | | | Set thread culture for event processing threads in DotNetEngine. XEngine already had this. Maybe someone with a French OS can verify the fix.
* Mantis#1690. Thank you kindly, Melanie for a patch that:Charles Krinke2008-07-081-0/+3
| | | | | esets script permissions when a script is recompiled.
* Mantis#1623. Thank you, Melanie for a patch that:Charles Krinke2008-06-282-6/+13
| | | | | | Fully defines the equality operators on the lsl types and plubs in the script engine side of the work begun in 0001616 (aly, this one's for you)
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-281-1/+1
| | | | | not break trunk.
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-272-5/+5
|
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-101-2/+2
|
* * Fixed it so you can do a lot more llDetected* methods in many additional ↵Teravus Ovares2008-06-082-3/+62
| | | | | | | situations and have it work. * script Collision reporting works now in DotNetEngine
* * Added compiler pre-processor, #if SPAM to SensorRepeat... so if you ↵Teravus Ovares2008-06-081-3/+12
| | | | really want to see, "[AsyncLSL]: GetSensorList missing localID" and SetSensorEvent, then you can #define SPAM
* Mantis#1459. Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-06-051-2/+5
| | | | | | | | | the function that reports errors in event handling is not computing the line numbers correctly for windows paths (and probably linux paths). As a result, the conversion to int throws an exception. note... i'm not sure why we extract the line number, convert it to an int, then convert it back to a string... but hey... :-)
* * This sends collision events to the script engine. Teravus Ovares2008-06-052-9/+79
| | | | | * 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....
* applied patch from mantis #1268 , thanks mikemMW2008-06-041-0/+4
|
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-302-12/+12
|
* Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke2008-05-292-0/+133
| | | | | | that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
* Mantis#852. Thank you kindly, cmickeyb for a patch that:Charles Krinke2008-05-291-17/+46
| | | | | | | | | | There appears to be a problem with the mapping of scripts when an llHTTPRequest completes. CheckHttpRequests() looks for a function that maps to the localID associated with the http request. However, the only context in which it looks is that of the first region. That is, m_CmdManager.m_ScriptEngine.m_ScriptManager is the same no matter where the script executed that initiated the llHTTPRequest. Since scripts appear to be loaded into a region specific scriptmanager on startup, the event handler is only found for requests coming from the first region.
* Formatting cleanup.Jeff Ames2008-05-281-1/+1
|
* This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2008-05-261-1/+1
| | | | | | | | llOwnerSay() via the newly created Scene.SimBroadcast() call.
* * A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares2008-05-252-0/+2
| | | | | | | however you can use it to help find out what scripts are causing your simulator to cry. * Access it from the Estate tools/Debug tab.
* Thank you very much, Xantor for a patch that:Charles Krinke2008-05-251-0/+4
| | | | | | | | | | Copying, reseting, dragging scripts cause unnecessary recompilation, slowing down the simulator and filling up the ScriptEngines directory with compiled .dll and misc. files. This patch keeps track of compiled assets since the last simulator restarts, and only recompiles new assets. (editing a script generates a new asset, so no problems there).
* Mantis 1357 Patch - Thanks mikem!Adam Johnson2008-05-221-4/+8
|
* * Patch #1312 from Melanie - Abstracts Money Module to IMoneyModule.Adam Frisby2008-05-181-0/+1
|
* Formatting cleanup.Jeff Ames2008-05-166-11/+11
|
* More formatting cleanup.Jeff Ames2008-05-141-4/+7
|
* Formatting cleanup.Jeff Ames2008-05-144-6/+6
|
* * Removed 19 warningsTeravus Ovares2008-05-141-1/+1
|
* * Changed implicit string conversion to LSL_Types.LSLString in money event ↵Teravus Ovares2008-05-112-3/+3
| | | | | | | of the key of the payer to an Explicit one. * Fixes Mantis: #1045
* * Applying patch #1121 - Fixes for llListen() (Thanks Middlelink!)Adam Frisby2008-05-081-4/+7
|
* * You can haz more spring cleaning.Adam Frisby2008-05-082-4/+2
| | | | | * Eventually this codebase will be clean. >_>
* * Some refactorings.Adam Frisby2008-05-081-1/+1
| | | | | * Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
* * Other then the prim update experiments that are going on now, ↵Teravus Ovares2008-05-071-0/+1
| | | | llTakeControls works now along with the 'release controls button'. llReleaseControls() works mostly :D.
* * Theoretically, everything is in place for scripted take controls... ↵Teravus Ovares2008-05-071-2/+2
| | | | | | | Theoretically. * I've still got to test, it's still theoretical code :D. Good thing it isn't enabled by default!
* while I'm not convinced this is causing my current run awaySean Dague2008-05-071-18/+21
| | | | | | | loop, this queue manipulation is dead wrong as Queue is not a synchronized data structure. Hopefully this helps.
* De-tabify source.Jeff Ames2008-05-061-12/+12
|
* * Unraveled the DEBUG_CHANNEL mystery.Teravus Ovares2008-05-051-2/+2
| | | | | | | | * Moved script errors to the debug channel. * Typing '/2147483647 OK' results in a debug_channel message. * Expanded the available parameters that are send-able through IClientAPI
* Thank you kindly, Melanie for a patch to solveCharles Krinke2008-05-021-1/+13
| | | | | llParticleSystem and osDynamicTexture issues.
* * Deletes my EventReader ScriptRewriter. It isn't required to rewrite the ↵Teravus Ovares2008-05-011-0/+23
| | | | | | | script to publish the events anymore. * Introduces a language(regex) independent event recognizer and publishes the events the script listens.
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-1/+1
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.