| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
* Eg, IObject.Physics.* is now valid syntax and compiles (but will throw NotSupported at runtime)
|
|
|
|
|
|
|
|
| |
interface, will be referenced on IObject as IObject.Physics.*
* Eg; IObject.Physics.Torque = new Vector3(30.0,0.4,0.5);
* Maps loosely to internal PhysicsActor class.
|
| |
|
|
|
|
|
| |
Fixes Mantis #3348
|
|
|
|
|
| |
First part of Mantis #964, the necessary clouds image will follow separately.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
SHIFT / MOUSE DRAG on a physical object
Addresses Mantis #3381
|
| |
|
|
|
|
|
| |
* Added XMLDOC to MRM API code, this means we have usable programming docs being produced here: http://docs.opensimulator.org/namespaceOpenSim_1_1Region_1_1OptionalModules_1_1Scripting_1_1Minimodule.html (eg IObject, IHeightmap, etc)
|
| |
|
|
|
|
|
|
| |
* Adds IObject.WorldPosition and IObject.OffsetPosition - this is equivilent to AbsolutePosition and OffsetPosition in SOP respectively.
* Adds IObject.WorldRotation and IObject.OffsetRotation - as above.
|
|
|
|
|
|
| |
* Adds Heightmap[x,y] to interface.
* MRM Scripts should utilize World.Heightmap[x,y] = 0.0; to replace set, and Val = World.Heightmap[x,y] to get.
|
|
|
|
| |
property was differently referred to between RegionApplicationBase and all other grid services.
|
|
|
|
|
|
|
| |
gets stuck and NonFinite Avatar messages floods console
Addresses Mantis #3380
|
|
|
|
|
|
|
|
| |
(as WebStatsModule was doing)
* Assume that StatsReporter is always present (possibly as a no-op impl) rather than doing null checks
|
|
|
|
| |
be used from more than just Scenes. Added the NewFileAgentInvengory cap to HGInventoryService.
|
|
|
|
|
|
|
| |
log4net config file other then bin/OpenSim.exe.config
- moving ArgvConfigSource initialization up to allow for configuration
of XmlConfigurator.Configure()
|
|
|
|
|
|
|
|
|
| |
Example:
public override void Start()
{
Host.Object.Say("Hello World!");
}
|
|
|
|
|
|
|
| |
probably mark byte[] as obsolete.
* Implements SOPObject.Say for MRM. (Note, not IObject yet)
|
|
|
|
|
|
|
| |
in compilation or script initialisation.
* Clarified some debug text for MRM Enabling
|
|
|
|
|
|
|
| |
ID' for MRMs.
* Implements IPersistence interface, allows simple KeyValue access for MRM scripts to a more permanent datastore.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
setting the sculpt map.
This Fixes Mantis #3331
Also corrected the capping calculation in llApplyImpulse and several integer "boolean" comparisons from "== 1" to "!= 0" for true
|
| |
|
|
|
|
| |
RESTInterregionComms into a RegionClient class.
|
| |
|
|
|
|
| |
structures from OpenSim.Region.Framework.Scenes back to OpenSim.Framework, so they can be referenced more broadly. This involved having to move the small Animation data structure to OpenSim.Framework too.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
glitch in ScenePresence
* ..
* ..
* err, okay, this was a stick-buggery April 1st joke by me. This removes it. Happy April 1st!
* fixes mantis 3376
|
|
|
|
| |
prevent a mono 2.4 failure. Thanks to cmickeyb for pointing out the failure.
|
| |
|
|
|
|
|
|
|
| |
config options, this has NO default, if you use the IRC module, you MUST
add this setting to your ini file.
|
| |
|
|
|
|
|
|
|
| |
* Renamed 'Material' to PhysicsMaterial (Wood, Glass, Metal, etc.). May want to place in subclass with other physics specific properties. (We however need to support these features in ODE/etc first.)
* Renamed Faces to Materials. IObjectFace to IObjectMaterial - this is for clarity for those coming from a 3D Programming background (it also makes more sense if/when we support Meshes in core). Properties and members remain identical.
* Added XMLDoc comments to IObject to assist people writing MRMs in XMLDoc aware editors.
|
|
|
|
|
|
|
|
| |
* Changes World.Objects from Array IObject[] to IObjectAccessor.
* Syntactically identical in most behaviour, however the indexer is now ranges not from 0..Count, but any valid internal LocalID. Additional indexers have been added for UUID.
* Example: for(int i=0;i<World.Objects.Count;i++) will not work any more, however foreach(World.Objects) will remain functional.
* This prevents us needing to create a list for each access to World.Objects which should [in theory] present a dramatic speed improvement to MRM scripts frequently accessing World.Objects.
|
|
|
|
|
|
|
| |
containing IAvatar instances for each avatar in the region.
* Adds Test/TestModule.cs which demonstrates a very quick and simple MRM Test.
|
|
|
|
|
| |
* Did some aligning refactoring of the MD5 and SHA-1 functions.
|
|
|
|
|
|
|
| |
Constants.RegionSize as expected. (Working towards enlarged or smaller regionsizes that arent multiples of 256m)
* Adds minor functionality to MRM Scripting.
|
|
|
|
|
|
|
|
|
| |
Permissions now use proper events and not delegate lists, which makes
for much easier reading and much less work adding new methods.
I finally found a way to raise events with return values without it becoming
late bound.
|
|
|
|
| |
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Add sanity check to fly-height calculation so that it does
not attempt to retrieve information from non-existent
regions.
|
|
|
|
|
|
|
| |
functionality to the MSSQL module.
Fixes Mantis #3370
|
|
|
|
|
| |
* Fixed minor typo
|
|
|
|
| |
packet. (bug #3304)
|
|
|
|
|
|
|
|
|
|
|
|
| |
With some support from HomerH, this patch adds support for Wind
Model plugins via the mono.Addin framework.
* Adds console & OSSL access to Wind Parameters
* Adds plug-in support for custom wind models
* Provides two example Wind Model plug-ins
Documentation for the wind module is temporarily located at http://code.google.com/p/flotsam/wiki/CoreWindModule [^]
-- will move this documentation to http://opensimulator.org [^]
after the patch has been committed.
|
| |
|