aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-09-07llRot2Euler() now returns angles -PI < angle < PIdahlia1-3/+8
2009-09-07random drive-by maths optimization in llRot2Euler() and llEuler2Rot()dahlia1-8/+8
2009-09-06remove warningJustin Clark-Casey (justincc)1-1/+2
2009-08-31- making font name used by VectorRenderModule configurable: can be setdr scofield (aka dirk husemann)3-0/+15
via [VectorRender] font_name = "Comic Sans MS" in OpenSim.ini - adding osSetFontName OSSL function
2009-08-28Implements osDrawPolygon, similar to already implemented osDrawFilledPolygonArthur Valadares3-0/+25
2009-08-25Implemented osPenCap, that sets EndCap and StartCap to Pen. This allows ↵Arthur Valadares3-0/+15
using arrow, diamond, round and flat caps. * Made image request safer, if it can't find an image for any reason, draws a square where the image should be and a message alerting the user.
2009-08-21Adds osDrawPolygon to OSSL. Works a little different then other OS Drawing ↵Arthur Valadares3-0/+25
functions, this one has no start and end point, but a number of points that will form the desired polygon. Only FilledPolygon implemented so far. * Also added some LSL transparent type conversion, as it's done in LSL scripting (string to integer, float to string, etc)
2009-08-21Add copyright header. Formatting cleanup.Jeff Ames1-15/+17
2009-08-21* Moves NPC Creation across AppDomains to prevent a major perfomance issue.Adam Frisby1-0/+2
2009-08-21* Protip: Declare publically accessible functions, as public functions.Adam Frisby1-4/+6
2009-08-21* Addendum to previousAdam Frisby1-0/+17
2009-08-21* Fleshes more of NPCModule out.Adam Frisby2-0/+58
* Implements some OSSL commands: key osNpcCreate(string user, string name, vector position, key cloneFrom); void osNpcMoveTo(key npc, vector position); void osNpcSay(key npc, string message); void osNpcRemove(key npc); * Untested. Requires ThreatLevel.High.
2009-08-20* Deal with git thinking that file was changed even though it wasn't and ↵Teravus Ovares (Dan Olivares)1-24/+24
it's blocking a pull
2009-08-21* Implements a bunch of stuff in NPCModuleAdam Frisby1-24/+24
2009-08-18osGetLinkPrimitiveParams fixJeff Lee1-1/+25
2009-08-15Changed FromAssetID to FromItemIDDiva Canto1-1/+1
2009-08-14Remove the script sponsor logic because scripts are timing out again.Melanie3-13/+14
This needs to be looked into. This commit, unfortunately, reinstates a memory leak in regions that see significant script fluctuation, e.g. lots of scripted attachments, or script development.
2009-08-09Formatting cleanup.Jeff Ames4-12/+12
2009-08-07This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)2-6/+7
lets you configure region sizes to be smaller without crashing the region. I remind you that regions are still square, must be a multiple of 4, and the Linden client doesn't like anything other then 256. If you set it bigger or smaller, the terrain doesn't load in the client, the map has issues, and god forbid you connect it to a grid that expects 256m regions.
2009-08-08Update threat level descriptionMelanie1-0/+1
2009-08-07Thank you, Godfrey, for a patch that implements osGetLinkPrimitiveParamsMelanie4-21/+53
Fixes Mantis #3979 Applied with changes. Changed ThreatLevel to High since all discovery functions are a high threat. Overriding that is the responsibility of the grid owner.
2009-08-07Another stab at cmickeyb's patch for script GC.Melanie6-41/+32
Moved the Close() for the appdomain-hosted parts into a new destructor on ScriptInstance.
2009-08-07Add a method to init the OSSL Api's m_LSL_Api member back to the OSSL ApiMelanie1-1/+9
2009-08-07Revert the XEngine memleak patch, it causes premature GC.Melanie6-32/+41
This matches behavior seen with an earlier attempt to do this, apparently the sponsor mechanism does't work in Mono
2009-08-06|From: James J Greensky <jame.j.greensky@intel.com>Melanie6-41/+32
|Date: Wed, 5 Aug 2009 09:51:52 -0700 |Subject: [PATCH] Closed two major memory leaks for scripted objects | |Two major memory leaks for the scripted objects were fixed |- One leak had to do with remoting acrossing app domains. When a script and | its controlling agent communicate across an application boundary, it calls | functions on a stub proxy object that then invokes the remote method on | the object in the other app domain. These stub objects (two for each script) | were setup to have infinate lifetimes and were never being garbage collected. |- The second leak was the result of adding a scene object part instance method | to a scene event and never removing it. This cause the event's delegate list | to maintain a link to that object which is then never freed as the scene event | object is never destroyed. Patch applied, please direct feedback to me. Possible issue: Longtime idle scripts like vendors may fail.
2009-08-05remove some more mono compiler warningsJustin Clark-Casey1-1/+1
2009-08-05* Remove some mono compiler warningsJustin Clark-Casey1-1/+1
2009-07-28Formatting cleanup.Jeff Ames1-205/+198
2009-07-27Than you, otakup0pe, for a patch to correct llSetPos & friends' behaviorMelanie Thielker1-14/+24
for child prims. Fixes Mantis #3931
2009-07-25* Updates libOMV to version 0.7.0Teravus Ovares1-2/+4
* Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
2009-07-23Formatting cleanup.Jeff Ames1-14/+14
2009-07-18Thank you, otakup0pe, for a patch that enables basic auth with LSLMelanie Thielker1-1/+17
2009-07-15A stab at implementing llSetDamage. Not persistent.Melanie Thielker1-1/+1
2009-07-14Remove redundant distance limitaion in llRezAtRootMelanie Thielker1-5/+0
Fixes Mantis #3887
2009-07-11Formatting cleanup.Jeff Ames1-4/+4
2009-07-09Thank you kindly, Godfrey, for a patch that:Charles Krinke1-2/+4
The vector parameter to llSetPos() specifies an absolute position for an unlinked prim or the root prim of a linkset; however, when the function is used by a child prim, the vector specifies a relative offset from the root prim. The changed introduced in llSetPos() treats this value as an absolute position in all cases, which has the unintended effect of mangling the position of child prims.
2009-07-08Add DisableUndergroundMovement to scrpting API to allow underground movementMelanie Thielker1-1/+3
if needed. Defaults to true, so those who want to continue using underground scripted prims need to add that option and set it.
2009-07-08Prevent scripts from moving prims undergroundMelanie Thielker1-1/+4
2009-07-06Change fields and methods in LSL API from private to protected, make someMelanie Thielker1-99/+104
methods virtual
2009-07-01Restore the functionality that was removed in r9928. This lets the loadMelanie Thielker1-1/+1
balancer plugin work again. Create a new method, GetClientEP, to retrieve only the EndPoint for script usage. Marked the purpose of the method in IClientAPI.cs with a warning. Also restored the corresponding SetClientInfo functionality.
2009-06-29From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague1-0/+1
Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
2009-06-28Thank you kindly, Grumly57 for a patch that solves:Charles Krinke1-0/+1
When a sit position is modified by llSitTarget and the sim is restarted, the object sit position is lost until llSitTarget is applied again.
2009-06-21Do llEscapeURL with Uri.EscapeDataString instead of Uri.EscapeUriString.Homer Horwitz1-1/+1
Not exactly right, according to the LSL docs, but similar enough, I hope. Fixes Mantis #3825.
2009-06-10Formatting cleanup.Jeff Ames4-9/+9
2009-06-09From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield3-10/+10
This change addresses two issues: [1] It adds a flag field to the blendface call which allows the caller to indicate whether or not the generated asset is temporary, and whether or not the asset being replaced should be explicitly retired fromt the memory cache. The decimal values correspond to: 0 - Permanent asset, do not expire old asset 1 - Permanent asset, expire old asset 2 - Temporary asset, do not expire old asset 3 - Temporary asset, expire old asset '3' corresponds to the default behavior seen today, and is the continued behavior of the non-blendface calls. [2] The dynamic texture routines are highly-asynchronous and can be scheduled simultaneously on a multi-core machine. The nature of the texture management interfaece is such that updates may be lost, and the nature of asynchornous operation means that they may be processed out of order. A lock has been added to ensure that updates are at least atomic. No attempt has been made to enforce ordering. The lock applies to the SceneObjectPart being updated and is held for the lifetime of the TextureEntry used to carry texture updates (the one instance carries all faces supported by the prim). Users of these services should remember that the dynamic texture call is asynchronous and control will be returned *before* the texture update has actually occurred. As a result, a isubsequent GetTexture call may not return the expected asset id. A script must wait for the corresponding TEXTURE_CHANGED event before retrieving any texture information.
2009-06-06Correct an error where the config file name was always considered to be aMelanie Thielker1-5/+2
local file. This caused llHttpRequest and llSetInventoryPermsMask to fail on regions that load their config from a web server
2009-06-03From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield3-0/+47
This patch adds oar file date and time (UTC) meta data to an oar file when it is created. It also adds a unique ID, though this id does not in anyway identify the machine that the oar file was created on. When an oar file with this meta data is loaded this extra information is saved with the region settings and available via LSL through: - osLoadedCreationDate() - osLoadedCreationTime() - osLoadedCreationID() If there is no meta data these fields will be blank. Subsequent oar file loads will erase the information for the previous oar file load. Persistence has only been implemented for MySQL, the other backends need updating. Overall this allows us to much more easily identify the specific version of software that clients are using. Its very straightforward to edit the oar file to change the ID string to be something more human friendly. Included in the patch is a new file OpenSim/Data/MySQL/Resources/030_RegionStore.sql required for the MySQL DB migration. btw I had a chat with justincc about this a few weeks ago since he wrote the oar file import/export and he sounded happy to accept something that included date/time information but didn't want anything that would silently leak private information like machine names.
2009-06-03Thanks aduffy70 for Mantis #3762: A patch to fix llGround, llGroundNormal, ↵Dahlia Trimble1-42/+80
and llGroundSlope
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames17-17/+17
LICENSE.txt.
2009-05-27From: Chris Yeoh <cyeoh@au1.ibm.com>Dr Scofield1-1/+4
The attached patch implements llPassTouches. It has been added to the export/import XML along with the flag for AllowedInventoryDrop. The MySQL backend has been updated as well, though I haven't done one of those before so could do with a check. I added the migration mysql file as well. The other data backends need updating as well.