Restructure repository to include all source folders

Move git root from Client/ to src/ to track all source code:
- Client: Game client source (moved to Client/Client/)
- Server: Game server source
- GameTools: Development tools
- CryptoSource: Encryption utilities
- database: Database scripts
- Script: Game scripts
- rylCoder_16.02.2008_src: Legacy coder tools
- GMFont, Game: Additional resources

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 20:17:20 +09:00
parent 5d3cd64a25
commit dd97ddec92
11602 changed files with 1446576 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
#include "stdafx.h"
#include "Commands.h"
#include <Creature/CreatureManager.h>
#include <Creature/Character/Character.h>
#include <Network/Dispatch/GameClient/GameClientDispatch.h>
#include <Network/Dispatch/Chat/ChatDispatch.h>
#include <Network/Packet/ChatPacket.h>
#include <Network/Packet/WrapPacket.h>
#include <Network/Packet/PacketCommand.h>
#include <Network/Packet/PacketStruct/CharCommunityPacket.h>
#include <Network/Stream/SendStream.h>
CConsoleCommand* CCMDNotify::Clone(const char* szCommand, size_t nCommandLength)
{
size_t nIndex = 0;
// ù<><C3B9>° whitespace<63><65> <20><> <20><><EFBFBD><EFBFBD>.
for (; nIndex < nCommandLength; ++nIndex)
{
if (0 == szCommand[nIndex] || ' ' == szCommand[nIndex] ||
'\t' == szCommand[nIndex] || '\n' == szCommand[nIndex])
{
break;
}
}
++nIndex;
// whitespace<63><65> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>
for (; nIndex < nCommandLength; ++nIndex)
{
if (0 != szCommand[nIndex] || ' ' != szCommand[nIndex] ||
'\t' != szCommand[nIndex] || '\n' != szCommand[nIndex])
{
break;
}
}
CCMDNotify* lpNotify = NULL;
if(nIndex < nCommandLength)
{
lpNotify = new CCMDNotify;
if(NULL != lpNotify)
{
if (GameRYL::KOREA == CServerSetup::GetInstance().GetNationType())
{
lpNotify->m_nLength = _snprintf(lpNotify->m_szBuffer,
PktChat::PktChatMaxSize - 1, "[<5B><EFBFBD><EEBFB5> <20><><EFBFBD><EFBFBD>] : %s", szCommand + nIndex);
}
else
{
lpNotify->m_nLength = _snprintf(lpNotify->m_szBuffer,
PktChat::PktChatMaxSize - 1, "%s", szCommand + nIndex);
}
lpNotify->m_szBuffer[PktChat::PktChatMaxSize - 1] = 0;
}
}
return lpNotify;
}
bool CCMDNotify::DoProcess()
{
if(0 < m_nLength)
{
CChatPacket chatPacket(m_szBuffer, 0, PktChat::NOTICE, 0);
if(chatPacket.IsValid())
{
CCreatureManager::GetInstance().SendAllCharacter(chatPacket.GetCompressedPacket(),
chatPacket.GetCompressedSize(), CmdCharChat);
}
}
return true;
}