aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* comment out a noisy log line I accidentally left in from the last commitJustin Clark-Casey (justincc)2011-11-241-1/+1
|
* Stop passing a request handler to the initial caps.RegisterHandler in ↵Justin Clark-Casey (justincc)2011-11-241-157/+162
| | | | | | EventQueueGetModule since this is immediatley replaced by a poll server handler. This allows us to comment out a bunch of code and simplify the codebase and readability.
* Add a "debug eq" console command for debugging.Justin Clark-Casey (justincc)2011-11-241-6/+79
| | | | This will log outgoing event queue message names if turned on.
* Changes UpdateFlag in SOP to an enumeration of NONE, TERSE and FULL.Dan Lake2011-11-021-3/+4
| | | | | | | | | | | | | | | | | UpdateFlag is now referenced/used only within SOP and SOG. Outsiders are using ScheduleFullUpdate, ScheduleTerseUpdate or ClearUpdateSchedule on SOP consistently now. Also started working toward eliminating those calls to ScheduleFullUpdate, ScheduleTerseUpdate or ClearUpdateSchedule from outside SOP in favor of just setting properties on SOP and let SOP decide if an update should be scheduled. This consolidates the update policy within SOP and the client rather than everywhere that makes changes to SOP. Some places forget to call update while others call it multiple times, "just to be sure". UpdateFlag and Schedule*Update will both be made private shortly. UpdateFlag is intended to be transient and internal to SOP so it has been removed from XML serializer for SOPs.
* Removed redundant SceneContents property from Scene. It's the same as ↵Dan Lake2011-11-011-1/+1
| | | | SceneGraph property.
* Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)2011-10-251-0/+1
| | | | | | | | | of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
* Fix bugs in EventQueueGetModule.ClientClosed() and ↵Justin Clark-Casey (justincc)2011-10-242-4/+22
| | | | | | BaseHttpServer.RemovePollServerHTTPHandler() that stopped existing code in ClientClosed() from actually tearing down the poll handler Actually doing the tear down appear to have no ill effects with region crossing and teleport.
* separate out future common setup code from EventQueueTests.AddForClient()Justin Clark-Casey (justincc)2011-10-241-8/+14
|
* Add new EventQueueTests with basic test to check that adding a client ↵Justin Clark-Casey (justincc)2011-10-242-1/+72
| | | | registers an http poll
* Improve locking when access queue in EventQueueGetModuleJustin Clark-Casey (justincc)2011-09-241-14/+17
|
* Eliminate pointless checks of SOG.RootPart != nullJustin Clark-Casey (justincc)2011-09-011-2/+0
| | | | It's never possible for SOG to have no RootPart, except in the first few picosends of the big bang when it's pulled from region persistence or deserialized
* Fix bug in persisting saved appearances for npcsJustin Clark-Casey (justincc)2011-08-301-1/+0
| | | | | Assets have to be marked non-local as well as non-temporary to persist. This is now done. Hopefully addresses http://opensimulator.org/mantis/view.php?id=5660
* refactor: move SOP.IsAttachment and AttachmentPoint up into SOG to avoid ↵Justin Clark-Casey (justincc)2011-08-271-1/+1
| | | | pointless duplication of identical values
* Remove forcing of phantom on ground attached objects - attachments can be ↵Justin Clark-Casey (justincc)2011-08-241-2/+2
| | | | | | both non-phantom and flagged as physical. As per Melanie
* minor: comment out simulator features log lineJustin Clark-Casey (justincc)2011-08-221-1/+1
|
* Add ISimulatorFeaturesModule so that other modules can register features in ↵Justin Clark-Casey (justincc)2011-08-221-36/+86
| | | | addition to the hardcoded ones.
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-08-162-5/+6
|
* comment out some of the currently less useful debug log messagesJustin Clark-Casey (justincc)2011-08-113-5/+5
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-08-042-4/+4
|
* refactor: make SceneObjectGroup.GroupScale() a property rather than a mehodJustin Clark-Casey (justincc)2011-07-161-4/+6
|
* minor: method doc for baked texture uploadingJustin Clark-Casey (justincc)2011-07-151-2/+15
|
* Fix permissions problem where newly uploaded meshes rezzed from inventory ↵Justin Clark-Casey (justincc)2011-07-113-8/+4
| | | | could not be copied by owner.
* minor: code tidy and inserted log lines for future use.Justin Clark-Casey (justincc)2011-07-091-3/+1
| | | | | | | | Unable to get to the bottom of why resizing a mesh fails to properly reset the physics proxy, when toggling phantom does After a mesh is generated, the existing sculptdata is set to zero in PrimitiveBaseShape to save memory When phantom is toggled, the sculptdata is regenerated before remeshing. But on resize, the sculptdata is not regenerated. So clearly, resetting sculptdata is possible, but haven't quite been able to pin down how this is being done when phantom is toggled.
* Switch the MeshUploadFlag CAP module on and off with the existing config ↵Justin Clark-Casey (justincc)2011-07-071-14/+35
| | | | | | AllowMeshUpload flag in [Mesh] (in OpenSimDefaults.ini) Default is on.
* Make MeshUploadFlagModule non-shared rather than shared (since each scene ↵Justin Clark-Casey (justincc)2011-07-071-1/+1
| | | | needs its own cap)
* add MeshUploadFlag capability fixed mesh upload with latest mesh viewer ↵Michael Cerquoni aka Nebadon Izumi2011-07-072-18/+150
| | | | thank you dahlia and lkalif for helping to make this happen!
* Implement the latest mesh mechanism so that rezzing the uploaded mesh now ↵Justin Clark-Casey (justincc)2011-06-241-3/+189
| | | | | | | works again. Many thanks to the aurora project for pioneering this. This code is almost certainly not bug free, but it does at least appear to handle simple meshes (except when the viewer crashes - but it is beta!).
* minor: method documentationJustin Clark-Casey (justincc)2011-06-241-6/+8
|
* Added SimulatorFeatures capability. Thanks Aurora devs for the bootstrap on ↵Diva Canto2011-06-131-22/+49
| | | | | | the contents of the response. Changed the experimental capability introduced a couple of commits ago: now sending that extra information as part of the response in the SimulatorFeatures cap.
* Same processing of the "/" in the MapImageService Cap as the one in the ↵Diva Canto2011-06-131-0/+6
| | | | login service.
* Added experimental new capability URL called MapImageService meant to work ↵Diva Canto2011-06-131-0/+119
| | | | with Kokua viewer if devs are willing to do it.
* Test m_Enabled on RemoveRegion.Diva Canto2011-05-043-0/+9
|
* Fixed: EventQueueGet and other caps were being wrongly deregistered. Also ↵Diva Canto2011-05-022-5/+3
| | | | CapabilitiesModule was being instantiated twice (damn Mono.Addins).
* WebFetchInventoryDescendents working. Tested with robust.Diva Canto2011-05-022-279/+137
|
* Refactored the GetMesh module into a handler and a module, to be the same as ↵Diva Canto2011-05-022-113/+40
| | | | GetTexture.
* Works!Diva Canto2011-05-024-10/+34
|
* Start to drill down on GetTexture. Read the config and do different things.Diva Canto2011-05-011-4/+12
|
* Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto2011-05-014-3/+1300
| | | | | | | registers/unregisters capabilities and a specific bunch of capability implementations in Linden space called BunchOfCaps. Renamed a few methods that were misnomers. Compiles but doesn't work.
* Change GetTextureModule.cs to conform to the new IRegion module interface. ↵Diva Canto2011-05-011-6/+21
| | | | NOTHING OF THIS WORKS. Compiles.
* Move CapabilitiesModule back to CoreModules. This one belongs there.Diva Canto2011-05-011-257/+0
|
* Added OpenSim.Capabilities.Handlers. For the moment it has only the ↵Diva Canto2011-05-011-311/+4
| | | | GetTexture handler. The region module in Linden space uses it. WARNING: nothing of this works yet, it just compiles.
* Nope, that didn't feel right. Moving all those modules to Linden space.Diva Canto2011-04-307-0/+1893
|
* First stab at cleaning up Caps. Compiles. Untested.Diva Canto2011-04-302-0/+1128