#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-03 20:19:48 -04:00
commit 8eae46895e
7512 changed files with 416187 additions and 0 deletions

View file

@ -0,0 +1,112 @@
/***************************************************************************
* PacketProfile.cs
* -------------------
* begin : May 1, 2002
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id$
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
using System;
using System.IO;
using System.Collections.Generic;
using System.Diagnostics;
namespace Server.Diagnostics {
public abstract class BaseProfile {
public static void WriteAll<T>( TextWriter op, IEnumerable<T> profiles ) where T : BaseProfile {
List<T> list = new List<T>( profiles );
list.Sort( delegate( T a, T b ) {
return -a.TotalTime.CompareTo( b.TotalTime );
} );
foreach ( T prof in list ) {
prof.WriteTo( op );
op.WriteLine();
}
}
private string _name;
private long _count;
private TimeSpan _totalTime;
private TimeSpan _peakTime;
private Stopwatch _stopwatch;
public string Name {
get {
return _name;
}
}
public long Count {
get {
return _count;
}
}
public TimeSpan AverageTime {
get {
return TimeSpan.FromTicks( _totalTime.Ticks / Math.Max( 1, _count ) );
}
}
public TimeSpan PeakTime {
get {
return _peakTime;
}
}
public TimeSpan TotalTime {
get {
return _totalTime;
}
}
protected BaseProfile( string name ) {
_name = name;
_stopwatch = new Stopwatch();
}
public virtual void Start() {
if ( _stopwatch.IsRunning ) {
_stopwatch.Reset();
}
_stopwatch.Start();
}
public virtual void Finish() {
TimeSpan elapsed = _stopwatch.Elapsed;
_totalTime += elapsed;
if ( elapsed > _peakTime ) {
_peakTime = elapsed;
}
_count++;
_stopwatch.Reset();
}
public virtual void WriteTo( TextWriter op ) {
op.Write( "{0,-100} {1,12:N0} {2,12:F5} {3,-12:F5} {4,12:F5}", Name, Count, AverageTime.TotalSeconds, PeakTime.TotalSeconds, TotalTime.TotalSeconds );
}
}
}

View file

@ -0,0 +1,53 @@
/***************************************************************************
* PacketProfile.cs
* -------------------
* begin : May 1, 2002
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id$
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
namespace Server.Diagnostics {
public class GumpProfile : BaseProfile {
private static Dictionary<Type, GumpProfile> _profiles = new Dictionary<Type, GumpProfile>();
public static IEnumerable<GumpProfile> Profiles {
get {
return _profiles.Values;
}
}
public static GumpProfile Acquire( Type type ) {
if ( !Core.Profiling ) {
return null;
}
GumpProfile prof;
if ( !_profiles.TryGetValue( type, out prof ) ) {
_profiles.Add( type, prof = new GumpProfile( type ) );
}
return prof;
}
public GumpProfile( Type type )
: base( type.FullName ) {
}
}
}

View file

@ -0,0 +1,131 @@
/***************************************************************************
* PacketProfile.cs
* -------------------
* begin : May 1, 2002
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id$
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Server.Diagnostics {
public abstract class BasePacketProfile : BaseProfile {
private long _totalLength;
public long TotalLength {
get {
return _totalLength;
}
}
public double AverageLength {
get {
return ( double ) _totalLength / Math.Max( 1, this.Count );
}
}
protected BasePacketProfile(string name)
: base( name ) {
}
public void Finish( int length ) {
Finish();
_totalLength += length;
}
public override void WriteTo( TextWriter op ) {
base.WriteTo( op );
op.Write( "\t{0,12:F2} {1,-12:N0}", AverageLength, TotalLength );
}
}
public class PacketSendProfile : BasePacketProfile {
private static Dictionary<Type, PacketSendProfile> _profiles = new Dictionary<Type, PacketSendProfile>();
public static IEnumerable<PacketSendProfile> Profiles {
get {
return _profiles.Values;
}
}
public static PacketSendProfile Acquire( Type type ) {
if ( !Core.Profiling ) {
return null;
}
PacketSendProfile prof;
if ( !_profiles.TryGetValue( type, out prof ) ) {
_profiles.Add( type, prof = new PacketSendProfile( type ) );
}
return prof;
}
private long _created;
public long Created {
get {
return _created;
}
set {
_created = value;
}
}
public PacketSendProfile( Type type )
: base( type.FullName ) {
}
public override void WriteTo( TextWriter op ) {
base.WriteTo( op );
op.Write( "\t{0,12:N0}", Created );
}
}
public class PacketReceiveProfile : BasePacketProfile {
private static Dictionary<int, PacketReceiveProfile> _profiles = new Dictionary<int, PacketReceiveProfile>();
public static IEnumerable<PacketReceiveProfile> Profiles {
get {
return _profiles.Values;
}
}
public static PacketReceiveProfile Acquire( int packetId ) {
if ( !Core.Profiling ) {
return null;
}
PacketReceiveProfile prof;
if ( !_profiles.TryGetValue( packetId, out prof ) ) {
_profiles.Add( packetId, prof = new PacketReceiveProfile( packetId ) );
}
return prof;
}
public PacketReceiveProfile( int packetId )
: base( String.Format( "0x{0:X2}", packetId ) ) {
}
}
}

View file

@ -0,0 +1,53 @@
/***************************************************************************
* PacketProfile.cs
* -------------------
* begin : May 1, 2002
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id$
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
namespace Server.Diagnostics {
public class TargetProfile : BaseProfile {
private static Dictionary<Type, TargetProfile> _profiles = new Dictionary<Type, TargetProfile>();
public static IEnumerable<TargetProfile> Profiles {
get {
return _profiles.Values;
}
}
public static TargetProfile Acquire( Type type ) {
if ( !Core.Profiling ) {
return null;
}
TargetProfile prof;
if ( !_profiles.TryGetValue( type, out prof ) ) {
_profiles.Add( type, prof = new TargetProfile( type ) );
}
return prof;
}
public TargetProfile( Type type )
: base( type.FullName ) {
}
}
}

View file

@ -0,0 +1,89 @@
/***************************************************************************
* PacketProfile.cs
* -------------------
* begin : May 1, 2002
* copyright : (C) The RunUO Software Team
* email : info@runuo.com
*
* $Id$
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Server.Diagnostics {
public class TimerProfile : BaseProfile {
private static Dictionary<string, TimerProfile> _profiles = new Dictionary<string, TimerProfile>();
public static IEnumerable<TimerProfile> Profiles {
get {
return _profiles.Values;
}
}
public static TimerProfile Acquire( string name ) {
if ( !Core.Profiling ) {
return null;
}
TimerProfile prof;
if ( !_profiles.TryGetValue( name, out prof ) ) {
_profiles.Add( name, prof = new TimerProfile( name ) );
}
return prof;
}
private long _created, _started, _stopped;
public long Created {
get {
return _created;
}
set {
_created = value;
}
}
public long Started {
get {
return _started;
}
set {
_started = value;
}
}
public long Stopped {
get {
return _stopped;
}
set {
_stopped = value;
}
}
public TimerProfile( string name )
: base( name ) {
}
public override void WriteTo( TextWriter op ) {
base.WriteTo( op );
op.Write( "\t{0,12:N0} {1,12:N0} {2,-12:N0}", _created, _started, _stopped );
}
}
}