* Fixed a bug in SetAvatarInformation() where the AboutText wasn't being set

* Added FindSimCommand to TestClient that searches for a simulator name and returns the region handle and X/Y coords
* Added CloneProfileCommand to TestClient that demos the avatar profile commands in libsl

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@766 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-12-27 21:55:35 +00:00
parent 3892bc7a9d
commit 5dfd504cd4
6 changed files with 155 additions and 6 deletions

View File

@@ -10,6 +10,10 @@ namespace libsecondlife.TestClient
{
public class TestClient : SecondLife
{
public delegate void PrimCreatedCallback(Simulator simulator, PrimObject prim);
public event PrimCreatedCallback OnPrimCreated;
public Dictionary<Simulator, Dictionary<uint, PrimObject>> SimPrims;
public LLUUID GroupID = LLUUID.Zero;
public Dictionary<LLUUID, GroupMember> GroupMembers;
@@ -18,12 +22,9 @@ namespace libsecondlife.TestClient
public Dictionary<string, Command> Commands = new Dictionary<string,Command>();
public Dictionary<string, object> SharedValues = new Dictionary<string, object>();
public bool Running = true;
public string Master = "";
public string Master = String.Empty;
public ClientManager ClientManager;
public delegate void PrimCreatedCallback(Simulator simulator, PrimObject prim);
public event PrimCreatedCallback OnPrimCreated;
private LLQuaternion bodyRotation = LLQuaternion.Identity;
private LLVector3 forward = new LLVector3(0, 0.9999f, 0);
private LLVector3 left = new LLVector3(0.9999f, 0, 0);
@@ -31,7 +32,6 @@ namespace libsecondlife.TestClient
private int DrawDistance = 64;
private System.Timers.Timer updateTimer;
/// <summary>
///
/// </summary>