[Simulator.cs]

* Changed simulator.AvatarPositions from Dictionary to InternalDictionary
* Resolves LIBOMV-450 by removing simulator.PositionIndexYou and .PositionIndexPrey in favor of Client.Self.AgentID and simulator.PreyID for indexing AvatarPositions
[InternalDictionary.cs]
* Added lock to .TryGetValue
* Added .FindAll overload for using a key as the predicate instead of value
[OpenMetaverse.GUI]
* Visual and functional enhancements to Minimap and AvatarList (takes advantage of new AvatarPositions code)
* Added failed login retry dialog to Dashboard
* Added more documentation to public classes

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2549 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
2009-03-27 18:29:32 +00:00
parent ecbfb4b1f9
commit 154d2ef319
8 changed files with 483 additions and 183 deletions

View File

@@ -30,6 +30,9 @@ using System.Windows.Forms;
namespace OpenMetaverse.GUI
{
/// <summary>
/// RichTextBox GUI component for displaying a client's status output
/// </summary>
public class StatusOutput : RichTextBox
{
private GridClient _Client;
@@ -57,6 +60,8 @@ namespace OpenMetaverse.GUI
}
else
{
if (!this.IsHandleCreated) return;
this.SelectionStart = this.Text.Length;
this.SelectionColor = color;
DateTime now = DateTime.Now;