On a mad coding spree.

* Implemented AvatarManager, added the async functions
* Rebuilt the key2name functionality
* Fixed and cleaned up a lot of the teleporting code
* More functions implemented in GroupManager
* Renamed SecondLife.Avatar to SecondLife.Self
* Updated the groupmanager example to list group members
* Renamed Form1.cs to AnimationSample.cs

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@386 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-10-24 11:16:26 +00:00
parent f079a2b342
commit 9830bf85e4
21 changed files with 636 additions and 649 deletions

View File

@@ -0,0 +1,152 @@
namespace AnimationSample
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
try
{
client.Network.Logout();
}
catch
{
//ignore
}
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtLast = new System.Windows.Forms.TextBox();
this.txtFirst = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.btnLogin = new System.Windows.Forms.Button();
this.btnPlay = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtLast
//
this.txtLast.Location = new System.Drawing.Point(162, 33);
this.txtLast.Name = "txtLast";
this.txtLast.Size = new System.Drawing.Size(133, 20);
this.txtLast.TabIndex = 0;
this.txtLast.Text = "Malthus";
//
// txtFirst
//
this.txtFirst.Location = new System.Drawing.Point(23, 33);
this.txtFirst.Name = "txtFirst";
this.txtFirst.Size = new System.Drawing.Size(133, 20);
this.txtFirst.TabIndex = 0;
this.txtFirst.Text = "Jesse";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(301, 33);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(133, 20);
this.txtPassword.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(159, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(58, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Last Name";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 17);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(57, 13);
this.label2.TabIndex = 1;
this.label2.Text = "First Name";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(298, 17);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 13);
this.label3.TabIndex = 1;
this.label3.Text = "Password";
//
// btnLogin
//
this.btnLogin.Location = new System.Drawing.Point(305, 61);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(128, 29);
this.btnLogin.TabIndex = 2;
this.btnLogin.Text = "Login";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// btnPlay
//
this.btnPlay.Location = new System.Drawing.Point(162, 131);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(133, 42);
this.btnPlay.TabIndex = 3;
this.btnPlay.Text = "Play \"dance1\" animation";
this.btnPlay.UseVisualStyleBackColor = true;
this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(464, 196);
this.Controls.Add(this.btnPlay);
this.Controls.Add(this.btnLogin);
this.Controls.Add(this.label2);
this.Controls.Add(this.label3);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.txtFirst);
this.Controls.Add(this.txtLast);
this.Name = "Form1";
this.Text = "LibSL Animation Example";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtLast;
private System.Windows.Forms.TextBox txtFirst;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Button btnPlay;
}
}