aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-20Another stab at http://opensimulator.org/mantis/view.php?id=4858. Eliminated ↵Diva Canto1-28/+36
more nested locks.
2010-07-20One more stab at http://opensimulator.org/mantis/view.php?id=4858.Diva Canto1-33/+33
Eliminated the nested locks of m_Scripts and m_PrimObjects.
2010-07-17Allow use of old angle rules PSYS_SRC_INNERANGLE and PSYS_SRC_OUTERANGLE in ↵Justin Clark-Casey (justincc)1-0/+20
llParticleSystem() This is a patch from http://opensimulator.org/mantis/view.php?id=3201 Thanks Micheil Martin!
2010-07-17Fix bugs in llRot2Euler()Justin Clark-Casey (justincc)1-21/+7
Applies patch in http://opensimulator.org/mantis/view.php?id=4482. Thanks Micheil Merlin!
2010-07-17Add region name on the end of script startup debug messagesJustin Clark-Casey (justincc)1-2/+4
2010-07-08These 2 files want to be committed.Diva Canto2-10/+10
2010-07-08llVecNorm() now returns a zero-length vector when one is supplied as input. ↵dahlia1-7/+2
Addresses Mantis #4752
2010-07-08fix a potential division by zerodahlia1-4/+9
2010-07-02Fox another scripting nasty. Stuff no system.string objects into listsMelanie Thielker1-1/+1
2010-07-02Fix a dumb little sign error that makes a LSL wiki example failMelanie Thielker1-2/+2
2010-06-30Fix scripts in rezzed objects not starting (Mantis #4775)Melanie1-0/+5
2010-06-29Fix the XML serializationt to provide an empty script state element ifMelanie1-4/+28
the script hasn't yet saved state, or can't save state because of a loop
2010-06-29This file wants to be committed.Diva Canto1-70/+70
2010-06-28Thanks Micheil Merlin for Mantis #4784: [PATCH] llRotBetween does not return ↵dahlia1-18/+71
correct rotations for a 180 degree angle between vectors Signed-off-by: dahlia <dahliaTrimble@gmail.removeme.com>
2010-06-25This file wants to be committed. Line endings mess up.Diva Canto1-14/+14
2010-06-22Line ending fixJohn Hurliman1-14/+14
2010-06-19fix faulty profile cut parameter checking in llSetPrimitiveParams() - see ↵dahlia1-6/+16
Mantis #4510
2010-06-14osGetAvatarList: Use AbsolutePosition instead of the position of the physics ↵Tom Grimshaw1-6/+3
actor, or the avatar disappears when they sit down.
2010-06-12Resume scripts that have been rezzed from a primMelanie1-0/+2
2010-06-11Remove the cm* function namespaceMelanie Thielker2-16/+1
2010-06-11Rename CM files to LSMelanie Thielker3-26/+26
2010-06-11Rename cm* function set to ls* (for LightShare)Melanie Thielker3-15/+30
2010-06-11Clone cmGetAvatarList into osGetAvatarList for more generic use.Melanie Thielker3-0/+33
2010-06-09If a script is deleted before it gets compiled, don't even bother to tryMelanie1-0/+19
compiling it
2010-06-02Add a forgotten security check. Make the new functions only work on primsMelanie Thielker1-0/+6
owned by the host prim owner.
2010-06-02Add two new osFunctions:Melanie Thielker5-0/+50
list osGetPrimititveParams(key prim, list rules); osSetPrimitiveParams(key prim, list rules);
2010-06-01Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include theMelanie1-19/+19
needed libraries
2010-05-31Fix create selection getting overwritten by multiple updates for the same prim.Melanie Thielker1-1/+1
2010-05-30Changes osFunction permissions again. Allow_ with a list of UUIDs now againMelanie Thielker1-16/+51
refers to prim OWNERS. A new option set, Creators_, is added to allow selection by script creator. For existing installs, this means no functional change. The warning from my prior commit doesn't apply anymore.
2010-05-30Changes OSSL Api permissions for the case of UUID list. In 0.6.9, the UUIDsMelanie Thielker1-3/+18
would be the IDs of the prim owners in whose prims these functions would run. This changes it so the UUID is the SCRIPT CREATOR instead. Further, osfunctions limited by uuid will not run if the creator and owner differ and the owner has mod rights on the script. There is still a danger in passing moodifiable scripts to others, as they can insert a harmful function, then remove the mod rights to make it runnable. As before, care needs to be taken, but where it was modable prims that were the risk before, modable scripts are the weak spot now. In cases where prim owner == script creator == script owner, nothing will change.
2010-05-13Implements three new OSSL functions for parcel management: osParcelJoin ↵OpenSim Master3-0/+101
joins parcels in an area, osParcelSubdivide splits parcels in an area, osParcelSetDetails sets parcel name, description, owner and group owner. Join and Subdivide methods in LandChannel are exposed.
2010-05-10Return agents when angle is PIMelanie1-0/+4
Fixes Mantis #4703
2010-05-10Fix a null ref on region crossingMelanie1-1/+4
2010-05-08More cleaning on presence. Friends online/offline works again.Diva Canto1-1/+3
2010-05-05Removed a test for a "can't happen" case. ParentGroup is never null anymore.Melanie Thielker1-9/+1
2010-05-03Add URL_REQUEST_* script constantsMelanie1-0/+2
2010-04-28Compiler.cs contained method GetCompilerOutput which, apparently,unknown1-4/+7
was not used, but exactly the same path was calculated inline. This patch does some minor refactoring by replacing inline path calculation with GetCompilerOutput. This doesn't actually affect anything, just minor prettifying of the code
2010-04-21Make the detection cone in attachments face in the direction of the avatar,Melanie1-0/+9
not the relative rotation of the attachment towards the avatar.
2010-04-19Stopgap measure. Disable the recent script startup changes until I can cure theMelanie1-1/+1
race condition.
2010-04-19All scripts are now created suspended and are only unsuspended when the objectMelanie3-0/+35
is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
2010-03-31First attempt at fixing mantis #4641. It's better but there are now some ↵Diva Canto3-7/+7
issues with permissions. (looks like my commit is going to touch CM files, I'm going to let it do it - eof only)
2010-03-31Add missing licenses. Change relicensed LightShare module to proper BSDMelanie2-2/+56
licensing.
2010-03-31Adding the LightShare module and scripting API. This code was written byMelanie4-0/+651
TomMeta and was contributed by Meta7.
2010-03-31Committing the LightShare code, which was developed by TomMeta of Meta7.Melanie1-0/+2
This allows scripts to set WindLight parameters for clients connecting to a region. Currently, this is only supported by the Meta7 viewer.
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake1-1/+1
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2010-03-19Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake3-83/+68
GetAvatars have been removed to consolidate locking and iteration within SceneGraph. All callers which used these to then iterate over presences have been refactored to instead pass their delegates to Scene.ForEachScenePresence(Action<ScenePresence>).
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames1-1/+1
2010-03-07Small consistency changeMelanie1-2/+2
2010-03-06- supporting llTextBoxunknown1-2/+27
Signed-off-by: Melanie <melanie@t-data.com>
2010-03-06- implementing server 1.38 functionsunknown4-10/+114
Signed-off-by: Melanie <melanie@t-data.com>