125 lines
No EOL
3.2 KiB
C#
125 lines
No EOL
3.2 KiB
C#
using System;
|
|
|
|
namespace Server
|
|
{
|
|
public class TextDefinition
|
|
{
|
|
private int m_Number;
|
|
private string m_String;
|
|
|
|
public int Number{ get{ return m_Number; } }
|
|
public string String{ get{ return m_String; } }
|
|
|
|
public TextDefinition( int number ) : this( number, null )
|
|
{
|
|
}
|
|
|
|
public TextDefinition( string text ) : this( 0, text )
|
|
{
|
|
}
|
|
|
|
public TextDefinition( int number, string text )
|
|
{
|
|
m_Number = number;
|
|
m_String = text;
|
|
}
|
|
|
|
public TextDefinition( GenericReader reader )
|
|
{
|
|
int type = reader.ReadEncodedInt();
|
|
|
|
switch ( type )
|
|
{
|
|
case 1: m_Number = reader.ReadEncodedInt(); m_String = null; break;
|
|
case 2: m_Number = 0; m_String = reader.ReadString(); break;
|
|
default: m_Number = 0; m_String = null; break;
|
|
}
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
if ( m_Number > 0 )
|
|
return "#" + m_Number.ToString();
|
|
else if ( m_String != null )
|
|
return m_String;
|
|
|
|
return "(empty)";
|
|
}
|
|
|
|
public virtual void Serialize( GenericWriter writer )
|
|
{
|
|
if ( m_Number > 0 )
|
|
{
|
|
writer.WriteEncodedInt( 1 );
|
|
writer.WriteEncodedInt( m_Number );
|
|
}
|
|
else if ( m_String != null )
|
|
{
|
|
writer.WriteEncodedInt( 2 );
|
|
writer.Write( m_String );
|
|
}
|
|
else
|
|
writer.WriteEncodedInt( 0 );
|
|
}
|
|
|
|
public static void AddTo( ObjectPropertyList list, TextDefinition def )
|
|
{
|
|
if ( def != null && def.m_Number > 0 )
|
|
list.Add( def.m_Number );
|
|
else if ( def != null && def.m_String != null )
|
|
list.Add( def.m_String );
|
|
}
|
|
|
|
public static implicit operator TextDefinition ( int v )
|
|
{
|
|
return new TextDefinition( v );
|
|
}
|
|
|
|
public static implicit operator TextDefinition ( string s )
|
|
{
|
|
return new TextDefinition( s );
|
|
}
|
|
|
|
public static implicit operator int ( TextDefinition m )
|
|
{
|
|
if ( m == null )
|
|
return 0;
|
|
|
|
return m.m_Number;
|
|
}
|
|
|
|
public static implicit operator string ( TextDefinition m )
|
|
{
|
|
if ( m == null )
|
|
return null;
|
|
|
|
return m.m_String;
|
|
}
|
|
|
|
public static void AddHtmlText( Server.Gumps.Gump g, int x, int y, int width, int height, TextDefinition text, bool back, bool scroll, int numberColor, int stringColor )
|
|
{
|
|
if( text != null && text.Number > 0 )
|
|
if( numberColor >= 0 )
|
|
g.AddHtmlLocalized( x, y, width, height, text.Number, numberColor, back, scroll );
|
|
else
|
|
g.AddHtmlLocalized( x, y, width, height, text.Number, back, scroll );
|
|
else if( text != null && text.String != null )
|
|
if( stringColor >= 0 )
|
|
g.AddHtml( x, y, width, height, String.Format( "<BASEFONT COLOR=#{0:X6}>{1}</BASEFONT>", stringColor, text.String ), back, scroll );
|
|
else
|
|
g.AddHtml( x, y, width, height, text.String, back, scroll );
|
|
}
|
|
public static void AddHtmlText( Server.Gumps.Gump g, int x, int y, int width, int height, TextDefinition text, bool back, bool scroll )
|
|
{
|
|
AddHtmlText( g, x, y, width, height, text, back, scroll, -1, -1 );
|
|
}
|
|
|
|
public static void SendMessageTo( Mobile m, TextDefinition def )
|
|
{
|
|
if( def.Number > 0 )
|
|
m.SendLocalizedMessage( def.Number );
|
|
else if( def.String != null )
|
|
m.SendMessage( def.String );
|
|
}
|
|
}
|
|
} |