aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-08-19 21:00:31 +0100
committerJustin Clark-Casey (justincc)2013-08-19 21:00:31 +0100
commit2fa42f24fd0e80adc16320a404e3e85ca6d1baa1 (patch)
tree9ff4539020853e60868f20a1aee7b93c8cd91768 /OpenSim/Tools/pCampBot
parentCreate a separate pCampbot "disconnect" console command which disconnects con... (diff)
downloadopensim-SC_OLD-2fa42f24fd0e80adc16320a404e3e85ca6d1baa1.zip
opensim-SC_OLD-2fa42f24fd0e80adc16320a404e3e85ca6d1baa1.tar.gz
opensim-SC_OLD-2fa42f24fd0e80adc16320a404e3e85ca6d1baa1.tar.bz2
opensim-SC_OLD-2fa42f24fd0e80adc16320a404e3e85ca6d1baa1.tar.xz
Make it possible to disconnected a specified number of bots via the pCampbot console command "disconnect [<n>]"
Bots disconnected are ascending from last in numeric order. Temporarily no way to reconnect bots.
Diffstat (limited to 'OpenSim/Tools/pCampBot')
-rw-r--r--OpenSim/Tools/pCampBot/BotManager.cs101
1 files changed, 55 insertions, 46 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index 5c0dc81..157c69c 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -80,7 +80,7 @@ namespace pCampBot
80 /// <summary> 80 /// <summary>
81 /// Created bots, whether active or inactive. 81 /// Created bots, whether active or inactive.
82 /// </summary> 82 /// </summary>
83 protected List<Bot> m_lBot; 83 protected List<Bot> m_bots;
84 84
85 /// <summary> 85 /// <summary>
86 /// Random number generator. 86 /// Random number generator.
@@ -130,35 +130,30 @@ namespace pCampBot
130 } 130 }
131 } 131 }
132 132
133 m_console.Commands.AddCommand("bot", false, "shutdown", 133 m_console.Commands.AddCommand(
134 "shutdown", 134 "bot", false, "shutdown", "shutdown", "Shutdown bots and exit", HandleShutdown);
135 "Shutdown bots and exit", HandleShutdown);
136 135
137 m_console.Commands.AddCommand("bot", false, "quit", 136 m_console.Commands.AddCommand(
138 "quit", 137 "bot", false, "quit", "quit", "Shutdown bots and exit", HandleShutdown);
139 "Shutdown bots and exit",
140 HandleShutdown);
141 138
142 m_console.Commands.AddCommand("bot", false, "disconnect", 139 m_console.Commands.AddCommand(
143 "disconnect", 140 "bot", false, "disconnect", "disconnect [<n>]", "Disconnect bots",
144 "Disconnect all bots", 141 "Disconnecting bots will interupt any bot connection process, including connection on startup.\n"
145 HandleDisconnect); 142 + "If an <n> is given, then the last <n> connected bots by postfix number are disconnected.\n"
143 + "If no <n> is given, then all currently connected bots are disconnected.",
144 HandleDisconnect);
146 145
147 m_console.Commands.AddCommand("bot", false, "show regions", 146 m_console.Commands.AddCommand(
148 "show regions", 147 "bot", false, "show regions", "show regions", "Show regions known to bots", HandleShowRegions);
149 "Show regions known to bots",
150 HandleShowRegions);
151 148
152 m_console.Commands.AddCommand("bot", false, "show bots", 149 m_console.Commands.AddCommand(
153 "show bots", 150 "bot", false, "show bots", "show bots", "Shows the status of all bots", HandleShowStatus);
154 "Shows the status of all bots",
155 HandleShowStatus);
156 151
157// m_console.Commands.AddCommand("bot", false, "add bots", 152// m_console.Commands.AddCommand("bot", false, "add bots",
158// "add bots <number>", 153// "add bots <number>",
159// "Add more bots", HandleAddBots); 154// "Add more bots", HandleAddBots);
160 155
161 m_lBot = new List<Bot>(); 156 m_bots = new List<Bot>();
162 } 157 }
163 158
164 /// <summary> 159 /// <summary>
@@ -196,7 +191,7 @@ namespace pCampBot
196 191
197 for (int i = 0; i < botcount; i++) 192 for (int i = 0; i < botcount; i++)
198 { 193 {
199 lock (m_lBot) 194 lock (m_bots)
200 { 195 {
201 if (DisconnectingBots) 196 if (DisconnectingBots)
202 break; 197 break;
@@ -316,7 +311,7 @@ namespace pCampBot
316 pb.OnConnected += handlebotEvent; 311 pb.OnConnected += handlebotEvent;
317 pb.OnDisconnected += handlebotEvent; 312 pb.OnDisconnected += handlebotEvent;
318 313
319 m_lBot.Add(pb); 314 m_bots.Add(pb);
320 315
321 Thread pbThread = new Thread(pb.startup); 316 Thread pbThread = new Thread(pb.startup);
322 pbThread.Name = pb.Name; 317 pbThread.Name = pb.Name;
@@ -349,21 +344,6 @@ namespace pCampBot
349 } 344 }
350 345
351 /// <summary> 346 /// <summary>
352 /// Shut down all bots
353 /// </summary>
354 /// <remarks>
355 /// We launch each shutdown on its own thread so that a slow shutting down bot doesn't hold up all the others.
356 /// </remarks>
357 private void ShutdownBots()
358 {
359 foreach (Bot bot in m_lBot)
360 {
361 Bot thisBot = bot;
362 Util.FireAndForget(o => thisBot.shutdown());
363 }
364 }
365
366 /// <summary>
367 /// Standard CreateConsole routine 347 /// Standard CreateConsole routine
368 /// </summary> 348 /// </summary>
369 /// <returns></returns> 349 /// <returns></returns>
@@ -374,21 +354,50 @@ namespace pCampBot
374 354
375 private void HandleDisconnect(string module, string[] cmd) 355 private void HandleDisconnect(string module, string[] cmd)
376 { 356 {
377 MainConsole.Instance.Output("Disconnecting bots"); 357 lock (m_bots)
378
379 lock (m_lBot)
380 { 358 {
359 int botsToDisconnect;
360 int connectedBots = m_bots.Count(b => b.ConnectionState == ConnectionState.Connected);
361
362 if (cmd.Length == 1)
363 {
364 botsToDisconnect = connectedBots;
365 }
366 else
367 {
368 if (!ConsoleUtil.TryParseConsoleNaturalInt(MainConsole.Instance, cmd[1], out botsToDisconnect))
369 return;
370
371 botsToDisconnect = Math.Min(botsToDisconnect, connectedBots);
372 }
373
381 DisconnectingBots = true; 374 DisconnectingBots = true;
382 375
383 ShutdownBots(); 376 MainConsole.Instance.OutputFormat("Disconnecting {0} bots", botsToDisconnect);
377
378 int disconnectedBots = 0;
379
380 for (int i = m_bots.Count - 1; i >= 0; i--)
381 {
382 if (disconnectedBots >= botsToDisconnect)
383 break;
384
385 Bot thisBot = m_bots[i];
386
387 if (thisBot.ConnectionState == ConnectionState.Connected)
388 {
389 Util.FireAndForget(o => thisBot.shutdown());
390 disconnectedBots++;
391 }
392 }
384 } 393 }
385 } 394 }
386 395
387 private void HandleShutdown(string module, string[] cmd) 396 private void HandleShutdown(string module, string[] cmd)
388 { 397 {
389 lock (m_lBot) 398 lock (m_bots)
390 { 399 {
391 int connectedBots = m_lBot.Count(b => b.ConnectionState == ConnectionState.Connected); 400 int connectedBots = m_bots.Count(b => b.ConnectionState == ConnectionState.Connected);
392 401
393 if (connectedBots > 0) 402 if (connectedBots > 0)
394 { 403 {
@@ -429,9 +438,9 @@ namespace pCampBot
429 foreach (object o in Enum.GetValues(typeof(ConnectionState))) 438 foreach (object o in Enum.GetValues(typeof(ConnectionState)))
430 totals[(ConnectionState)o] = 0; 439 totals[(ConnectionState)o] = 0;
431 440
432 lock (m_lBot) 441 lock (m_bots)
433 { 442 {
434 foreach (Bot pb in m_lBot) 443 foreach (Bot pb in m_bots)
435 { 444 {
436 Simulator currentSim = pb.Client.Network.CurrentSim; 445 Simulator currentSim = pb.Client.Network.CurrentSim;
437 totals[pb.ConnectionState]++; 446 totals[pb.ConnectionState]++;