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,92 @@
// ChatParserDlg.h : <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
//
#pragma once
#include "afxwin.h"
#include "XListBox.h"
#include <map>
typedef struct CHATLIST
{
SYSTEMTIME sysTime;
char strServerName[32];
int iZone;
int iChannel;
unsigned long dwUID;
unsigned long dwCID;
int iChatType;
char strSenderName[32];
char strTargetName[32];
char strMessage[512];
CHATLIST()
{
Clear();
}
void Clear()
{
ZeroMemory(&sysTime, sizeof(sysTime));
iZone=0;
iChannel=0;
dwUID=0;
dwCID=0;
iChatType=0;
ZeroMemory(strServerName, 32);
ZeroMemory(strSenderName, 32);
ZeroMemory(strTargetName, 32);
ZeroMemory(strMessage, 512);
}
}CHATLIST;
// CChatParserDlg <20><>ȭ <20><><EFBFBD><EFBFBD>
class CChatParserDlg : public CDialog
{
// <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
public:
CChatParserDlg(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
enum { IDD = IDD_CHATPARSER_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
void AddLineToChatList(unsigned char cChatType, char* szMsg);
void Cleanup();
void LoadFile();
// <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
protected:
HICON m_hIcon;
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>޽<EFBFBD><DEBD><EFBFBD> <20><> <20>Լ<EFBFBD>
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
OPENFILENAME m_OpenFile;
char m_szFileName[MAX_PATH * MAX_PATH];
std::map<int, CHATLIST> m_ChatData;
CXListBox m_ChatList;
CButton m_OldVersion;
CComboBox m_ServerGroup;
CComboBox m_ServerZone;
CComboBox m_ChatType;
CButton m_FindNameChk;
CEdit m_FindName;
public:
afx_msg void OnBnClickedOpenfile();
afx_msg void OnBnClickedFindlist();
afx_msg void OnBnClickedFindnamechk();
};