aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-01Update svn properties.Jeff Ames8-615/+615
2009-04-01Add a "user" config option to the IRC module config. Like all other IRCMelanie Thielker1-1/+2
config options, this has NO default, if you use the IRC module, you MUST add this setting to your ini file.
2009-04-01Add a PIDFile in [Startup], which the PID will be written toMelanie Thielker1-1/+9
2009-04-01* MRM AdjustmentsAdam Frisby4-14/+32
* 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.
2009-04-01* MRM AdjustmentsAdam Frisby4-15/+150
* 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.
2009-04-01* Adds World.Avatars[] to MRM Scripting. Contains an enumerable array ↵Adam Frisby5-1/+73
containing IAvatar instances for each avatar in the region. * Adds Test/TestModule.cs which demonstrates a very quick and simple MRM Test.
2009-04-01* Removes some hard-coded magic numbers relating to RegionSize. We now use ↵Adam Frisby2-29/+28
Constants.RegionSize as expected. (Working towards enlarged or smaller regionsizes that arent multiples of 256m) * Adds minor functionality to MRM Scripting.
2009-04-01Finally clean up the Scene.Permissions and permissions module.Melanie Thielker2-832/+395
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.
2009-03-31Adding the Length override to the KillPacketMelanie Thielker1-0/+6
2009-03-31Turning the wind module off by default.diva1-1/+1
2009-03-31From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield1-1/+9
Add sanity check to fly-height calculation so that it does not attempt to retrieve information from non-existent regions.
2009-03-31* Refactored out and de-duplicated Base64ToString(string)lbsa711-8/+2
* Fixed minor typo
2009-03-31Thanks rtomita for a patch to add a handler for the RemoveInventoryObjects ↵Jeff Ames1-0/+29
packet. (bug #3304)
2009-03-31Thank you kindly, MCortez for a patch that:Charles Krinke9-101/+808
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.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames6-482/+477
2009-03-30* Fix test breakage by always inserting a gods module when testingJustin Clarke Casey1-1/+1
2009-03-30* minor: remove mono compiler warningsJustin Clarke Casey2-21/+20
2009-03-30* refactor: Move god related methods in Scene out to a moduleJustin Clarke Casey4-119/+218
2009-03-30* Remove a debug line of localIDsTeravus Ovares1-1/+1
2009-03-30* Fixing thread safety of avatar adding and removing from the Physics Scene ↵Teravus Ovares3-7/+29
in the ODEPlugin * This may help one of the symptoms or mantis 3363 , however it probably won't solve the occasional NonFinite Avatar Position detected.. issues that some people see. That is probably an entirely different issue(NaN).
2009-03-30Add PickInfoReply packet.Melanie Thielker3-0/+31
Fixes Mantis #3324
2009-03-29Thank you Flyte Xevious for Mantis #3361 - Implementation of llEdgeOfWorldDahlia Trimble1-2/+60
2009-03-29Another bit of refactoring to try to make sense of ↵diva3-3/+4
OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
2009-03-29Moved some files around, so that it's easier to share code between ↵diva3-807/+166
standalone and the grid services. Should not affect any functionality.
2009-03-29Don't let a missing configuration cause a NREMelanie Thielker2-0/+11
Fixes Mantis #3355
2009-03-29Add AcceptNotices member to GroupMembershipData and an overload toMelanie Thielker1-0/+1
IGroupsModule interface
2009-03-29Module interface changeMelanie Thielker1-1/+1
2009-03-29Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker8-111/+57
sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
2009-03-29Finish the offline IM module (still needs a server). Add rudimentaryMelanie Thielker5-8/+218
support for the mute list (no functionality yet, but allows the RetrieveInstantMessages event to fire now).
2009-03-28Minor bug fix in UpdateItem (meta data).diva1-1/+3
2009-03-28* Adding some heuristic error correction to the j2k decoder module to combat ↵Teravus Ovares1-1/+83
some of the situations that we see in mantis 3049 . * This may help people on certain 64 bit systems where the end byte position of each layer data packet is incorrect but the start positions are correct. * The console will still be extremely chatty with 'Inconsistent packet data in JPEG2000 stream:' messages, however.. if OpenSimulator was able to recover the data, it will say HURISTICS SUCCEEDED
2009-03-28Add mute list request event and dummy responseMelanie Thielker3-2/+38
2009-03-28Fix the plumbing in the offline message module.Melanie Thielker2-27/+51
No functionality yet.
2009-03-28Add a module skeleton for offline IM storage. No functionality yet.Melanie Thielker1-0/+131
2009-03-28* Remove redundancies in ScenePresenceTeravus Ovares1-63/+59
2009-03-28* Adds AgentUUIDs into the CourseLocationUpdate to improve compatibility ↵Teravus Ovares4-5/+14
with LibOMV based clients. * Modifies the IClientAPI! So client stacks will need to be modified!
2009-03-28Small bugs fixed related to ownership and permissions.diva1-9/+18
2009-03-27Add the events needed for profiles.Melanie Thielker3-0/+65
Fixes Mantis #3324
2009-03-27* This updates LibOMV to the current release 0.6.0 on March 19 2009Teravus Ovares5-13/+13
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.
2009-03-27* refactor: call some EventManager triggers directly rather than through sceneJustin Clarke Casey3-23/+10
2009-03-27Moved a method GetDefaultVisualParameters from Scene to AvatarAppearance, ↵diva2-14/+6
where it belongs. Better error handling in ScenePresence.CopyFrom.
2009-03-27* minor: remove one mono compiler warningJustin Clarke Casey1-1/+1
2009-03-27* Implement * wildcard in save iar requestsJustin Clarke Casey1-14/+36
* not yet ready for use
2009-03-27* Fix single item iar savingJustin Clarke Casey2-7/+11
* Not yet ready for use
2009-03-27Remove a hardcoded flow/dependency on the money module from LLCLientViewMelanie Thielker3-39/+25
2009-03-27* minor: move RegionSettingsSerializer into OpenSim.Framework.SerializationJustin Clarke Casey3-257/+2
2009-03-27* Also temporarily disable T032_CrossAttachments() since this relies on the ↵Justin Clarke Casey1-1/+1
execution of T021_TestCroswsToNewRegion()
2009-03-27* Temporarily disable ScenePresenceTests.T021_TestCrossToNewRegion() as this ↵Justin Clarke Casey1-1/+1
has both WaitOnes() which don't time out and tight loops * Going to see if this stops the freeze failures where (though there may also be a separate occasional failure in the save oar test)
2009-03-27* For each test in OpenSim.Region.Framework.Scenes.Tests, tell the console ↵Justin Clarke Casey5-5/+48
when the test starts * This is to help identify which test is freezing, since all the tests in the previous dll (coremodules) succeed * Unfortunately they are not executed in the same order in which the results are listed in Bamboo
2009-03-27svn:eol-style property set.diva1-208/+208