Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | * MRM Adjustments | Adam Frisby | 2009-04-01 | 4 | -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. | |||||
* | * Adds World.Avatars[] to MRM Scripting. Contains an enumerable array ↵ | Adam Frisby | 2009-04-01 | 5 | -1/+73 | |
| | | | | | | | containing IAvatar instances for each avatar in the region. * Adds Test/TestModule.cs which demonstrates a very quick and simple MRM Test. | |||||
* | * Added NUnit tested utility function GetHashGuid() for future use. | lbsa71 | 2009-04-01 | 2 | -7/+48 | |
| | | | | | * Did some aligning refactoring of the MD5 and SHA-1 functions. | |||||
* | * Removes some hard-coded magic numbers relating to RegionSize. We now use ↵ | Adam Frisby | 2009-04-01 | 4 | -40/+39 | |
| | | | | | | | Constants.RegionSize as expected. (Working towards enlarged or smaller regionsizes that arent multiples of 256m) * Adds minor functionality to MRM Scripting. | |||||
* | Finally clean up the Scene.Permissions and permissions module. | Melanie Thielker | 2009-04-01 | 2 | -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. | |||||
* | Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵ | diva | 2009-04-01 | 3 | -15/+41 | |
| | | | | subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults. | |||||
* | Adding the Length override to the KillPacket | Melanie Thielker | 2009-03-31 | 1 | -0/+6 | |
| | ||||||
* | Turning the wind module off by default. | diva | 2009-03-31 | 1 | -1/+1 | |
| | ||||||
* | From: Alan M Webb <alan_webb@us.ibm.com> | Dr Scofield | 2009-03-31 | 1 | -1/+9 | |
| | | | | | | | Add sanity check to fly-height calculation so that it does not attempt to retrieve information from non-existent regions. | |||||
* | Thank you, StrawberryFride, for a patch that adds offline inventory | Melanie Thielker | 2009-03-31 | 1 | -2/+15 | |
| | | | | | | | functionality to the MSSQL module. Fixes Mantis #3370 | |||||
* | * Refactored out and de-duplicated Base64ToString(string) | lbsa71 | 2009-03-31 | 4 | -25/+27 | |
| | | | | | * Fixed minor typo | |||||
* | Thanks rtomita for a patch to add a handler for the RemoveInventoryObjects ↵ | Jeff Ames | 2009-03-31 | 1 | -0/+29 | |
| | | | | packet. (bug #3304) | |||||
* | Thank you kindly, MCortez for a patch that: | Charles Krinke | 2009-03-31 | 9 | -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. | |||||
* | Update svn properties, add copyright header, formatting cleanup. | Jeff Ames | 2009-03-31 | 13 | -2799/+2819 | |
| | ||||||
* | Adds support at the inventory server for direct inventory manipulation from ↵ | diva | 2009-03-30 | 2 | -2/+31 | |
| | | | | authorized clients using capabilities. Provided keys are verified with the designated authority. The added code is only executed for clients following HGLoginAuth procedure or similar. It does not remove any existing behavior. | |||||
* | HGInventoryService now uses the actual authority portion of the user's key ↵ | diva | 2009-03-30 | 3 | -1159/+1160 | |
| | | | | to verify the key. | |||||
* | * Fix test breakage by always inserting a gods module when testing | Justin Clarke Casey | 2009-03-30 | 2 | -2/+8 | |
| | ||||||
* | * minor: remove mono compiler warnings | Justin Clarke Casey | 2009-03-30 | 2 | -21/+20 | |
| | ||||||
* | * refactor: Move god related methods in Scene out to a module | Justin Clarke Casey | 2009-03-30 | 4 | -119/+218 | |
| | ||||||
* | Sigh. Manual data typing grief. | diva | 2009-03-30 | 3 | -18/+20 | |
| | ||||||
* | * Remove a debug line of localIDs | Teravus Ovares | 2009-03-30 | 1 | -1/+1 | |
| | ||||||
* | * Fixing thread safety of avatar adding and removing from the Physics Scene ↵ | Teravus Ovares | 2009-03-30 | 3 | -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). | |||||
* | Add PickInfoReply packet. | Melanie Thielker | 2009-03-30 | 6 | -0/+41 | |
| | | | | | | Fixes Mantis #3324 | |||||
* | Thank you Flyte Xevious for Mantis #3361 - Implementation of llEdgeOfWorld | Dahlia Trimble | 2009-03-29 | 1 | -2/+60 | |
| | ||||||
* | Added Authorization client code that interfaces with HGLoginAuthService. ↵ | diva | 2009-03-29 | 3 | -21/+192 | |
| | | | | Improved error handling in HGLoginAuthService. Instrumented HGInventoryService so that it can interface both with local and remote user and asset services. | |||||
* | Another bit of refactoring to try to make sense of ↵ | diva | 2009-03-29 | 12 | -2087/+2114 | |
| | | | | 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. | |||||
* | Moved some files around, so that it's easier to share code between ↵ | diva | 2009-03-29 | 5 | -808/+804 | |
| | | | | standalone and the grid services. Should not affect any functionality. | |||||
* | Don't let a missing configuration cause a NRE | Melanie Thielker | 2009-03-29 | 2 | -0/+11 | |
| | | | | | | Fixes Mantis #3355 | |||||
* | Add AcceptNotices member to GroupMembershipData and an overload to | Melanie Thielker | 2009-03-29 | 2 | -0/+2 | |
| | | | | | | IGroupsModule interface | |||||
* | Module interface change | Melanie Thielker | 2009-03-29 | 1 | -1/+1 | |
| | ||||||
* | Change the client API to use GridInstantMessage for the "last mile" of IM | Melanie Thielker | 2009-03-29 | 12 | -135/+61 | |
| | | | | | | | sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters. | |||||
* | Finish the offline IM module (still needs a server). Add rudimentary | Melanie Thielker | 2009-03-29 | 8 | -8/+227 | |
| | | | | | | | support for the mute list (no functionality yet, but allows the RetrieveInstantMessages event to fire now). | |||||
* | Minor bug fix in UpdateItem (meta data). | diva | 2009-03-28 | 1 | -1/+3 | |
| | ||||||
* | * Adding some heuristic error correction to the j2k decoder module to combat ↵ | Teravus Ovares | 2009-03-28 | 1 | -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 | |||||
* | Add mute list request event and dummy response | Melanie Thielker | 2009-03-28 | 6 | -2/+54 | |
| | ||||||
* | Fix the plumbing in the offline message module. | Melanie Thielker | 2009-03-28 | 2 | -27/+51 | |
| | | | | | | No functionality yet. | |||||
* | Add a module skeleton for offline IM storage. No functionality yet. | Melanie Thielker | 2009-03-28 | 1 | -0/+131 | |
| | ||||||
* | * Remove redundancies in ScenePresence | Teravus Ovares | 2009-03-28 | 1 | -63/+59 | |
| | ||||||
* | * Adds AgentUUIDs into the CourseLocationUpdate to improve compatibility ↵ | Teravus Ovares | 2009-03-28 | 7 | -8/+17 | |
| | | | | | | | with LibOMV based clients. * Modifies the IClientAPI! So client stacks will need to be modified! | |||||
* | Small bugs fixed related to ownership and permissions. | diva | 2009-03-28 | 1 | -9/+18 | |
| | ||||||
* | Add the events needed for profiles. | Melanie Thielker | 2009-03-27 | 6 | -0/+83 | |
| | | | | | | Fixes Mantis #3324 | |||||
* | * This updates LibOMV to the current release 0.6.0 on March 19 2009 | Teravus Ovares | 2009-03-27 | 12 | -22/+22 | |
| | | | | | | * 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. | |||||
* | * refactor: call some EventManager triggers directly rather than through scene | Justin Clarke Casey | 2009-03-27 | 3 | -23/+10 | |
| | ||||||
* | Moved a method GetDefaultVisualParameters from Scene to AvatarAppearance, ↵ | diva | 2009-03-27 | 3 | -16/+19 | |
| | | | | where it belongs. Better error handling in ScenePresence.CopyFrom. | |||||
* | * minor: remove one mono compiler warning | Justin Clarke Casey | 2009-03-27 | 1 | -1/+1 | |
| | ||||||
* | * Implement * wildcard in save iar requests | Justin Clarke Casey | 2009-03-27 | 1 | -14/+36 | |
| | | | | | | * not yet ready for use | |||||
* | * Fix single item iar saving | Justin Clarke Casey | 2009-03-27 | 2 | -7/+11 | |
| | | | | | | * Not yet ready for use | |||||
* | Remove a hardcoded flow/dependency on the money module from LLCLientView | Melanie Thielker | 2009-03-27 | 6 | -39/+34 | |
| | ||||||
* | * minor: move RegionSettingsSerializer into OpenSim.Framework.Serialization | Justin Clarke Casey | 2009-03-27 | 3 | -5/+4 | |
| | ||||||
* | * Also temporarily disable T032_CrossAttachments() since this relies on the ↵ | Justin Clarke Casey | 2009-03-27 | 1 | -1/+1 | |
| | | | | execution of T021_TestCroswsToNewRegion() |