aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/BotManager.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-17/+17
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-151/+752
2012-05-11Print out more information on connecting botsJustin Clark-Casey (justincc)1-8/+18
2012-05-11Stagger multiple bot logins by 5 seconds to make this part of the test more ↵Justin Clark-Casey (justincc)1-0/+13
'realistic' TODO: Need to make this value configurable by a command line parameter to pCampbot
2012-05-11Do bot startup on another thread so console is responsive during this processJustin Clark-Casey (justincc)1-0/+1
2012-05-11Do each bot shutdown on its own threads to prevent one slow shutdown holding ↵Justin Clark-Casey (justincc)1-8/+13
up all the rest. This does increase the aggressiveness of shutdown Also prevents the bot list being locked for a long period, which was preventing commands such as "show bots" from working during shutdown
2012-05-11Change bot.IsConnected to be ConnectionState with Disconnected, Connecting, ↵Justin Clark-Casey (justincc)1-2/+2
Connnected and Disconnecting states
2012-05-11If a bot is not connected, show region name "(none)" instead of throwing an ↵Justin Clark-Casey (justincc)1-1/+3
exception in the "show bots" command of pCampbot
2012-03-02minor: Rename pCampbot console prompt to "pCampbot" rather than "Region"Justin Clark-Casey (justincc)1-1/+1
2011-11-24On pCampBot, add bot as a property on behaviours instead of passing it in ↵Justin Clark-Casey (justincc)1-19/+19
every time
2011-11-24Add disabled CrossBehaviour to pCampBot, which is designed to cross test ↵Justin Clark-Casey (justincc)1-0/+3
bots between neighbouring regions. Not yet enabled since there is a bug where the initial cross will work but all subsequent movements on the receiving simulator appear to fail.
2011-11-23Print out what behaviours are active when pCampBot starts upJustin Clark-Casey (justincc)1-12/+27
2011-11-23Add teleport behaviour to pCampBotJustin Clark-Casey (justincc)1-0/+3
This teleports the bot to any other regions +/- 5 on the x or y axis. Quite aggressive at the moment since teleports keep occuring at a 1-10secs random interval. No checking yet to see if teleport was successful.
2011-11-23In pCampbot, change "show status" command to "show bots"Justin Clark-Casey (justincc)1-2/+2
2011-11-23get pCampBot to extract nearby and store nearby region informationJustin Clark-Casey (justincc)1-4/+50
2011-11-23Change random number generator property name in pCampbotJustin Clark-Casey (justincc)1-1/+7
2011-11-10launch pCampbot shutdown console comand asynchronouslyJustin Clark-Casey (justincc)1-2/+5
2011-11-10Remove unused index parameter from BotManager.startupBot(). Rename ↵Justin Clark-Casey (justincc)1-5/+4
startupBot() => StartBot()
2011-11-09Use IsConnected status to determine whether all pCampBots have disconnected, ↵Justin Clark-Casey (justincc)1-8/+8
rather than maintaining a separate count Checking IsConnected is more reliable.
2011-11-03Rename PhysicsBot => Bot since it doesn't just exercise physics anymoreJustin Clark-Casey (justincc)1-6/+6
2011-11-03Add click/grab behaviour to pCampbot, which gets bots to randomly click things.Justin Clark-Casey (justincc)1-3/+13
This can be specified on pCampbot.exe by using g in the list of behaviours for the new -behaviours,-b switch e.g. -b p,g to get both existing physics and grabbing behaviours. grabbing is primitive, it attempts grabs on random prims whether they're actually signalled as clickable or not. behaviour is currently primitive overall, behaviours are just executed in a list
2011-11-03Separate out physics testing actions into a separate PhysicsBehaviour classJustin Clark-Casey (justincc)1-4/+12
2011-11-01Add "show status" command to pCambotJustin Clark-Casey (justincc)1-5/+25
2011-11-01get rid of unused m_verbose fieldJustin Clark-Casey (justincc)1-1/+0
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-10-31Make bots share a cache so that asset downloads attempts are only made once ↵Justin Clark-Casey (justincc)1-4/+11
instead of once for each bot
2011-10-31Remove OpenSim.TestSuiteJustin Clark-Casey (justincc)1-1/+3
Hasn't been touched since 2009 and wasn't more than another copy of pCampBot
2011-10-31adjust pCampbot so it starts up bots with the name format "<firstname> ↵Justin Clark-Casey (justincc)1-57/+50
<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)1-8/+8
counting.
2009-10-06Fixing a few compile errors in the previous commitJohn Hurliman1-1/+0
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-20Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker1-1/+1
2009-05-04Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker1-3/+3
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 :)
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-0/+2
warnings. Fix some m_log declarations.
2009-02-10Add proper handling for shared vs. unshared modules to the commandMelanie Thielker1-3/+3
interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
2009-02-07Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker1-33/+52
line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
2008-09-12Changed "show users" command to display only root agents, "show users full" toHomer Horwitz1-2/+2
display root and child agents (mantis #2171).
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-2/+2
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-18Formatting cleanup.Jeff Ames1-5/+5
2008-05-01* Thanks to Mic Bowman for inspiring me to look at that we are still using ↵Adam Frisby1-1/+1
ASCIIEncoder in places we shouldn't.
2008-04-30* Spring cleaned a bunch of '//TODO: unused' marked functions.Adam Frisby1-17/+0
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-7/+6
(this took a while to run).
2008-03-22Fix compiler warnings in pCampBot, TestSuite, and ScriptEngine/RemoteServer. ↵Jeff Ames1-10/+10
Thanks daTwitch!
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-02-21"threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen1-0/+1
compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
2008-02-19Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen1-0/+2
threads so it will be easier to debug.
2008-02-15Moved pCampBot to OpenSim/ToolsJeff Ames1-0/+0
2008-02-07Fix warning in BotManager.csJeff Ames1-9/+3
2008-02-07Convert pCampBot to use log4netJeff Ames1-28/+15
2008-02-03* Adding the PhysicsCamperBot load testing app to the SVN in it's own ↵Teravus Ovares1-0/+254
folder. You'll have to build it separately to take advantage of it. *read the Readme file*. The bots created by this application roam around amusingly to simulate load. * Be smart, Don't use this on a public grid, lest you get banned permanently.