aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * 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/ )
* * Code to make MRM debugging easier.Adam Frisby2009-05-092-1/+6
|
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-273-5/+59
|
* Update svn properties.Jeff Ames2009-04-273-90/+90
|
* * Implements Microthreading for MRM scripting.Adam Frisby2009-04-247-2/+162
| | | | | | | | | | * This is achieved through two new keywords "microthreaded" and "relax". example: public microthreaded void MyFunc(...) { ... relax; ... }
* * Committing stub VW-over-HTTP ClientStack. (2/2)Adam Frisby2009-04-221-1/+1
| | | | | * Minor MRM tweak.
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-225-4/+139
|
* Update svn properties.Jeff Ames2009-04-214-105/+105
|
* * Implements Extensions to MRM. This allows Region Modules to insert new ↵Adam Frisby2009-04-216-3/+81
| | | | | | | | | | | | classes into OpenSim MRM's. * Example in region module: Scene.GetModuleInterface<IMRMModule>.RegisterExtension<IMyInterface>(this); * In the MRM: //@DEPENDS:MyExtensionModule.dll ... Host.Extensions<IMyInterface>.DoStuff();
* * Adds IObject.Shape to MRMAdam Frisby2009-04-184-53/+140
| | | | | | * Implements Sculpty modification support to MRM * Example: IObject.Shape.SculptMap = new UUID("0000-0000-0000....");
* Formatting cleanup.Jeff Ames2009-04-144-6/+6
|
* Add copyright headers.Jeff Ames2009-04-145-5/+140
|
* Update svn properties.Jeff Ames2009-04-1415-873/+873
|
* * Minor MRM CleanupAdam Frisby2009-04-1114-614/+662
| | | | | | | * Interfaces now live in Interfaces subdirectory. * Namespace does not yet reflect this change. * Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]
* * Fixes a bug in MRM scripting whereby the Touch flag is never enabled for ↵Adam Frisby2009-04-101-0/+2
| | | | OnTouch capable scripts.
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-04-091-2/+2
|
* * Allows MRMs to import libraries in the OpenSim bin directory.Adam Frisby2009-04-091-5/+16
| | | | | * Syntax: //@DEPENDS:library.dll
* * Implements IObject.Materials[].*Adam Frisby2009-04-093-2/+93
| | | | | * This lets you do things like IObject.Materials[0].Texture = new UUID("0000-...");
* * Implements IGraphics interface for MRM Scripting.Adam Frisby2009-04-096-6/+75
| | | | | | * This allows you to utilize System.Drawing tools on textures within the region. * Example: use System.Drawing.Bitmap to make your texture, then use Host.Graphics.SaveBitmap to make an asset from it in JPEG2K. You can edit (but not overwrite) existing textures using Host.Graphics.LoadBitmap.
* * Adds World.OnNewUser += delegate(IWorld sender, NewUserEventArgs e);Adam Frisby2009-04-092-1/+50
| | | | | * This event fires when a new avatar is created within the Scene. (Internally corresponds to EventManager.OnNewPresence)
* * Limits MRM scripting to Region Master Avatar only.Adam Frisby2009-04-091-1/+4
| | | | | | * This makes MRM scripting ever so slightly more secure. If you have enforced Object Permissions enabled, it may be acceptable to enable MRM within your regions. * Security bug reports on this feature are much appreciated (eg: anyone finding ways around this to execute a MRM as a basic user).
* * World.OnChat no longer fires if there is no chat text (prevents the typing ↵Adam Frisby2009-04-091-2/+3
| | | | animation packet from firing OnChat)
* * Added additional debug testing info to SceneAdam Frisby2009-04-093-6/+56
| | | | | | | * Corrected issue with MRMs where it would attempt to overwrite an already loaded DLL. (and thus fail with cryptic UnauthorizedAccessException.) * Made DrunkenTextAppreciationModule.cs MRM not crash with StackOverflowException * Added some temporary logging to MRM World.*
* * Forgot to commit IEntity in last commit.Adam Frisby2009-04-092-0/+67
| | | | | * Added "DrunkenTextAppreciationModule" Demo MRM - behaves very similarly to the sobriety filter in WoW. ;)
* * Moves Name, GlobalID and WorldPosition into new IEntity interface.Adam Frisby2009-04-095-22/+98
| | | | | | | * Avatar and Object now inherit from IEntity. * Avatar.Position is now Avatar.WorldPosition to match IObject property. * Implements event World.OnChat += delegate(IWorld sender, ChatEventArgs e);
* * Implements retrieving child primitives via World.Objects[id] (MRM)Adam Frisby2009-04-092-5/+13
| | | | | | * Optimizes SceneGraph - fetches on primitives via "GetGroupByPrim" wont search the entire list if the primitive is infact the root. (Core) * Updates Test MRM.
* * Implements IObject.OnTouch += delegate(IObject sender, TouchEventArgs e)Adam Frisby2009-04-092-0/+73
| | | | | * This is equivalent to LSL 'touch(int senders)'
* Add copyright headers, formatting cleanup.Jeff Ames2009-04-067-9/+171
|
* Update svn properties.Jeff Ames2009-04-066-175/+175
|
* * Implements World.Parcels[] array for MRM scripting.Adam Frisby2009-04-065-3/+67
|
* * Adds AutoOAR module, this will automatically OAR your regions every 20 ↵Adam Frisby2009-04-061-0/+5
| | | | | | | | minutes to a directory called "autooar", if enabled. Default disabled. Use [autooar] Enabled=true in OpenSim.ini to enable. * Adds some MRM XMLDOC