aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add the missing fileMelanie Thielker2008-09-231-2495/+0
|
* Remove Common/LSL_Types.cs. Both script engines now use a single versionMelanie Thielker2008-09-231-7/+7
| | | | | | | | of the types, located in OpenSim/Region/ScriptEngines/Shared/LSL_Tyoes.cs Also changes the compiler in DotNetEngine to use that. You _will_ need to let your region recompile all your scripts!
* Mantis #2243Melanie Thielker2008-09-231-728/+714
| | | | | | | | Thank you, tyre, for a patch that refactors LSL to use a unified set of method signatures and type names, reorders methods and removes unused and adds new method stubs.
* Mantis#2233. Thank you kindly, Idb, for a patch that solves:Charles Krinke2008-09-211-0/+7
| | | | | | The constants for llGetParcelDetails were missing for DotNetEngine and XEngine.
* * Apply http://opensimulator.org/mantis/view.php?id=2212Justin Clarke Casey2008-09-181-1/+1
| | | | | | | * Update llGetNumberOfNotecardLines() and llGetNotecardLine() to use dataserver on dotnetengine * Thanks M.Igarashi
* * Apply http://opensimulator.org/mantis/view.php?id=2207Justin Clarke Casey2008-09-171-0/+1
| | | | | | | * Attached patch implements llRequestAgentData for DotNetEngine. (It already is implemented in XEngine.) * Thanks Y. Nitta
* Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke2008-09-151-1/+13
| | | | | adds the new function osTeleportAgent().
* From: Rob Smart <SMARTROB@uk.ibm.com>Sean Dague2008-09-121-0/+5
| | | | | | | Implement an osParseJSON method useful for handling simple JSON returns from http requests. This will only work in C# at this point.
* From: alan_webb@us.ibm.comSean Dague2008-09-091-0/+3
| | | | | | | Make CHANGED constants consistent with LSL, and consistent across the code base
* From: Omar Vera Ustariz <ustariz@de.ibm.com>Dr Scofield2008-08-131-2/+2
| | | | | | | | This patch implements a subset of the llParcelMediaCommandList() function.
* * Remove warningsJustin Clarke Casey2008-08-091-1/+1
|
* Mantis#1899. Thank you kindly, Cmickeyb for a patch that:Charles Krinke2008-08-071-8/+8
| | | | | | | attached are some patches to either comment out direct console writes or to convert them to log writes
* Mantis#1888. Thank you kindly, Tyre for a patch that:Charles Krinke2008-08-071-0/+27
| | | | | | | This patch adds the missing parcel and region flag constants for LSL scripts. Tested with .Net and XEngine
* Minor formatting cleanup.Jeff Ames2008-08-071-1/+1
|
* Thank you, HomerHorwitz, for a patch that implements ↵Melanie Thielker2008-07-311-0/+25
| | | | | | | | llSetCameraParams/llClearCameraParams. Fixes Mantis #1867
* Thank you, HomerHorwitz, for a patch that add PERMISSION_CONTROL_CAMERAMelanie Thielker2008-07-311-0/+1
| | | | | | Fixes Mantis #1861
* Thank you, sacha magne, for a patch that implementsMelanie Thielker2008-07-311-0/+1
| | | | | | | llRequestSimulatorData("simname", DATA_SIM_RELEASE) Fixes Mantis #1866
* -make ZERO_VECTOR and ZERO_ROTATION static readonly properties so they can beMike Mazur2008-07-311-2/+2
| | | | | | | | | used in scripts -cast from bool to LSL{Integer,Float,String} so functions such as `integer isZero(integer x) { return (x == 0); }` work -progress on issue 1863
* for testing purposes only:MW2008-07-091-0/+7
| | | | | | | | added void osSetParcelMediaTime(double time) command to script engines. which sets the position of the media that is playing. Time is in seconds. Doesn't do any security checking (should be checking that the object/script is owned by the parcel owner). So could be abused, if it is then we should remove it, or add the security. Only tested in dotnet scripting engine, but should work in XEngine too.
* Mantis#1654. Thank you kindly, Matth for a patch that:Charles Krinke2008-07-031-0/+1
| | | | | Updates llGetPrimitiveParams() and associated files.
* From: kurt taylor (krtaylor)Dr Scofield2008-07-011-0/+5
| | | | | | | | Another new OSSL function for returning the name of the script engine currently running, osGetScriptEngineName, added to both DotNet and XEngine OSSL API.
* Mantis#1623. Thank you, Melanie for a patch that:Charles Krinke2008-06-281-1/+7
| | | | | | 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)
* From: Kurt Taylor <krtaylor@us.ibm.com>Dr Scofield2008-06-281-4/+4
| | | | | | | Patch to fix the passed parms and properly show llTakeCamera and llReleaseCamera as deprecated. Patch for both XEngine and DotNetEngine.
* Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke2008-05-291-2/+2
| | | | | | that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
* From: Kurt Taylor <krtaylor@us.ibm.com>Sean Dague2008-05-281-1/+1
| | | | | | | | | | | | | Attached is an initial implementation of llGetNotecardLine and llGetNumberOfNotecardLines. I decided to go ahead an send these out for comment while I continue to work on the second part of the proper implementation. These functions work and return the values requested, as initially defined in the code, but should be properly implemented to return the requested information via a dataserver event. This event will be added and these functions fixed and included in a second patch shortly.
* Thank you, Grumly57 kindly for:Charles Krinke2008-05-281-0/+5
| | | | | | | This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
* This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2008-05-261-5/+5
| | | | | | | | llOwnerSay() via the newly created Scene.SimBroadcast() call.
* Formatting cleanup.Jeff Ames2008-05-161-3/+3
|
* * Resolve mantis 1182. Doesn't actually implement llGiveInventoryList - ↵Justin Clarke Casey2008-05-091-2/+2
| | | | | | | | merely corrects the signature so that "not implemented" message is displayed rather than a script compile failure
* Thank you, Melanie for a patch that:Charles Krinke2008-05-091-43/+43
| | | | | Patch fixes the pesky "Cannot implicitly convert to bool" issue for function returns
* * Applying patch #1156 - More implementation work on llGetPrimitiveParams ↵Adam Frisby2008-05-081-2/+2
| | | | (Thanks middlelink!)
* * A bit of spice from here, a pinch of salt from there, some brains that ↵Teravus Ovares2008-05-051-2/+2
| | | | | | | | | | | | | | | attracts zombies.. a recipe for llRezObject * Original patch by YZh Thanks YZH!!!! * object_rez event patch by Melanie, Thanks Melanie!!! * Some fixups, some missing things(velocity,rotation) * script delay * Recoil * Standard error messages * Standard silent failures * Easter egg management
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-05-021-0/+10
| | | | | | | Adds "not implemented" stubs for llSetVehicleFloatParam() and llSetLinkTexture() Some cleanup of LSO script enums
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-011-88/+88
| | | | with namespaces.
* * Applying Xantor's patch 0001089 - Added llRot2Angle, ↵Teravus Ovares2008-04-291-2/+2
| | | | llRot2Axis,llAxisAngle2Rot. Re-implemented llRot2Euler, llEuler2Rot
* * Committing Mantis #1061 - llRegionSay and llSetPrimitiveParams ↵Adam Frisby2008-04-261-0/+5
| | | | implementations. Thanks Melanie!
* * Applying mantis#1048 - Patch for osSetRegionWaterHeight()Adam Frisby2008-04-251-2/+4
|
* * Implements llScriptDangerTeravus Ovares2008-04-221-2/+2
| | | | | * Made the scene's scriptDanger method more generic so both the llScriptDanger method and the Script engine method use the same private method.
* * Committing fix for previous build breakage. Sorry!Adam Frisby2008-04-211-2/+2
| | | | | * Committing namespace/usings fixes for ThirdParty directory, missed in previous commit.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-92/+91
| | | | (this took a while to run).
* * Updates LSL2CS converterTeravus Ovares2008-04-201-0/+4
| | | | | | | | | * All objects are not touchable by default now * When a script listens for one of the touch events in the state, an object becomes touchable. * All LSL scripts report which events they consume now ** This uses semi-complicated Regex to discover the events, stick them in a dictionary, and then write a method call into each script state's state_entry() event. ** Tedd may figure out a better way to do this in the future. For now, this works for LSL.
* Fixed LSL State support.Teravus Ovares2008-04-151-1/+5
| | | | | | | | * Re-applied Tedd's patch that got overwritten. * Replaced (state)\s+([^;\n\r]+)([\r\n\s];) with (state)\s+([^;\n\r]+)(;[\r\n\s]) * Added a state(string) method to BuiltIn_Commands_BaseClass
* * Various terrain engine fixesAdam Frisby2008-04-061-0/+13
| | | | | | * Includes patch #894 fixes for terrain load-tile * Large number of other terrain fixes and new commands included.
* **Big ass update warning**Adam Frisby2008-03-301-0/+6
| | | | | | | | * Renamed plugin console message, to send a message to a plugin, use either "plugin <message>", or any unrecognised message will be sent ("plugin" sends explicitly) This replaces the old "script <message>". * Terrain commands - "terrain <command>" now works again. "Script terrain <command>" does not. Many of the commands have now been reimplemented, eg load-tile. However some have new syntax. * New console command handler, you can now use things like "terrain help" or "terrain save help". See TerrainModule.cs for an example of how to use the new "Commander" class. * Commander class - advanced processing of console input and also enables a script API to be generated from registered console commands.
* fixes mantis #778 and shoots himself for making such a mistake to begin ↵MW2008-03-281-2/+2
| | | | with, but also blames Tedd for the way the script functions have wrapper methods that call the same named method in a different class, is it my fault if in two such functions, I forget to add "m_LSL_Functions." and instead cause a recursive loop until the stack overflows.
* Implements llGetInventoryPermMask()alondria2008-03-241-2/+2
|
* Implements llGetObjectDetails()alondria2008-03-211-0/+14
|
* * Patch to add llSetLinkPrimitiveParams stubJustin Clarke Casey2008-03-191-0/+4
| | | | | | * Thanks krtaylor
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague2008-03-171-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | Here's a diff of the changes I have made in support of the following LSL script functions. llSetScriptState llGetScriptState llCSV2List llListRandomize llList2ListStrided llListFindList llResetOtherScript llGetScriptName It was necessary to modify ExecutorBase in support of the ScriptState implementations. I also modified SceneObjectPart and SceneObjectPart.Inventory to corrects a quoting mismatch in the commentary that through off live parsing of the files. I also simplified the State definition at the start of BuiltinCommands.