aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-02After another heroic and bloody battle, OpenSim Dino Expedition 1, killed ↵MW1-1/+0
off OsSetParcelMediaTime, which was only ever added for testing. And all the logic code of it has been commented out for a long time.
2009-02-26This adds a new osGetAgentIP function with threat level set to High. ItSean Dague1-0/+3
isn't tested, but it doesn't break anything else. The reason for this function is to let in world tools be used to coordiante out of world network services that need access to client ip addresses.
2009-02-18From: Christopher Yeoh <yeohc@au1.ibm.com>Sean Dague1-0/+1
The attached patch implements osGetDrawStringSize that looks like: vector osGetDrawStringSize(string contentType, string text, string fontName, int fontSize) in LSL. It is meant to be used in conjunction with the osDraw* functions. It returns accurate information on the size that a given string will be rendered given the specified font and font size. This allows for nicely formatted and positioned text on the generated image.
2009-02-16Thank you, cmickeyb, for a patch to ass two string functionsMelanie Thielker1-0/+6
to OSSL. Fixes Mantis #3173
2009-02-16Thank you, patnad, for a patch that adds 3 new discovery functionsMelanie Thielker1-0/+5
to OSSL. Applied with changes. Fixes Mantis #3172
2009-02-02Minor formatting cleanup.Jeff Ames1-1/+2
2009-02-01Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-0/+1
Added osTeleportAgent with region coordinates to support hyper grid scripted teleports.
2009-02-01Correct the method signature on llMakeFountain.idb1-1/+1
2009-01-28Add in a stub for llSHA1String. I believe it is the only one newCharles Krinke1-1/+2
function we were missing.
2008-11-06Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2008-11-06From: Christopher Yeoh <cyeoh@au1.ibm.com>Dr Scofield1-1/+2
The following patch implements osMakeNotecard as specified on the OpenSim website
2008-11-04From: Rob Smart <SMARTROB@uk.ibm.com>Sean Dague1-0/+7
This patch allows an object to directly message another object given its key using the method osMessageObject(key objectUUID,string message). to communicate with an object it must implement the dataserver listener method. The dataserver method is passed the key of the calling object and a string message.
2008-10-20Mantis #2438Melanie Thielker1-1/+1
Fix llSetVehicleFloatParam to accept LSL_Float
2008-10-05Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2008-10-03Reintroduces the discovery mechanism to use llRequestSimulatorData("", 128)Melanie Thielker1-0/+14
Causes the dataserver event to return "OpenSim" when running on OpenSim. Requires ThreatLevel to be "High" or above to function.
2008-10-03Mantis #2317Melanie Thielker1-0/+1
Thank you, fusspawn, for an implementation of osGetSimulatorVersion. This patch removes the llRequestSimulatorData(..., 128) hack and implements the functionality as an osFunction.
2008-09-30Mantis#2300. Thank you kindly, Idb for a patch that solves:Charles Krinke1-8/+8
A number of the deprecated functions had missing parameters causing compile errors. These included: llSound, llMakeExplosion, llMakeFountain, llMakeSmoke, llMakeFire, llPointAt, llXorBase64Strings, llSetPrimURL
2008-09-29Mantis#2299. Thank you kindly, Idb for a patch that:Charles Krinke1-2/+2
OS/SL script conformance, implement llSoundPreload and llRemoteLoadScript to behave as in SL. In SL llSoundPreload appears to do nothing. In OS llRemoteLoadScript shouts an error when invoked "Deprecated. Please use llRemoteLoadScriptPin instead."
2008-09-26Thank you, idb, for a patch that implements the stubs for llGetAgentLanguage()Melanie Thielker1-0/+1
2008-09-26Full API convergence. Api is back in LSL_Api.cs and OSSL_Api.cs.Melanie Thielker1-0/+1
The binaries are still different, but that is only a small step away now. The OSSLPrim has been removed. This commit will breal all scripts using Prim.Scale(), etc, syntax. It was not secure and will have to be brought back in another form.
2008-09-23Mantis #2243Melanie Thielker1-611/+349
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.
2008-09-18From: Robert Smart (SMARTROB@uk.ibm.com)Dr Scofield1-1/+3
Patch for new scripting method osParseJSON. also, a couple of warning bugs killed.
2008-09-15Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke1-0/+4
adds the new function osTeleportAgent().
2008-09-13Change all LSL functions to return LSL types instead of base types.Melanie Thielker1-128/+128
Remove some unused osFunctions that were left in the LSL function file from the separation way back when. Inline the osSetParcelMediaURL code to get rid of the osFunction. Really need to add a way for one API to call another.
2008-08-13Port the llParcelMediaQuery forward to the new Shared/ directoryMelanie Thielker1-1/+1
Add a Dictionary for faster lookup of cached items.
2008-07-09for testing purposes only:MW1-0/+1
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.
2008-07-01From: kurt taylor (krtaylor)Dr Scofield1-0/+2
Another new OSSL function for returning the name of the script engine currently running, osGetScriptEngineName, added to both DotNet and XEngine OSSL API.
2008-06-28From: Kurt Taylor <krtaylor@us.ibm.com>Dr Scofield1-4/+4
Patch to fix the passed parms and properly show llTakeCamera and llReleaseCamera as deprecated. Patch for both XEngine and DotNetEngine.
2008-06-24* Applied patch from Melanie, mantis issue #1581 - "Refactor LSL language, ↵lbsa712-0/+717
api and compiler out of XEngine" "First stage in a major Script Engine refactor, that will result in the LSL implementaions ebing reconverged. Not there yet, but one major part is done." Thank you, Melanie!