aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-131-1/+1
| | | | | | | Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
* More OSSL function name normalization, this time for osParcelSetDetails.Marck2010-12-111-3/+15
|
* Normalization of OSSL function names.Marck2010-12-101-9/+62
| | | | | | | | | | | | | | | | | Added the following replacement functions for compliance to the OSSL standards stated on the wiki: osGetTerrainHeight osSetTerrainHeight osGetSunParam osSetSunParam osSetPenColor The functions that do not comply to the standard give a warning when used but work normally otherwise. The graphics primitive drawing command "PenColor" has also been added as well as dynamic texture parameter "bgcolor" as an alternative to "bgcolour". The following two functions have been renamed because they are not enabled yet aynway: osWindParamSet => osSetWindParam osWindParamGet => osGetWindParam
* Change all restarting to use the restart module. Remove hardcoded behaviorMelanie2010-11-251-3/+22
|
* Add osUnixTimeToTimestamp()Justin Clark-Casey (justincc)2010-11-171-1/+17
| | | | | This allows an input unix time to be converted to an llGetTimeStamp() format. Thanks Thomax.
* Fix osTeleportAgent for hypergrid destinations.Marck2010-11-161-1/+5
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Add osTeleportOwner.Marck2010-11-161-2/+30
| | | | | | | This provides the same functionality as osTeleportAgent but without the griefing potential. Region owners need not be concerned about the use of this function because it only allows to do what is already possible with the world map. The intended use is with HUDs. For example, a list of (hypergrid) destinations could be made available for quick access. Signed-off-by: Melanie <melanie@t-data.com>
* Adding osFunctions for light projectionBlueWall2010-10-171-0/+42
| | | | | | | | | | | | | | | | | | | | | Set the projection parameters in the host prim ... osSetProjectionParam(bool Enabled, key TextureMaskUUID, float FOV, float Focus, float Ambiance); Set the projection parameters in a target prim ... osSetProjectionParam(ikey target uuid, bool Enabled, key TextureMaskUUID, float FOV, float Focus, float Ambiance); Threat Level very high Signed-off-by: Melanie <melanie@t-data.com>
* Formatting cleanup.Jeff Ames2010-09-121-3/+3
|
* 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.