From 1b877234dada9f14cebc486cc426db892beae152 Mon Sep 17 00:00:00 2001
From: Melanie Thielker
Date: Mon, 4 May 2009 12:15:55 +0000
Subject: Refactor. Make ConsoleBase a true base class. Create CommandConsole
 as a simple console capable of processing commands. Create LocalConsole as a
 console that uses cursor control and context help. Precursor to a distributed
 console system for the new grid services. No functional change intended :)

---
 OpenSim/Tools/pCampBot/BotManager.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'OpenSim/Tools')

diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index c015bbc..2cd947e 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -47,7 +47,7 @@ namespace pCampBot
     {
         private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
 
-        protected ConsoleBase m_console;
+        protected CommandConsole m_console;
         protected List<PhysicsBot> m_lBot;
         protected Thread[] m_td;
         protected bool m_verbose = true;
@@ -206,9 +206,9 @@ namespace pCampBot
         /// Standard CreateConsole routine
         /// </summary>
         /// <returns></returns>
-        protected ConsoleBase CreateConsole()
+        protected CommandConsole CreateConsole()
         {
-            return new ConsoleBase("Region");
+            return new LocalConsole("Region");
         }
 
         private void HandleShutdown(string module, string[] cmd)
-- 
cgit v1.1