aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revolution is on the roll again! :)Revolution2010-02-142-3/+3
| | | | | | | | Fixes: Undo, T-pose of others on login, modifiedBulletX works again, feet now stand on the ground instead of in the ground, adds checks to CombatModule. Adds: Redo, Land Undo, checks to agentUpdate (so one can not fall off of a region), more vehicle parts. Finishes almost all of LSL (1 function left, 2 events). Direct flames and kudos to Revolution, please Signed-off-by: Melanie <melanie@t-data.com>
* apply http://opensimulator.org/mantis/view.php?id=4486Justin Clark-Casey (justincc)2010-01-301-1/+1
| | | | | fix compilation of mrm scripts using microthreaded parmeter Thanks ziah
* Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-291-41/+23
| | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
* Updates all IRegionModules to the new style region modules.Revolution2010-01-231-23/+41
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Formatting cleanup. Add copyright headers.Jeff Ames2010-01-043-9/+9
|
* Thank you kindly, Ziah for a patch that adds the channel to the class ↵Charles Krinke2009-12-234-2/+16
| | | | | | ChatEventArgs and retrieves it's value along with the others from the OSChatMessage in HandleChatPackage. With this the MRM Script can check if a ChatEvent is coming in on a specifc Channel. The Second Part adds the Method say(string msg , int channel) to send a chat message on the specified channel. The idea behind this is to enable MRM's to communicate with regular LSL or OSSL Scripts so that they may can act as a Backend to access a Database or do business Logic for those Scripts. Signed-off-by: Charles Krinke <cfk@pacbell.net>
* Patch from Ziah.Melanie2009-12-211-8/+32
| | | | | Mantis #4456: Patch to implement some minor MRM Functions : SitTarget, SitTargetText, TouchText and Text
* Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-4/+1
| | | | unknown asset type, and log an error if it ever does happen
* Experimental change of PhysicsVector to Vector3. UntestedJohn Hurliman2009-10-261-21/+21
|
* * Removed some of the redundant broadcast functions in Scene and SceneGraph ↵John Hurliman2009-10-151-2/+2
| | | | | | | | so it is clear who/what the broadcast is going to each time * Removed two redundant parameters from SceneObjectPart * Changed some code in terse update sending that was meant to work with references to work with value types (since Vector3 and Quaternion are structs) * Committing a preview of a new method for sending object updates efficiently (all commented out for now)
* - cleaning up LandData/ILandObject capitalization issuesdr scofield (aka dirk husemann)2009-10-022-6/+6
| | | | - adding LandDataSerializer to OAR mechanics
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Added additional configuration options for MRM Security. See ↵Adam Frisby2009-08-181-8/+22
| | | | OpenSim.ini.example under the [MRM] section.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimAdam Frisby2009-08-182-2/+29
|\
| * Add copyright header. Formatting cleanup.Jeff Ames2009-08-172-2/+29
| |
* | * Implementing a bunch of Unimplemented MRM stubs.Adam Frisby2009-08-182-10/+27
|/
* * Implements AppDomain Security for MRM Scripts.Adam Frisby2009-08-171-2/+101
| | | | * Added permissionLevel attribute to [MRM] section in OpenSim.ini. Default is 'Internet', however may be any of the following (case sensitive), FullTrust, SkipVerification, Execution, Nothing, LocalIntranet, Internet, Everything. For previous functionality, set to FullTrust or Execution.
* * Implements ISecurityCredential member on SPAvatar, SPAvatarAttachmentAdam Frisby2009-08-164-8/+15
| | | | * Disables 'event not used' warning for IRCClientView; cuts OpenSim total warnings back.
* * Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead of ↵Adam Frisby2009-08-162-13/+15
| | | | IAvatar.cs
* * Implements ISecurityCredential on all uses of SOPObject.cs except Avatar ↵Adam Frisby2009-08-162-2/+2
| | | | Attachments.
* * [MRM] Added permission checks to MRM Events (ie, requires edit permission ↵Adam Frisby2009-08-161-6/+9
| | | | to bind to OnTouch)
* * Fixes potential NulRef in MRM Security Checks.Adam Frisby2009-08-162-3/+4
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimAdam Frisby2009-08-163-2/+56
|\
| * Add copyright headers. Formatting cleanup.Jeff Ames2009-08-162-1/+55
| |
| * Misc cleanup.Jeff Ames2009-08-161-1/+1
| |
* | * [MRM] Implements permission checks on IObject implementations in ↵Adam Frisby2009-08-163-9/+92
|/ | | | SOPObject.cs. Does not implement security on IObjectInventory yet.
* * Beginnings of a Security Credential system in MRM. This will eventually ↵Adam Frisby2009-08-166-13/+62
| | | | lead to trusted execution of untrusted MRMs.
* Formatting cleanup.Jeff Ames2009-08-091-1/+1
|
* From: Snowcrash <Snowcrash.short@gmail.com>Melanie2009-08-073-4/+13
| | | | | | | | | | | | | Date: Wed, 5 Aug 2009 12:45:56 +0200 Subject: [PATCH] A few minor tweaks to the MRM API's in order to make it possible for MRM's to run in a separate AppDomain without poluting the primary appdomain of OpenSim Specifically: Added an explicit method for getting the "globals" of the MRM, removing the need to have the MRM script code loaded into the primary domain, in order to set up proxies Added a [Serializable] attribute to TouchEventArgs, again in order to remove the need to have MRM script code loaded into the primary domain. --------- Applied with whitespace changes
* * Implements MRM's Stop() interface member.Adam Frisby2009-08-072-0/+10
| | | | * MRM Scripts should do appropriate cleanup within this event, to allow for clean shutdowns and script updates. This means unbinding from events you are listening to, and releasing any resources.
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-252-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
* minor: remove some mono compiler warningsJustin Clarke Casey2009-07-152-5/+5
|
* Formatting cleanup.Jeff Ames2009-07-111-8/+8
|
* Thank you kindly, SnowDrop, for a patch that:Charles Krinke2009-07-081-3/+9
| | | | | | | | | | | | | This add a configuration option to the MRM module called "hidden". if MRM is marked as enabled, the module will additionally check for the "Hidden" flag, before registering for client side scriping events. When MRM is running hidden, it will not respond to client side scripting events, giving serverside scripting modules, like MRMLoader and MRMAddin the ability to leverage the MRM engine. This way, even a possible clientside exploit will not be possible, while still allowing the MRM engine to run.
* Formatting cleanup.Jeff Ames2009-07-019-320/+320
|
* Add copyright headers.Jeff Ames2009-07-015-5/+133
|
* Update svn properties.Jeff Ames2009-07-015-330/+330
|
* Thank you kindly, Snowdrop, for a patch that solves:Charles Krinke2009-06-298-2/+320
| | | | | | | | The current API for MRM is quite sparse, this patch supplies basic support for accessing the task inventory of object.
* Thank you kindly, Snowdrop/Snowcrash for a patch that:Charles Krinke2009-06-293-2/+81
| | | | | This patch makes the worn attachments accessible to MRM scripting
* Formatting cleanup.Jeff Ames2009-06-101-1/+1
|
* Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames2009-05-312-2/+56
|
* Update svn properties.Jeff Ames2009-05-312-25/+25
|
* * Adds MRM scripting commands, World.Objects.Create(Vector3 position) and ↵Adam Frisby2009-05-312-0/+22
| | | | World.Objects.Create(Vector3 position, Quaternion rotation). These rez a 'default box' object at the specified coordinates, and return the associated IObject.
* * Adds World.Audio.* to MRMAdam Frisby2009-05-293-1/+48
| | | | | * This includes methods such as PlaySound which take a Position as an argument, allowing you to trigger sounds arbitrarily across the scene without needing a parent object in the position.
* * Protip: When you click 'make public' in resharper, note to save before ↵Adam Frisby2009-05-291-1/+1
| | | | committing.
* * Implements Sound on Objects for IObject in MRMAdam Frisby2009-05-293-1/+29
| | | | | | * Method: IObject.Sound.Play(UUID sound, double volume) * More feature-packed API to come soon. (I want a World.Sound with arbitrary positioning)
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-151-2/+2
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* * Adds additional check to MRM rezzing - the host object must be created by ↵Adam Frisby2009-05-121-1/+3
| | | | the sim owner, not just owned by it.
* * Adds ScenePresence.TeleportWithMomentum - same as .Teleport, but preserves ↵Adam Frisby2009-05-121-1/+1
| | | | velocity.
* * Applies Mantis #3630 - Adds support for outside MRM initialisation, makes ↵Adam Frisby2009-05-1213-18/+32
| | | | MRMModule compatible with the Visual Studio MRMLoader ( http://forge.opensimulator.org/gf/project/mrmloader/ )