2024-09-10 00:31:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2024-12-11 04:10:57 +08:00
|
|
|
|
using System.Reflection;
|
2024-11-29 10:01:28 +08:00
|
|
|
|
using System.Runtime.InteropServices;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
namespace PSO2SERVER
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Wrapper for Console's Write and WriteLine functions to add coloring as well as integrate it into the Console System
|
|
|
|
|
/// and add dumping to a log file.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class Logger
|
|
|
|
|
{
|
2024-09-10 01:13:20 +08:00
|
|
|
|
private static readonly StreamWriter Writer = new StreamWriter("SERVER.log", true);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
|
|
|
|
public static bool VerbosePackets = false;
|
|
|
|
|
|
|
|
|
|
private static void AddLine(ConsoleColor color, string text)
|
|
|
|
|
{
|
|
|
|
|
// Return if we don't have a ConsoleSystem created yet
|
2024-09-10 01:13:20 +08:00
|
|
|
|
if (ServerApp.ConsoleSystem == null) return;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-09-10 01:13:20 +08:00
|
|
|
|
ServerApp.ConsoleSystem.AddLine(color, text);
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Write(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.White, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-11 04:10:57 +08:00
|
|
|
|
public static void WriteObj(object obj)
|
|
|
|
|
{
|
|
|
|
|
if (obj == null)
|
|
|
|
|
{
|
|
|
|
|
WriteError("无法分析空的对象.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Type objType = obj.GetType();
|
|
|
|
|
Write($"当前分析对象: {objType.FullName}");
|
|
|
|
|
|
|
|
|
|
// Use reflection to get all public fields of the object
|
|
|
|
|
var fields = objType.GetFields(BindingFlags.Public | BindingFlags.Instance);
|
|
|
|
|
|
|
|
|
|
foreach (var field in fields)
|
|
|
|
|
{
|
|
|
|
|
var value = field.GetValue(obj);
|
|
|
|
|
Write($"{field.Name}: {value}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
public static void WriteSend(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Green, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteRecv(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Yellow, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public static void WriteInternal(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Cyan, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteCommand(Client client, string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
if (client == null)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Green, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
WriteClient(client, text, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteClient(Client client, string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
var message = string.Format(text, args).Replace('\\', '/');
|
|
|
|
|
var packet = new SystemMessagePacket(message, SystemMessagePacket.MessageType.SystemMessage);
|
|
|
|
|
client.SendPacket(packet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteWarning(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Yellow, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteError(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Red, string.Format(text, args));
|
|
|
|
|
WriteFile(text, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteException(string message, Exception ex)
|
|
|
|
|
{
|
|
|
|
|
var text = string.Empty;
|
|
|
|
|
|
|
|
|
|
text += string.Format("[ERR] {0} - {1}: {2}", message, ex.GetType(), ex);
|
|
|
|
|
if (ex.InnerException != null)
|
|
|
|
|
text += string.Format("\n[ERR] Inner Exception: {0}", ex.InnerException);
|
|
|
|
|
|
|
|
|
|
WriteFile(text);
|
|
|
|
|
|
|
|
|
|
AddLine(ConsoleColor.Red, text);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 00:07:24 +08:00
|
|
|
|
public static void WriteUnkHex(string text, byte[] array)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.Red, text);
|
|
|
|
|
|
|
|
|
|
// Calculate lines
|
|
|
|
|
var lines = 0;
|
|
|
|
|
for (var i = 0; i < array.Length; i++)
|
|
|
|
|
if ((i % 16) == 0)
|
|
|
|
|
lines++;
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < lines; i++)
|
|
|
|
|
{
|
|
|
|
|
var hexString = string.Empty;
|
|
|
|
|
|
|
|
|
|
// Address
|
|
|
|
|
hexString += string.Format("{0:X8} ", i * 16);
|
|
|
|
|
|
|
|
|
|
// Bytes
|
|
|
|
|
for (var j = 0; j < 16; j++)
|
|
|
|
|
{
|
|
|
|
|
if (j + (i * 16) >= array.Length)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// Append the hex byte with an extra space for every 8 bytes
|
|
|
|
|
if (j % 8 == 0 && j > 0)
|
|
|
|
|
hexString += ' ';
|
|
|
|
|
|
|
|
|
|
hexString += string.Format("{0:X2} ", array[j + (i * 16)]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Spacing
|
|
|
|
|
while (hexString.Length < 16 * 4)
|
|
|
|
|
hexString += ' ';
|
|
|
|
|
|
|
|
|
|
// ASCII
|
|
|
|
|
for (var j = 0; j < 16; j++)
|
|
|
|
|
{
|
|
|
|
|
if (j + (i * 16) >= array.Length)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
var asciiChar = (char)array[j + (i * 16)];
|
|
|
|
|
|
|
|
|
|
if (asciiChar == (char)0x00)
|
|
|
|
|
asciiChar = '.';
|
|
|
|
|
|
|
|
|
|
hexString += asciiChar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Strip off unnecessary stuff
|
|
|
|
|
hexString = hexString.Replace('\a', ' '); // Alert beeps
|
|
|
|
|
hexString = hexString.Replace('\n', ' '); // Newlines
|
|
|
|
|
hexString = hexString.Replace('\r', ' '); // Carriage returns
|
|
|
|
|
hexString = hexString.Replace('\\', ' '); // Escape break
|
|
|
|
|
|
|
|
|
|
AddLine(ConsoleColor.Red, hexString);
|
|
|
|
|
WriteFile(hexString);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public static void WriteHex(string text, byte[] array)
|
|
|
|
|
{
|
|
|
|
|
AddLine(ConsoleColor.DarkCyan, text);
|
|
|
|
|
|
|
|
|
|
// Calculate lines
|
|
|
|
|
var lines = 0;
|
|
|
|
|
for (var i = 0; i < array.Length; i++)
|
|
|
|
|
if ((i % 16) == 0)
|
|
|
|
|
lines++;
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < lines; i++)
|
|
|
|
|
{
|
|
|
|
|
var hexString = string.Empty;
|
|
|
|
|
|
|
|
|
|
// Address
|
|
|
|
|
hexString += string.Format("{0:X8} ", i * 16);
|
|
|
|
|
|
|
|
|
|
// Bytes
|
|
|
|
|
for (var j = 0; j < 16; j++)
|
|
|
|
|
{
|
|
|
|
|
if (j + (i * 16) >= array.Length)
|
|
|
|
|
break;
|
|
|
|
|
|
2024-09-12 17:49:10 +08:00
|
|
|
|
// Append the hex byte with an extra space for every 8 bytes
|
|
|
|
|
if (j % 8 == 0 && j > 0)
|
|
|
|
|
hexString += ' ';
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
hexString += string.Format("{0:X2} ", array[j + (i * 16)]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Spacing
|
|
|
|
|
while (hexString.Length < 16 * 4)
|
|
|
|
|
hexString += ' ';
|
|
|
|
|
|
|
|
|
|
// ASCII
|
|
|
|
|
for (var j = 0; j < 16; j++)
|
|
|
|
|
{
|
|
|
|
|
if (j + (i * 16) >= array.Length)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
var asciiChar = (char)array[j + (i * 16)];
|
|
|
|
|
|
|
|
|
|
if (asciiChar == (char)0x00)
|
|
|
|
|
asciiChar = '.';
|
|
|
|
|
|
|
|
|
|
hexString += asciiChar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Strip off unnecessary stuff
|
|
|
|
|
hexString = hexString.Replace('\a', ' '); // Alert beeps
|
|
|
|
|
hexString = hexString.Replace('\n', ' '); // Newlines
|
|
|
|
|
hexString = hexString.Replace('\r', ' '); // Carriage returns
|
|
|
|
|
hexString = hexString.Replace('\\', ' '); // Escape break
|
|
|
|
|
|
|
|
|
|
AddLine(ConsoleColor.White, hexString);
|
|
|
|
|
WriteFile(hexString);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteFile(string text, params object[] args)
|
|
|
|
|
{
|
|
|
|
|
if (args.Length > 0)
|
|
|
|
|
Writer.WriteLine(DateTime.Now + " - " + text, args);
|
|
|
|
|
else
|
|
|
|
|
Writer.WriteLine(DateTime.Now + " - " + text);
|
|
|
|
|
|
|
|
|
|
// Later we should probably only flush once every PosX amount of lines or on some other condition
|
|
|
|
|
Writer.Flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void WriteHeader()
|
|
|
|
|
{
|
|
|
|
|
Writer.WriteLine();
|
|
|
|
|
Writer.WriteLine("--------------------------------------------------");
|
|
|
|
|
Writer.WriteLine("\t\t" + DateTime.Now);
|
|
|
|
|
Writer.WriteLine("--------------------------------------------------");
|
|
|
|
|
}
|
2024-11-29 10:01:28 +08:00
|
|
|
|
|
|
|
|
|
// 方法:打印结构体的二进制数据
|
|
|
|
|
public static void WriteStructBinary(string text, object obj)
|
|
|
|
|
{
|
|
|
|
|
var byteArray = StructToByteArray(obj);
|
|
|
|
|
WriteHex(text, byteArray);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 将结构体转换为字节数组
|
|
|
|
|
public static byte[] StructToByteArray(object obj)
|
|
|
|
|
{
|
|
|
|
|
int size = Marshal.SizeOf(obj);
|
|
|
|
|
byte[] byteArray = new byte[size];
|
|
|
|
|
IntPtr ptr = Marshal.AllocHGlobal(size);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Marshal.StructureToPtr(obj, ptr, false);
|
|
|
|
|
Marshal.Copy(ptr, byteArray, 0, size);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
Marshal.FreeHGlobal(ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return byteArray;
|
|
|
|
|
}
|
2024-09-10 00:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|