Initial commit: ROW Client source code

Game client codebase including:
- CharacterActionControl: Character and creature management
- GlobalScript: Network, items, skills, quests, utilities
- RYLClient: Main client application with GUI and event handlers
- Engine: 3D rendering engine (RYLGL)
- MemoryManager: Custom memory allocation
- Library: Third-party dependencies (DirectX, boost, etc.)
- Tools: Development utilities

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 16:24:34 +09:00
commit e067522598
5135 changed files with 1745744 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
// H3DOutfitTable.h: interface for the CH3DOutfitTable class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_H3DOUTFITTABLE_H__145CF134_819E_4958_8C2D_7413F1D28089__INCLUDED_)
#define AFX_H3DOUTFITTABLE_H__145CF134_819E_4958_8C2D_7413F1D28089__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "misc.h"
#include <map>
#include <vector>
struct H3DOutfitElement
{
void Flush()
{
int i;
for( i = 0; i < lMeshCount; ++i )
{
SAFE_DELETEA( pszMeshName[i] );
}
SAFE_DELETEA( pszMeshName );
for( i = 0; i < lTexCount; ++i )
{
SAFE_DELETEA( pszTexName[i] );
}
SAFE_DELETEA( pszTexName );
SAFE_DELETEA( szSetItemName );
SAFE_DELETEA( szItemName );
}
H3DOutfitElement()
{
szSetItemName = NULL; // <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʱ<EFBFBD>ȭ<EFBFBD><C8AD><EFBFBD>ش<EFBFBD>.
}
char* szItemName;
char* szSetItemName;
long lMeshCount;
long lTexCount;
char** pszMeshName;
char** pszTexName;
};
class CH3DOutfitTable
{
public:
CH3DOutfitTable();
~CH3DOutfitTable();
bool Load( const char* szFileName );
bool GetOutfit( H3DOutfitElement* &pOutfit, char* szOutfitName );
protected:
bool AddItem( H3DOutfitElement &outfit );
std::map<char*, H3DOutfitElement, szi_less> m_mapName2Outfit;
//std::vector<char*> m_vec_szOutfitItemName;
};
#endif // !defined(AFX_H3DOUTFITTABLE_H__145CF134_819E_4958_8C2D_7413F1D28089__INCLUDED_)