* Added SleepCommand to TestClient which uses AgentPause and AgentResume to sleep for a given number of seconds
* Added ScriptCommand to TestClient to execute commands from a script git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2223 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
38
Programs/examples/TestClient/Commands/ScriptCommand.cs
Normal file
38
Programs/examples/TestClient/Commands/ScriptCommand.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenMetaverse.TestClient
|
||||
{
|
||||
public class ScriptCommand : Command
|
||||
{
|
||||
public ScriptCommand(TestClient testClient)
|
||||
{
|
||||
Name = "script";
|
||||
Description = "Reads TestClient commands from a file. One command per line, arguments separated by spaces. Usage: script [filename]";
|
||||
Category = CommandCategory.TestClient;
|
||||
}
|
||||
|
||||
public override string Execute(string[] args, UUID fromAgentID)
|
||||
{
|
||||
if (args.Length != 1)
|
||||
return "Usage: script [filename]";
|
||||
|
||||
// Load the file
|
||||
string[] lines = null;
|
||||
try { File.ReadAllLines(args[0]); }
|
||||
catch (Exception e) { return e.Message; }
|
||||
|
||||
// Execute all of the commands
|
||||
for (int i = 0; i < lines.Length; i++)
|
||||
{
|
||||
string line = lines[i].Trim();
|
||||
|
||||
if (line.Length > 0)
|
||||
Client.ClientManager.DoCommandAll(line, UUID.Zero);
|
||||
}
|
||||
|
||||
return "Finished executing " + lines.Length + " commands";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user