Initial Commit for client version change to 4.2.2 (14545)

- added known opcodes (handlers are commented till not updated)
- added bitstream support to bytebuffer
- updated realm auth for 14545
- updated world auth
- fixed char_enum,create,delete handlers
- added DB2 reader
- added opcode logging to debuglogmask (ignores loglevel)
- fixed compile in win64, others not yet tested
- using db2 values for item models at char_enum to prevent client crash

Lots of Thanks to All SingularityCore Members
This commit is contained in:
Rat
2011-11-20 18:28:18 +01:00
parent 10b89d976f
commit d1affc4340
43 changed files with 4130 additions and 3045 deletions

View File

@@ -986,6 +986,13 @@ void Log::outCharDump(const char * str, uint32 account_id, uint32 guid, const ch
}
}
void Log::outOpCode(uint32 op, const char * name, bool smsg)
{
if (!(m_DebugLogMask & LOG_FILTER_OPCODES))
return;
outString("%s: %s 0x%.4X (%u)", smsg ? "S->C" : "C->S", name, op, op);
}
void Log::outRemote(const char * str, ...)
{
if (!str)