124 lines
4.7 KiB
C#
124 lines
4.7 KiB
C#
/*
|
|
* Copyright (c) 2006-2016, openmetaverse.co
|
|
* All rights reserved.
|
|
*
|
|
* - Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
* - Neither the name of the openmetaverse.co nor the names
|
|
* of its contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
|
|
namespace OpenMetaverse.GUI
|
|
{
|
|
/// <summary>
|
|
/// RichTextBox GUI component for displaying a client's status output
|
|
/// </summary>
|
|
public class StatusOutput : RichTextBox
|
|
{
|
|
/// <summary>
|
|
/// A file that output should be logged to (or null, to disable logging)
|
|
/// </summary>
|
|
public string LogFile = null;
|
|
|
|
private GridClient _Client;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the GridClient associated with this control
|
|
/// </summary>
|
|
public GridClient Client
|
|
{
|
|
get { return _Client; }
|
|
set { if (value != null) InitializeClient(value); }
|
|
}
|
|
|
|
public StatusOutput()
|
|
{
|
|
this.ReadOnly = true;
|
|
this.BackColor = Color.White;
|
|
}
|
|
|
|
public void LogText(string text, Color color)
|
|
{
|
|
if (!this.IsHandleCreated) return;
|
|
|
|
if (this.InvokeRequired)
|
|
{
|
|
this.BeginInvoke((MethodInvoker)delegate { LogText(text, color); });
|
|
}
|
|
else
|
|
{
|
|
this.SelectionStart = this.Text.Length;
|
|
this.SelectionColor = color;
|
|
DateTime now = DateTime.Now;
|
|
string output = String.Format("{0}[{1}:{2}] {3}", Environment.NewLine, now.Hour.ToString().PadLeft(2, '0'), now.Minute.ToString().PadLeft(2, '0'), text);
|
|
this.SelectedText = output;
|
|
this.ScrollToCaret();
|
|
|
|
if (LogFile != null)
|
|
File.AppendAllText(LogFile, output);
|
|
}
|
|
}
|
|
|
|
private void InitializeClient(GridClient client)
|
|
{
|
|
_Client = client;
|
|
_Client.Network.SimChanged += Network_OnCurrentSimChanged;
|
|
_Client.Network.Disconnected += Network_OnDisconnected;
|
|
_Client.Network.LoginProgress += Network_OnLogin;
|
|
_Client.Self.AlertMessage += Self_AlertMessage;
|
|
_Client.Self.MoneyBalanceReply += Self_MoneyBalanceReply;
|
|
}
|
|
|
|
void Self_AlertMessage(object sender, AlertMessageEventArgs e)
|
|
{
|
|
LogText(e.Message, Color.Gray);
|
|
}
|
|
|
|
void Self_MoneyBalanceReply(object sender, MoneyBalanceReplyEventArgs e)
|
|
{
|
|
if (e.Description != String.Empty) LogText(e.Description, Color.Green);
|
|
LogText("Balance: L$" + e.Balance, Color.Green);
|
|
}
|
|
|
|
void Network_OnCurrentSimChanged(object sender, SimChangedEventArgs e)
|
|
{
|
|
if (Client.Network.CurrentSim != null)
|
|
{
|
|
LogText("Entered region \"" + Client.Network.CurrentSim.Name + "\".", Color.Black);
|
|
}
|
|
}
|
|
|
|
void Network_OnDisconnected(object sender, DisconnectedEventArgs e)
|
|
{
|
|
LogText("Disconnected" + (!String.IsNullOrEmpty(e.Message) ? ": " + e.Message : "."), Color.Black);
|
|
}
|
|
|
|
void Network_OnLogin(object sender, LoginProgressEventArgs e)
|
|
{
|
|
if (e.Status == LoginStatus.Failed) LogText("Login failed: " + e.Message, Color.Red);
|
|
else if (e.Status != LoginStatus.Success) LogText(e.Message, Color.Black);
|
|
}
|
|
}
|
|
}
|