aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-10* Added Linear Acceleration reporting to the ODEPlugin.Teravus Ovares1-2/+1
* Added support for LSL llGetOmega (Rotational/Angular Velocity)- ODEPlugin is the only physics plugin that reports it.
2008-03-10ODEPluginTeravus Ovares1-0/+14
* 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.
2008-03-10* Added ODEPlugin Support for llSetBuoyancy. Set Buoyancy to 1 for space prim.Teravus Ovares1-1/+7
* Added WaterLevel support to the ODEPlugin. More on this later.
2008-03-08Remove two warnings with unused variables.Charles Krinke1-2/+0
2008-03-08Thank you very much, Ldviopeng for :Charles Krinke1-3/+54
Patch to implement the following LSL functions: llGetObjectPermMask() llSetObjectPermMask()
2008-03-08Added Frist basic version on the VectorRenderModule, that allows scripts to ↵MW1-0/+66
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.
2008-03-08Thank you kindly, Ldviopeng for:Charles Krinke1-2/+87
Patch to implement the following LSL / OS functions llParcelPrimCount(60%) osSetParcelMediaURL
2008-03-07* Applied patch #719 from lvoidpeng.lbsa711-2/+3
* Implements llGetOwnerKey Thanks, lvoidpeng!
2008-03-06* Disabled ancient TerrainEngine.Adam Frisby1-57/+3
* Enabled new TerrainModule. (The king is dead, long live the king!) * Use the console command: "script terrain save file.r32" / "script terrain load file.r32" to load/save terrain. Now uses the extension to determine file format. * MANY of the old terrain features do not have a replacement function in the new module yet, this needs to be corrected, but has not been done so far. This being said, the new module is faster and more efficient and should be a good replacement.
2008-03-04Added copyright heaaders. Minor cleanup.Jeff Ames1-1/+1
2008-03-03* Removed a bunch of compiler warnings.Adam Frisby1-1/+0
2008-03-01Thank you very much, Kinoc for:Charles Krinke1-17/+72
* 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-28From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague1-9/+418
This patch is intended to implement the following functions: llIntegerToBase64 llBase64ToInteger llParseStringKeepNulls None of these functions are dependent upon state elsewhere in the SIM, so they are appropriately self-contained. I've tested them out of context, and from a script attached to an object in my test region.
2008-02-25Moved AsyncCommandManager into separate classes under "plugins".Tedd Hansen1-7/+7
2008-02-25Initial patch for llSensor*Tedd Hansen1-19/+125
llSensor, llSensorRepeat, llSensorRemove, llDetectedName, llDetectedKey, llDetectedOwner, llDetectedType, llDetectedPos, llDetectedVel, llDetectedRot Thank you very much kinoc! :)
2008-02-24By now you all have learned that when I'm committing scripting usually ↵Tedd Hansen1-55/+55
doesn't work, so no big surprise. :) Modified baseclass for compiled script to incorp new OSSL commands class and renamed it to follow standards and all that. Scripts may work again. :)
2008-02-20Minor cleanup.Jeff Ames1-31/+21
2008-02-20llSetTimerEvent updated to use ticks instead of DateTime for internal timing.Tedd Hansen1-1/+1
2008-02-20llSetTimerEvent was setting seconds as milliseconds causing major problems ↵Tedd Hansen1-1/+1
in timed scripts...
2008-02-19From: Michael Osias <mosias@us.ibm.com>Sean Dague1-2/+2
This patch implements the llSendRemoteData command and fixes mantis 552, and possibly 586.
2008-02-18Thank you very much, Hashbox for:Charles Krinke1-6/+13
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
2008-02-17Thank you Hashbox for adding the Charles Krinke1-0/+10
osConsoleCommand Feature to ll-functions.
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-1/+1
* Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
2008-02-10state_entry is now executed on state change.Tedd Hansen1-1/+12
2008-02-10We now support LSL stateTedd Hansen1-2/+3
2008-02-10Implements llListStatistics() and a bunch-o-LSL_Types.list statistical ↵alondria1-3/+41
methods. Added LIST_STAT_HARMONIC_MEAN in addition to LL's LIST_STAT_*
2008-02-10Implemented llGetParcelFlags() and llGetRegionFlags(). I don't think the ↵alondria1-4/+2
RegionFlags are currently implemented within EstateSettings, thus this is always 0.
2008-02-10Implements llGetObjectMass()alondria1-1/+5
2008-02-10Thank you very much, Hashbox for :Charles Krinke1-1/+1
Add scene-debug command to Enable/Disable scripting, collision, and physics from console.
2008-02-06Cleaned up some unreachable code warnings.Jeff Ames1-10/+0
2008-02-06* Added Active Scripts to report the number of scripts running to Sim Stats Teravus Ovares1-6/+340
* Added Script Performance to report the number of functions run per second to Sim Stats. * Removed a few warnings (@.@ up to 50 now)
2008-02-06Somehow llList2Float never made it into LSL_BaseClass and ↵alondria1-1/+1
LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)
2008-02-05Converted logging to use log4net.Jeff Ames1-2/+3
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Added explicit Quaternion->string and list->string conversions.alondria1-2/+94
Some preliminary work on llSetStatus and llGetStatus.
2008-02-05* Refactored the sound calls to SceneObjectPart Teravus Ovares1-114/+5
* Fixed a few bugs * Wrote an example module to make certain event systems more mature.
2008-02-04Patch from mikkopa/_someone Thanks! adds support for llPreloadSound, ↵Teravus Ovares1-4/+92
llTriggerSound, llPlaySound, llPreloadSound. * Time to make music boxes?
2008-02-04* Whole buncha stuff.Adam Frisby1-0/+12
2008-02-03Added llRot2Fwd, llRot2Left, and llRot2Up as well as explicit vector->string ↵alondria1-3/+3
casting. (Thanks to dalien on informing me how easy the math was for these).
2008-02-02Implements LSL function llDialog().alondria1-1/+13
The ScriptDialogReply packet handler is a bit of a hack job. It is currently handled similar to ChatFromViewer, which will trigger the listen() event, however this is not exactly how LL's implementation works and will/can be fixed up later.
2008-02-02Added llParseString2List (and a few extra methods to LSL_Types.list).alondria1-2/+48
2008-02-02* Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares1-1/+10
of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
2008-02-02* Committing some untested stuff regarding texture animations. This won't ↵Teravus Ovares1-1/+10
break anything, but the llSetTextureAnim function is completely untested.. (though it may be functional once the script engine works again)
2008-02-01SCRIPTING STILL BROKENTedd Hansen1-2/+2
Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
2008-02-01Fixed errors being thrown by invalid PSYS_SRC_TARGET_KEY's in ↵alondria1-1/+9
llParticleSystem - defaults to source prim (consistent with LL grid). Should fix mantis 427.
2008-02-01Thanks to Hashbox for a patch to:alondria1-0/+8
Implementing llStringTrim and hooking in osRegionNotice
2008-02-01* Added more supported feature to particlesystems. While this appears to ↵Teravus Ovares1-3/+28
have a libsl update... it's really a fix to the libsl version we're already using because of a bug in the particlesystem implementation * Added two new simstat counters in the simstat enum for the RCCS. (I'll find something cool to put in them) * fixed a time waster in ODEPlugin.cs
2008-01-31* Adding limited support for LLParticleSystem.Teravus Ovares1-14/+38
* We still need to set the 'default particle' texture as, a particle system with no texture set doesn't work. * The particle System Flags don't seem to be quite right yet as some flags don't seem to have an effect. So no alpha in/out, color change, affected by the wind, etc.. yet * Thanks to Alondria for some massive work here. This update just tweaks a few things that she did.
2008-01-31Hit a dead end with llParticleSystem (libsecondlife issues) so no ↵alondria1-23/+48
functionality added yet, but did not want to loose work.
2008-01-21Surround the "non implemented" in an else clause if face is inappropriate for:Charles Krinke1-16/+34
llSetColor, llSetAlpha, llGetColor, llSetTexture, llOffsetTexture, llRotateTexture & llGetTexture
2008-01-17Added data structure to be passed through event execution queue so that ↵Tedd Hansen1-1/+2
events can use llDetect*-commands to find information about event.