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,54 @@
// LoadedObj.h: interface for the CLoadedObj class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LOADEDOBJ_H__7BBE3A5F_6665_4F40_AA4D_82BACEBC32D3__INCLUDED_)
#define AFX_LOADEDOBJ_H__7BBE3A5F_6665_4F40_AA4D_82BACEBC32D3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "./CaldronByteDataObj.h"
namespace Caldron {
namespace Base {
/* *********************************************************************
* CLoadedObj
* <20><><EFBFBD><EFBFBD> : LoadedObj.h
* <20><><EFBFBD><EFBFBD> : Caldron Engine<6E><65> CResourceMgr <20><> <20>̿<EFBFBD><CCBF><EFBFBD> <20>ε<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ҽ<EFBFBD> obj <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> class
* <20>ۼ<EFBFBD><DBBC><EFBFBD> : 2004.01.06
* history :
wizardbug ( 2004.01.06)
********************************************************************** */
class CLoadedObj
{
public:
CLoadedObj() : m_bLoaded(false),m_iReloadingCount(0),m_pByteDataObj(0),m_bFirst(0),m_iReferenceCount(0)
{}
CLoadedObj(const char *strFileName);
virtual ~CLoadedObj();
virtual bool Load(CCaldronByteDataObj *) = 0;
virtual bool PostLoad() = 0;
//virtual bool Unload() = 0;
bool m_bLoaded;
bool m_bFirst;
char m_strName[256];
int m_iReloadingCount; // ReLoading Ƚ<><C8BD>.
unsigned int m_iReferenceCount;
CCaldronByteDataObj *m_pByteDataObj;
};
}
}
#endif // !defined(AFX_LOADEDOBJ_H__7BBE3A5F_6665_4F40_AA4D_82BACEBC32D3__INCLUDED_)