2008-09-15 22:12:56 +00:00
|
|
|
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
|
2008-09-15 23:37:35 +00:00
|
|
|
string[] lines;
|
|
|
|
|
try { lines = File.ReadAllLines(args[0]); }
|
2008-09-15 22:12:56 +00:00
|
|
|
catch (Exception e) { return e.Message; }
|
|
|
|
|
|
|
|
|
|
// Execute all of the commands
|
2021-07-25 11:10:52 -05:00
|
|
|
foreach (var l in lines)
|
2008-09-15 22:12:56 +00:00
|
|
|
{
|
2021-07-25 11:10:52 -05:00
|
|
|
string line = l.Trim();
|
2008-09-15 22:12:56 +00:00
|
|
|
|
|
|
|
|
if (line.Length > 0)
|
2009-05-08 18:57:45 +00:00
|
|
|
ClientManager.Instance.DoCommandAll(line, UUID.Zero);
|
2008-09-15 22:12:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "Finished executing " + lines.Length + " commands";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|