aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (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-09-06remove warningJustin Clark-Casey (justincc)1-1/+2
2009-09-01Experimental. Set attachment flag early on rezzing from inventory.Melanie1-1/+0
2009-08-31Change the return value if the compiler to "object" to allow compilersMelanie4-7/+7
to return dynamic method objects
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 Valadares4-7/+61
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-16* ShortVersion, another attempt at fixing the test thread death that ↵Teravus Ovares (Dan Olivares)1-1/+2
randomly occurs. * LongVersion nIni may be causing the test thread death. Pausing OpenSimulator during startup causes a nIni error that makes debugging startup operations difficult for users. It might be because when it's in pause mode, something else reads from the nini config passed? If it is, it might not be fixable.. however, if it's concurrency that causes nini death it would make sense to give each section of the tests a new IConfigSource so that they don't read from the same configsource at the same time.
2009-08-16* minor: commentsTeravus Ovares (Dan Olivares)1-0/+16
2009-08-15Changed FromAssetID to FromItemIDDiva Canto1-1/+1
2009-08-15* whoops, missing a /Teravus Ovares (Dan Olivares)1-1/+1
2009-08-15* Comment out XEngineTest that doesn't appear to test anything. It just ↵Teravus Ovares (Dan Olivares)1-0/+3
creates a scene named 'My Test' which just happens to be the last scene displayed in the nunit log before it goes boom.
2009-08-14Remove one more sponsor referenceMelanie1-1/+1
2009-08-14Remove the script sponsor logic because scripts are timing out again.Melanie4-19/+15
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-14Add some extra info to script load messagesMelanie1-2/+2
2009-08-10Replace the Replaceable modules nameMelanie2-2/+2
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-07Experimental! Implement ISponsor in ScriptInstanceMelanie1-12/+7
2009-08-07Another stab at cmickeyb's patch for script GC.Melanie9-55/+55
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.Melanie9-59/+55
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>Melanie9-55/+59
|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-08-04 Slight change to state management for attach scheduling.Alan Webb2-11/+9
Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
2009-08-04 This change adds support for the attach event in scripts.Alan Webb2-0/+17
[1] Added a new OnAttach event to Scene/EventManager [2] Hooked up existing attach event handler in XEngine. [3] Modified SceneGraph and Scene.Inventory to trigger attach events at the appropriate places. I was forced to distribut the changes across two files because of the way attach processing is distributed across the two files. [4] In the case of RezSingleAttachmentFromInventory it is necessary to handle event scheduling in a special way. There is no synchronous path available, so the fact that this object is attached, and who it is attached to, is cached when the ScriptInstance is created. When the script is started, the attached handler is driven after on_rez (but before changed, this should be reviewed). Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
2009-08-04Add plumbing for the SceneObjectDeleter to wait for the script engine toMelanie4-0/+20
allow final deletion of objects. Meant to support the attach(NULL_KEY) event,
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-10Committing the interface change and the addition to the modules to getMelanie Thielker2-0/+10
the ball rolling on replacable modules. No user functionality yet