| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System.Collections.Generic;
- namespace ET
- {
- public static class OpcodeHelper
- {
- private static readonly HashSet<ushort> ignoreDebugLogMessageSet = new HashSet<ushort>
- {
- OuterOpcode.C2G_Ping,
- OuterOpcode.G2C_Ping,
- };
- private static bool IsNeedLogMessage(ushort opcode)
- {
- if (ignoreDebugLogMessageSet.Contains(opcode))
- {
- return false;
- }
- return true;
- }
- public static bool IsOuterMessage(ushort opcode)
- {
- return opcode < OpcodeRangeDefine.OuterMaxOpcode;
- }
- public static bool IsInnerMessage(ushort opcode)
- {
- return opcode >= OpcodeRangeDefine.InnerMinOpcode;
- }
- public static void LogMsg(int zone, ushort opcode, object message)
- {
- if (!IsNeedLogMessage(opcode))
- {
- return;
- }
- #if !SERVER
- Log.ILog.Debug("zone: {0} {1}", zone, message);
- #endif
- }
- public static void LogMsg(ushort opcode, long actorId, object message)
- {
- if (!IsNeedLogMessage(opcode))
- {
- return;
- }
- //Log.ILog.Debug("actorId: {0} {1}", actorId, message);
- }
- }
- }
|