From 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb Mon Sep 17 00:00:00 2001 From: onefang Date: Sun, 19 May 2019 21:24:15 +1000 Subject: Dump OpenSim 0.9.0.1 into it's own branch. --- OpenSim/Tools/pCampBot/Behaviours/AbstractBehaviour.cs | 4 ++-- OpenSim/Tools/pCampBot/Behaviours/CrossBehaviour.cs | 6 +++--- OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs | 6 +++--- OpenSim/Tools/pCampBot/Behaviours/InventoryDownloadBehaviour.cs | 6 +++--- OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs | 8 ++++---- OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour2.cs | 6 +++--- OpenSim/Tools/pCampBot/Behaviours/TeleportBehaviour.cs | 4 ++-- OpenSim/Tools/pCampBot/Behaviours/TwitchyBehaviour.cs | 8 ++++---- 8 files changed, 24 insertions(+), 24 deletions(-) (limited to 'OpenSim/Tools/pCampBot/Behaviours') diff --git a/OpenSim/Tools/pCampBot/Behaviours/AbstractBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/AbstractBehaviour.cs index c1ba36b..f46948c 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/AbstractBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/AbstractBehaviour.cs @@ -37,7 +37,7 @@ namespace pCampBot public abstract class AbstractBehaviour : IBehaviour { /// - /// Abbreviated name of this behaviour. + /// Abbreviated name of this behaviour. /// public string AbbreviatedName { get; protected set; } @@ -56,7 +56,7 @@ namespace pCampBot Bot = bot; } - public virtual void Close() + public virtual void Close() { Interrupt(); } diff --git a/OpenSim/Tools/pCampBot/Behaviours/CrossBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/CrossBehaviour.cs index 4d806fc..451cfcc 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/CrossBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/CrossBehaviour.cs @@ -47,10 +47,10 @@ namespace pCampBot public const int m_regionCrossingTimeout = 1000 * 60; - public CrossBehaviour() - { + public CrossBehaviour() + { AbbreviatedName = "c"; - Name = "Cross"; + Name = "Cross"; } public override void Action() diff --git a/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs index 59f6244..b27ece8 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs @@ -42,10 +42,10 @@ namespace pCampBot /// public class GrabbingBehaviour : AbstractBehaviour { - public GrabbingBehaviour() - { + public GrabbingBehaviour() + { AbbreviatedName = "g"; - Name = "Grabbing"; + Name = "Grabbing"; } public override void Action() diff --git a/OpenSim/Tools/pCampBot/Behaviours/InventoryDownloadBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/InventoryDownloadBehaviour.cs index 521415c..e868fa9 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/InventoryDownloadBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/InventoryDownloadBehaviour.cs @@ -45,8 +45,8 @@ namespace pCampBot private Stopwatch m_StopWatch = new Stopwatch(); private List m_processed = new List(); - public InventoryDownloadBehaviour() - { + public InventoryDownloadBehaviour() + { AbbreviatedName = "inv"; Name = "Inventory"; } @@ -113,7 +113,7 @@ namespace pCampBot } - public override void Interrupt() + public override void Interrupt() { m_interruptEvent.Set(); } diff --git a/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs index 0d43781..b832d7e 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs @@ -38,10 +38,10 @@ namespace pCampBot /// public class NoneBehaviour : AbstractBehaviour { - public NoneBehaviour() - { + public NoneBehaviour() + { AbbreviatedName = "n"; - Name = "None"; + Name = "None"; } public override void Action() @@ -52,7 +52,7 @@ namespace pCampBot Bot.Client.Self.Movement.Stop = false; } - public override void Interrupt() + public override void Interrupt() { m_interruptEvent.Set(); } diff --git a/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour2.cs b/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour2.cs index 1ec2046..54782c1 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour2.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour2.cs @@ -45,10 +45,10 @@ namespace pCampBot { // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - public PhysicsBehaviour2() - { + public PhysicsBehaviour2() + { AbbreviatedName = "ph2"; - Name = "Physics2"; + Name = "Physics2"; } private const int TIME_WALKING = 5 * 10; // 5 seconds diff --git a/OpenSim/Tools/pCampBot/Behaviours/TeleportBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/TeleportBehaviour.cs index 81f250d..9611d72 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/TeleportBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/TeleportBehaviour.cs @@ -43,10 +43,10 @@ namespace pCampBot { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - public TeleportBehaviour() + public TeleportBehaviour() { AbbreviatedName = "t"; - Name = "Teleport"; + Name = "Teleport"; } public override void Action() diff --git a/OpenSim/Tools/pCampBot/Behaviours/TwitchyBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/TwitchyBehaviour.cs index 7b4639d..42dbc8f 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/TwitchyBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/TwitchyBehaviour.cs @@ -38,7 +38,7 @@ namespace pCampBot /// /// This behavior is for the systematic study of some performance improvements made /// for OSCC'13. - /// Do nothing, but send AgentUpdate packets all the time that have only slightly + /// Do nothing, but send AgentUpdate packets all the time that have only slightly /// different state. The delta of difference will be filtered by OpenSim early on /// in the packet processing pipeline. These filters did not exist before OSCC'13. /// @@ -46,10 +46,10 @@ namespace pCampBot { // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - public TwitchyBehaviour() - { + public TwitchyBehaviour() + { AbbreviatedName = "tw"; - Name = "Twitchy"; + Name = "Twitchy"; } private const float TWITCH = 0.0001f; -- cgit v1.1