aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* From: Omar Vera Ustariz <ustariz@de.ibm.com>Dr Scofield2008-08-131-1/+1
| | | | | | | | This patch implements a subset of the llParcelMediaCommandList() function.
* 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-1/+1
| | | | | | 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.
* Formatting cleanup.Jeff Ames2008-05-141-21/+21
|
* * Resolve mantis 1182. Doesn't actually implement llGiveInventoryList - ↵Justin Clarke Casey2008-05-091-1/+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-1/+2
| | | | (Thanks middlelink!)
* * A bit of spice from here, a pinch of salt from there, some brains that ↵Teravus Ovares2008-05-051-1/+1
| | | | | | | | | | | | | | | 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-2/+8
| | | | | | | Adds "not implemented" stubs for llSetVehicleFloatParam() and llSetLinkTexture() Some cleanup of LSO script enums
* * Applying Xantor's patch 0001089 - Added llRot2Angle, ↵Teravus Ovares2008-04-291-1/+2
| | | | llRot2Axis,llAxisAngle2Rot. Re-implemented llRot2Euler, llEuler2Rot
* * Committing Mantis #1061 - llRegionSay and llSetPrimitiveParams ↵Adam Frisby2008-04-261-0/+1
| | | | implementations. Thanks Melanie!
* * Applying mantis#1048 - Patch for osSetRegionWaterHeight()Adam Frisby2008-04-251-0/+1
|
* * Implements llScriptDangerTeravus Ovares2008-04-221-1/+1
| | | | | * Made the scene's scriptDanger method more generic so both the llScriptDanger method and the Script engine method use the same private method.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-2/+2
| | | | (this took a while to run).
* Moved script engine os* commands to OSSL_BuilIn_Commands.cs and ↵Tedd Hansen2008-04-201-31/+0
| | | | OSSL_BuilIn_Commands_Interface.cs where they belong.
* * Updates LSL2CS converterTeravus Ovares2008-04-201-0/+1
| | | | | | | | | * 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.
* * Various terrain engine fixesAdam Frisby2008-04-061-0/+4
| | | | | | * 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/+2
| | | | | | | | * 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.
* Implements llGetInventoryPermMask()alondria2008-03-241-1/+1
|
* Implements llGetObjectDetails()alondria2008-03-211-0/+1
|
* * Patch to add llSetLinkPrimitiveParams stubJustin Clarke Casey2008-03-191-0/+2
| | | | | | * Thanks krtaylor
* Formatting cleanup.Jeff Ames2008-03-181-3/+3
|
* Formatting cleanup.Jeff Ames2008-03-181-28/+25
|
* added some os helper functions for the texture drawing module. see ↵MW2008-03-151-0/+13
| | | | http://opensimulator.org/wiki/OSSL_TextureDrawing for function prototypes and example script. Will expand that page later.
* ODEPluginTeravus Ovares2008-03-101-0/+1
| | | | | | | | | * Added osSetPrimFloatOnWater(BOOL) to make Physical prim float at the water level. * osSetPrimFloatOnWater(TRUE); or osSetPrimFloatOnWater(FALSE); * By default, prim do not float at the water level. * More work is needed on the floating, but it's a start.
* * Added ODEPlugin Support for llSetBuoyancy. Set Buoyancy to 1 for space prim.Teravus Ovares2008-03-101-0/+1
| | | | | * Added WaterLevel support to the ODEPlugin. More on this later.
* Added Frist basic version on the VectorRenderModule, that allows scripts to ↵MW2008-03-081-0/+5
| | | | | | | do some basic drawing onto textures. Currently the method the scripts have to use is most likely not the most user friendly, but this should improve soon. And hope to allow SVG files (either loaded from a web site, or even script created) to be used. I will add a page to the wiki tomorrow, until then http://www.pastebin.ca/934425 is a example c# script that can be used to get a bit of a idea. Also added osSetDynamicTextureDataBlend and osSetDynamicTextureURLBlend that will allow the various textures to be blended together, but currently there are still a few bugs in them. So not ready for use yet.
* Thank you kindly, Ldviopeng for:Charles Krinke2008-03-081-1/+2
| | | | | | | Patch to implement the following LSL / OS functions llParcelPrimCount(60%) osSetParcelMediaURL
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Thank you very much, Hashbox for:Charles Krinke2008-02-181-1/+1
| | | | | | | | | | 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
* Thank you Hashbox for adding the Charles Krinke2008-02-171-1/+2
| | | | | osConsoleCommand Feature to ll-functions.
* We now support LSL stateTedd Hansen2008-02-101-1/+1
|
* Somehow llList2Float never made it into LSL_BaseClass and ↵alondria2008-02-061-0/+1
| | | | LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)
* Added llParseString2List (and a few extra methods to LSL_Types.list).alondria2008-02-021-1/+1
|
* Thanks to Hashbox for a patch to:alondria2008-02-011-1/+2
| | | | | | Implementing llStringTrim and hooking in osRegionNotice
* Hit a dead end with llParticleSystem (libsecondlife issues) so no ↵alondria2008-01-311-1/+1
| | | | functionality added yet, but did not want to loose work.
* Added license to new filesTedd Hansen2008-01-121-2/+2
|
* Linking osTerrainGetHeight, osTerrainSetHeight, and osRegionRestart to ↵alondria2008-01-121-0/+3
| | | | LSL_BaseClass to allow them to be called in LSL scripts.
* Added comments to ScriptEngine classes that explains what their purpose isTedd Hansen2007-12-301-0/+3
|
* * Optimized usingslbsa712007-12-271-1/+1
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Again, great thanks to Alondria for:Charles Krinke2007-12-241-1/+1
| | | | | | | | Adding:: llSetParcelMusicUrl(), llGetRootPosition(), llGetRootRotation(), llGetGeometricCenter(), llSetLocalRot(), llListReplaceList(), llGetObjectPrimCount(),llGetParcelDetails(), llGetParcelMaxPrims(), llWater(), llGetLocalRot(), and llGetAccel()
* Many Thanks to Alondria for adding:Charles Krinke2007-12-181-30/+31
| | | | | | | | | | | | The list type and a bunch of support functions to LSL Added/ReImplmented: llGetListLength(), llList2Integer(), osList2Double() (note rename), llList2Float(), llList2String(), llList2Key(), llList2Vector(), llList2Rot(), llList2List(), llDeleteSubList(), llGetListEntryType(), llList2CSV(), llCSV2List(), llListInsertList(), llDumpList2String(), Borked Still: llListSort(), llListRandomize(), llList2ListStrided(), llListFindList(), Changed: llHTTPRequest() (Made wrapper of LSL_Types.list->List<string>)
* Again, thanks to Alondria for:Charles Krinke2007-12-171-1/+1
| | | | | | | | | | Added: LinkNum to SceneObjectPart Added: Bunch-o settings of LinkNum in SceneObjectGroup Added: llGetNumberOfPrims() Added: llGetLinkNumber() Added: llGetLinkKey() Added: llGetLinkName() (and change to string return type)
* From Michael Osias (IBM)Sean Dague2007-12-121-1/+1
| | | | | | | | | | | | This patch implements the llHttpRequest function via a region module, HttpScriptsRequest. There were bits and peices in LSLLong_cmd_handler, which I moved into the region module, and just check for completed requests and dispatch the http_response callback event instead. works for me as of r2674
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-101-2/+2
| | | | notice of doom
* * Optimized usingslbsa712007-10-301-7/+8
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* fixing me some line endingsSean Dague2007-09-171-1/+1
|
* Implemented: llSetText, llResetScript Tedd Hansen2007-09-161-2/+2
| | | | | Implemented: llHTTPRequest (queue, thread, etc -- but not actuall call)
* remove ^M, as native storage should be UNIX format, and ^M in/out mashingSean Dague2007-09-131-635/+635
| | | | | | will happen on the windows side now that eol-style is correct