aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Work on TeleportStart: renamed method from TeleportLocationStart to ↵Diva Canto2010-08-161-2/+0
| | | | TeleportStart, and now sending this upon all teleports, not just some, and in the right place (EntityTransferModule).
* osGetAvatarList: Use AbsolutePosition instead of the position of the physics ↵Tom Grimshaw2010-06-141-6/+3
| | | | actor, or the avatar disappears when they sit down.
* Clone cmGetAvatarList into osGetAvatarList for more generic use.Melanie Thielker2010-06-111-0/+27
|
* Add two new osFunctions:Melanie Thielker2010-06-021-0/+16
| | | | | list osGetPrimititveParams(key prim, list rules); osSetPrimitiveParams(key prim, list rules);
* Changes osFunction permissions again. Allow_ with a list of UUIDs now againMelanie Thielker2010-05-301-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.
* Changes OSSL Api permissions for the case of UUID list. In 0.6.9, the UUIDsMelanie Thielker2010-05-301-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.
* Implements three new OSSL functions for parcel management: osParcelJoin ↵OpenSim Master2010-05-131-0/+82
| | | | 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.
* Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake2010-03-191-9/+11
| | | | 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>).
* Changed asset CreatorID to a stringJohn Hurliman2010-02-221-1/+1
|
* * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-221-1/+1
| | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* * HGScene is no more.Diva Canto2010-01-301-1/+0
| | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* Removed obsolete interface IHyperlink.Diva Canto2010-01-241-13/+4
|
* Merge branch 'master' into presence-refactorMelanie2010-01-161-1/+5
|\ | | | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
| * minor: formattingJustin Clark-Casey (justincc)2010-01-111-1/+5
| |
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-111-1/+1
| |
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-8/+6
|/ | | | | * HG is seriously broken here * Compiles. Untested.
* Formatting cleanup. Add copyright headers.Jeff Ames2010-01-041-79/+79
|
* Adds osKickUser and osSetSpeedunknown2009-12-311-0/+77
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Prevent OSSL from crashing if the sim was loaded from a remote config andMelanie2009-12-151-3/+3
| | | | osGetGridName, osGetGridNick or osGetGridLoginURI is used.
* * Mistaken ThreatLevel classification on osGetSimulatorMemory - should have ↵Adam Frisby2009-12-131-1/+1
| | | | been MODERATE.
* * Implements OSSL function: osGetSimulatorMemory - returns the current ↵Adam Frisby2009-12-131-0/+13
| | | | | | | | amount of memory allocated to the simulator process (Moderate Threat Level). * Cleans redundant information out of the Simulator Version. Versions now look like: "OpenSimulator 0.6.9(dev) Unix/Mono" * [Minor] additional log info for MySQLInventoryData
* Added osGetRegionStats() function, to return a number of sim statisticsJeff Lee2009-11-261-1/+8
|
* Added osGetRegionStats() function, to return a number of sim statisticsJeff Lee2009-11-261-0/+15
|
* Change osTeleportAgent parameters from long to int. That numerical range isMelanie2009-11-251-2/+2
| | | | | not even supported by the underlying type, so there is no need to ask for a type the script can not even supply.
* refactor: move most animation methods from ScenePresence into a new ↵Justin Clark-Casey (justincc)2009-11-171-4/+5
| | | | ScenePresenceAnimator class
* Apply patch http://opensimulator.org/mantis/view.php?id=4369Justin Clark-Casey (justincc)2009-11-121-19/+56
| | | | Adds osGetMapTexture() and osGetRegionMapTexture() methods to retrieve region map texture uuids
* Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-5/+2
| | | | unknown asset type, and log an error if it ever does happen
* Removing EntityBase.RotationJohn Hurliman2009-11-041-1/+8
|
* Object update prioritization by Jim Greensky of Intel Labs, part one. This ↵John Hurliman2009-10-151-2/+2
| | | | implements a simple distance prioritizer based on initial agent positions. Re-prioritizing and more advanced priority algorithms will follow soon
* Merge branch 'diva-textures-osgrid'Melanie2009-10-041-1/+1
|\
| * * Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman2009-10-021-1/+1
| | | | | | | | | | | | Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
* | - cleaning up LandData/ILandObject capitalization issuesdr scofield (aka dirk husemann)2009-10-021-5/+5
| | | | | | | | - adding LandDataSerializer to OAR mechanics
* | First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto2009-09-261-10/+15
| | | | | | | | minimally. A few bugs to catch now.
* | addition of a new script function osSetParcelSIPAddress(string SIPAddress), ↵Rob Smart2009-09-181-0/+29
|/ | | | | | | | now including iVoiceModule This patch allows the land owner to dynamically set the SIP address of a particular land parcel from script. This allows predetermined SIP addresses to be used, making it easier to allow non OpenSim users to join a regions voice channel. Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
* fix: unicode notecards not surviving script treatment (fixes #4119 ---dr scofield (aka dirk husemann)2009-09-091-4/+4
| | | | perhaps).
* - making font name used by VectorRenderModule configurable: can be setdr scofield (aka dirk husemann)2009-08-311-0/+9
| | | | | | | | | | | via [VectorRender] font_name = "Comic Sans MS" in OpenSim.ini - adding osSetFontName OSSL function
* Implements osDrawPolygon, similar to already implemented osDrawFilledPolygonArthur Valadares2009-08-281-0/+19
|
* Implemented osPenCap, that sets EndCap and StartCap to Pen. This allows ↵Arthur Valadares2009-08-251-0/+9
| | | | | | 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.
* Adds osDrawPolygon to OSSL. Works a little different then other OS Drawing ↵Arthur Valadares2009-08-211-0/+19
| | | | | | 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)
* * Moves NPC Creation across AppDomains to prevent a major perfomance issue.Adam Frisby2009-08-211-0/+2
|
* * Fleshes more of NPCModule out.Adam Frisby2009-08-211-0/+52
| | | | | | | | | * 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.
* Remove the script sponsor logic because scripts are timing out again.Melanie2009-08-141-3/+3
| | | | | | 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.
* Formatting cleanup.Jeff Ames2009-08-091-5/+5
|
* Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensimMelanie2009-08-081-2/+2
|\
| * This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)2009-08-071-2/+2
| | | | | | | | 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.
* | Update threat level descriptionMelanie2009-08-081-0/+1
|/
* Thank you, Godfrey, for a patch that implements osGetLinkPrimitiveParamsMelanie2009-08-071-0/+20
| | | | | | | 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.
* Another stab at cmickeyb's patch for script GC.Melanie2009-08-071-4/+3
| | | | | Moved the Close() for the appdomain-hosted parts into a new destructor on ScriptInstance.
* Add a method to init the OSSL Api's m_LSL_Api member back to the OSSL ApiMelanie2009-08-071-1/+9
|
* Revert the XEngine memleak patch, it causes premature GC.Melanie2009-08-071-3/+4
| | | | | This matches behavior seen with an earlier attempt to do this, apparently the sponsor mechanism does't work in Mono