aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-11-01stop recording the threads on which we happen to start bots. These are ↵Justin Clark-Casey (justincc)1-7/+5
pointless since they terminate quickly
2011-11-01Retain a reference to an action thread rather than starting an infinite loop ↵Justin Clark-Casey (justincc)1-8/+20
via a timer, so that we can actually abort the action thread on shutdown
2011-10-31Removed unused show commands from Scene.cs and SceneBase.cs. The show ↵Dan Lake3-48/+13
modules command in OpenSim.cs now shows both shared modules and region modules.
2011-10-31Make bots share a cache so that asset downloads attempts are only made once ↵Justin Clark-Casey (justincc)2-20/+24
instead of once for each bot
2011-10-31Remove OpenSim.TestSuiteJustin Clark-Casey (justincc)7-572/+9
Hasn't been touched since 2009 and wasn't more than another copy of pCampBot
2011-10-31Stop individual bots attempting to download the same asset more than onceJustin Clark-Casey (justincc)1-14/+36
2011-10-31Fix bot disconnectionJustin Clark-Casey (justincc)1-1/+1
2011-10-31Adding green dots to map response should be for root agents onlyDan Lake1-1/+1
2011-10-31adjust pCampbot so it starts up bots with the name format "<firstname> ↵Justin Clark-Casey (justincc)4-94/+89
<lastname>_<bot-number>" e.g. starting up two bots called "Ima Bot" will give them the names "Ima Bot_0" and "Ima Bot_1" This is necessary since bots with random names can no longer be created, as there's no easy way to turn off account authentication
2011-10-31Stop pCampbot from firing connected event twice, which results in double ↵Justin Clark-Casey (justincc)2-10/+11
counting.
2011-10-31Plug a security hole in the inventory serviceMelanie1-1/+2
2011-10-30Fix line endingsDan Lake1-23/+23
2011-10-30Experimental reorder of Heartbeat loop now simulates physics and sends ↵Dan Lake1-29/+27
updates to clients prior to sleep. Existing behavior was to sleep BEFORE sending updates. We found this patch reduced latency to clients by 1-2 heartbeat periods.
2011-10-29Remove the SyncRoot locking from Scene which was only being done around the ↵Justin Clark-Casey (justincc)3-32/+18
main physics loop and ScenePresence position and velocity setting This is no longer necessary with ODECharacter taints (ODEPrim was already not taking part in this). BSCharacter was already tainting.
2011-10-29Add taint target velocity for ODECharacters as is already done for ↵Justin Clark-Casey (justincc)1-7/+12
ODECharacter position and position and velocity for ODEPrims. This is to help stop surprises if the velocity is set in the middle of physics calculations, though this probably isn't a huge problem. It's more for consistency and for the next step of removing some scene locks
2011-10-29tidy up OdeCharacter so that we just use OpenMetaverse.Vector3 assignment ↵Justin Clark-Casey (justincc)1-51/+39
directly where possible, instead of transferring X, Y and Z components separately some of this is probably a hold over from using ODE.Vector3, which is still necessary in some places.
2011-10-29Move position set from taint to logically better position at top of ↵Justin Clark-Casey (justincc)1-12/+12
ODECharacter.ProcessTaints() though this makes no practical difference
2011-10-29Stop setting _position as well as m_taint_position in ODECharacter.PositionJustin Clark-Casey (justincc)2-6/+3
setting position at the same time as taint appears to undermine the whole purpose of taint testing doesn't reveal any obvious regressions in doing this
2011-10-29Remove completely unused SOG.Rotation parameterJustin Clark-Casey (justincc)3-18/+10
We always use SOP.Rotation instead
2011-10-28set grp.RootPart.GroupPosition for code consistency (and readability) rather ↵Justin Clark-Casey (justincc)2-7/+2
than calling SOP.OffsetForNewRegion
2011-10-28Add missing doc to rotation/position methods in SOGJustin Clark-Casey (justincc)1-5/+5
2011-10-28fetch SOP.RotationOffset once in UpdateRotation() and compare rather than ↵Justin Clark-Casey (justincc)2-6/+21
fetch four separate times. No functional change.
2011-10-27Removed use of 'is' operator and casting to find the root ScenePresence in ↵Dan Lake4-82/+53
MessageTransfer modules and Groups module.
2011-10-27Continuation of previous checkin. Found more places where ↵Dan Lake4-57/+39
ForEachScenePresence can be changed to ForEachRootScenePresence.
2011-10-27Added new ForEachRootScenePresence to Scene since almost every delegate ↵Dan Lake14-88/+79
passed to ForEachScenePresence checks for !IsChildAgent first. It consolidates child and root handling for coming refactors.
2011-10-27For now, comment out error message on new script engine console commands.Justin Clark-Casey (justincc)1-1/+4
This causes false positives if a simulator has more than 1 region and the current region is 'root' since this sends the command separately to each region and each region has its own XEngine
2011-10-27Comment out inventory folder bulk update code on InventoryAccepted message ↵Justin Clark-Casey (justincc)1-12/+18
introduced in commit db91044 on Aug 22 2011 This should be unecessary since the folder update is already made at the time of the offer (and moved to trash if not accepted). This code was also not taking into account the situation where an item was accepted. Needs more fixing if this results in an aggression elsewhere.
2011-10-27Don't blow our brains out if LLClientView.BulkInventoryUpdate() is wrongly ↵Justin Clark-Casey (justincc)1-1/+3
passed a null node reference. Addresses worst aspect of http://opensimulator.org/mantis/view.php?id=5752
2011-10-27Fix a bug I introduced yesterday in ODE physics where prim scripts would ↵Justin Clark-Casey (justincc)3-1/+26
only receive the very first collision.
2011-10-26Added optional owner classes to existing OSSL agent PermissionsMichelle Argus1-6/+61
PARCEL_GROUP, PARCEL_OWNER, ESTATE_MANAGER and REGION_OWNER can be combined with the existing agent uuid option to limit ossl functions to agents and owner classes. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2011-10-26Implementation of PRIM_OMEGA, but only for settingSignpostMarv Martin2-4/+18
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2011-10-26Implementing PRIM_LINK_TARGET, but only for setting paramsSignpostMarv Martin2-4/+14
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2011-10-25Restart the event queue worker threads that I accidentally disabled earlier ↵Justin Clark-Casey (justincc)2-9/+11
today in 8a0a78c. Also adds these to the watchdogs with very large timeouts (should really be infinite)
2011-10-25In Watchdog, add ability to specific timeout for a thread.Justin Clark-Casey (justincc)1-16/+56
This also changes the point of registration to the StartThread() call rather than the first Update()
2011-10-25Add m_threads dictionary locking to Watchdog.GetThreads()Justin Clark-Casey (justincc)1-1/+2
2011-10-25Clear OdeCharacter CollisionEventUpdate when we subscribe or unsubscribe ↵Justin Clark-Casey (justincc)1-0/+2
from collision events
2011-10-25Remove unused fields from CollisionEventUpdateJustin Clark-Casey (justincc)5-28/+10
2011-10-25Get rid of the pointless null checks on collision listeners. Add warning ↵Justin Clark-Casey (justincc)3-7/+6
about synchronicity for PhysicsActor.OnCollisionUpdate event doc
2011-10-25When sending object collision updates, don't null out and recreate the ↵Justin Clark-Casey (justincc)2-13/+8
CollisionEventUpdate() if the number of collisions falls to zero. Reuse the existing one instead.
2011-10-25For ScenePresence collision events, instead of creating a new ↵Justin Clark-Casey (justincc)3-9/+17
CollisionEventsThisFrame every time we need to send some new ones, reuse the existing one instead. This assumes that the listener is using the data synchronously, which is currently the case.
2011-10-25Fix bug where collision event listeners were not removed once the listener ↵Justin Clark-Casey (justincc)1-4/+5
had gone away. This was causing continuous use of temporary memory even when all avatars had left the scene. Memory does leak but it does cause more calls to the garbage collector, which would pause the scene thread for a very short while during collection.
2011-10-25minor: rename a parameter in OdeScene.Simulate() from actor -> prim since ↵Justin Clark-Casey (justincc)1-4/+4
it's an OdePrim
2011-10-25minor: add "threads show" as synonym for "show threads" for consistencyJustin Clark-Casey (justincc)1-0/+5
2011-10-25Add "threads abort <thread-id>" simulator console command that allows us to ↵Justin Clark-Casey (justincc)2-2/+48
abort a watchdog managed thread. This is for diagnostic purposes.
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)43-69/+243
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)
2011-10-24Drop some unnecessary ContainsKey() checking before Remove() in BaseHttpServer()Justin Clark-Casey (justincc)1-12/+2
Remove() presumably does this check anyway since it just returns false if the key is not in the collection.
2011-10-24Fix bugs in EventQueueGetModule.ClientClosed() and ↵Justin Clark-Casey (justincc)4-9/+31
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.
2011-10-24separate out future common setup code from EventQueueTests.AddForClient()Justin Clark-Casey (justincc)1-8/+14
2011-10-24Add new EventQueueTests with basic test to check that adding a client ↵Justin Clark-Casey (justincc)3-2/+75
registers an http poll
2011-10-24Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)7-5/+177
These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey