aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Revert "fix CopyTo call that was breaking under mono 2.10"Melanie2011-11-031-1/+1
| | | | This reverts commit d30971fdc243886b8fc614c7f869530db87e10f2.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimMic Bowman2011-11-024-23/+37
|\
| * Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2011-11-0215-107/+117
| |\
| * | Port the Avination offline messaging system to CoreMelanie2011-11-024-23/+37
| | |
* | | fix CopyTo call that was breaking under mono 2.10Mic Bowman2011-11-021-1/+1
| |/ |/|
* | Merge branch 'master' of git://opensimulator.org/git/opensimDan Lake2011-11-026-330/+402
|\ \
| * | Get some hopefully more useful exception information when ↵Justin Clark-Casey (justincc)2011-11-022-5/+8
| | | | | | | | | | | | OpenJPEG.EncodeFromImage() fails in VectorRender and DynamicTexture modules
| * | Fix race condition that would sometimes send or save appearance for the ↵Justin Clark-Casey (justincc)2011-11-022-9/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | wrong avatar. In AvatarFactoryModule.HandleAppearanceUpdateTimer(), we loop through appearance save and send requests and dispatch via a FireAndForget thread. If there was more than one request in the save or send queue, then this led to a subtle race condition where the foreach loop would load in the next KeyValuePair before the thread was dispatched. This gave the thread the wrong avatar ID, leaving some avatar appearance cloudy since appearance data was never sent. This change loads the fields into local references so that this doesn't happen.
| * | Catch any exceptions exiting the top of the robust console, as we already do ↵Justin Clark-Casey (justincc)2011-11-021-1/+8
| |/ | | | | | | | | | | for the main simulator. This prevents issues such as transient mono console problems from crashing the server.
| * Restore the recursive calling of PRIM_LINK_TARGET because the version I madeMelanie2011-11-021-327/+334
| | | | | | | | breaks LINK_SET et al.
| * Some positioning fixes from AVN trunkMelanie2011-11-021-1/+42
| |
| * Streamline PRIM_LINK_TARGET, eliminating a recursion and a failure scenarioMelanie2011-11-021-4/+3
| |
* | Changes UpdateFlag in SOP to an enumeration of NONE, TERSE and FULL.Dan Lake2011-11-0211-92/+77
|/ | | | | | | | | | | | | | | | | 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-012-6/+1
| | | | SceneGraph property.
* Part 2 of see_into_this_sim_from_neighbor configuration option removalDan Lake2011-11-011-10/+7
|
* Removed see_into_this_sim_from_neighbor configuration option.Dan Lake2011-11-013-14/+1
|
* Add "appearance send" command to allow manual sending of appearance.Justin Clark-Casey (justincc)2011-11-013-6/+23
|
* Add "show status" command to pCambotJustin Clark-Casey (justincc)2011-11-012-22/+45
|
* Listen only for non SimShutdown Network.Disconnect firing so that we don't ↵Justin Clark-Casey (justincc)2011-11-011-1/+7
| | | | quite the program before all bots have actually logged off.
* get rid of unused m_verbose fieldJustin Clark-Casey (justincc)2011-11-011-1/+0
|
* stop recording the threads on which we happen to start bots. These are ↵Justin Clark-Casey (justincc)2011-11-011-7/+5
| | | | pointless since they terminate quickly
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2011-11-013-48/+13
|\
| * Merge branch 'master' of git://opensimulator.org/git/opensimDan Lake2011-10-318-623/+58
| |\
| * | Removed unused show commands from Scene.cs and SceneBase.cs. The show ↵Dan Lake2011-10-313-48/+13
| | | | | | | | | | | | modules command in OpenSim.cs now shows both shared modules and region modules.
* | | Retain a reference to an action thread rather than starting an infinite loop ↵Justin Clark-Casey (justincc)2011-11-011-8/+20
| |/ |/| | | | | via a timer, so that we can actually abort the action thread on shutdown
* | Make bots share a cache so that asset downloads attempts are only made once ↵Justin Clark-Casey (justincc)2011-10-312-20/+24
| | | | | | | | instead of once for each bot
* | Remove OpenSim.TestSuiteJustin Clark-Casey (justincc)2011-10-318-600/+9
| | | | | | | | Hasn't been touched since 2009 and wasn't more than another copy of pCampBot
* | Stop individual bots attempting to download the same asset more than onceJustin Clark-Casey (justincc)2011-10-311-14/+36
| |
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2011-10-311-1/+1
|\ \ | |/
| * Merge branch 'master' of git://opensimulator.org/git/opensimDan Lake2011-10-315-102/+98
| |\
| * | Adding green dots to map response should be for root agents onlyDan Lake2011-10-311-1/+1
| | |
* | | Fix bot disconnectionJustin Clark-Casey (justincc)2011-10-311-1/+1
| |/ |/|
* | adjust pCampbot so it starts up bots with the name format "<firstname> ↵Justin Clark-Casey (justincc)2011-10-314-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
* | Remove unused PumaCode.SvnDotNet libraryJustin Clark-Casey (justincc)2011-10-311-0/+0
| |
* | Stop pCampbot from firing connected event twice, which results in double ↵Justin Clark-Casey (justincc)2011-10-312-10/+11
|/ | | | counting.
* Plug a security hole in the inventory serviceMelanie2011-10-311-1/+2
|
* Fix line endingsDan Lake2011-10-301-23/+23
|
* Experimental reorder of Heartbeat loop now simulates physics and sends ↵Dan Lake2011-10-301-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.
* Add missing max_listens_per_region to [LL_Functions] config section in ↵Justin Clark-Casey (justincc)2011-10-291-0/+4
| | | | | | OpenSimDefaults.ini + explanation. This setting controls the maximum number of listeners in a region
* Remove the SyncRoot locking from Scene which was only being done around the ↵Justin Clark-Casey (justincc)2011-10-293-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.
* Add taint target velocity for ODECharacters as is already done for ↵Justin Clark-Casey (justincc)2011-10-291-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
* tidy up OdeCharacter so that we just use OpenMetaverse.Vector3 assignment ↵Justin Clark-Casey (justincc)2011-10-291-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.
* Move position set from taint to logically better position at top of ↵Justin Clark-Casey (justincc)2011-10-291-12/+12
| | | | ODECharacter.ProcessTaints() though this makes no practical difference
* Stop setting _position as well as m_taint_position in ODECharacter.PositionJustin Clark-Casey (justincc)2011-10-292-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
* Remove completely unused SOG.Rotation parameterJustin Clark-Casey (justincc)2011-10-293-18/+10
| | | | We always use SOP.Rotation instead
* set grp.RootPart.GroupPosition for code consistency (and readability) rather ↵Justin Clark-Casey (justincc)2011-10-282-7/+2
| | | | than calling SOP.OffsetForNewRegion
* Add missing doc to rotation/position methods in SOGJustin Clark-Casey (justincc)2011-10-281-5/+5
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2011-10-2822-227/+171
|\
| * Removed use of 'is' operator and casting to find the root ScenePresence in ↵Dan Lake2011-10-274-82/+53
| | | | | | | | MessageTransfer modules and Groups module.
| * Continuation of previous checkin. Found more places where ↵Dan Lake2011-10-274-57/+39
| | | | | | | | ForEachScenePresence can be changed to ForEachRootScenePresence.