1. pak header
2. images (bitmaps)
3. frames
and i have problem where is where :rolleyes:
ps. any source or code? :rolleyes:
ps2.
i found in c++
Code: Select all
int i;
DWORD nCount, dwASDfileLoc;
for( i=0; i < 60; i++ )
{
m_stBrush[i].x = -1;
m_stBrush[i].y = -1;
m_stBrush[i].szx = -1;
m_stBrush[i].szy = -1;
m_stBrush[i].pvx = -1;
m_stBrush[i].pvy = -1;
}
m_sSprID = sSprID;
ZeroMemory( m_cFileName, sizeof(m_cFileName) );
strcpy( m_cFileName, FileName );
SetFilePointer(hFileRead, 24 + NthFile*8, NULL, FILE_BEGIN);
ReadFile(hFileRead, &dwASDfileLoc, 4, &nCount, NULL);
SetFilePointer(hFileRead, dwASDfileLoc+100, NULL, FILE_BEGIN);
ReadFile(hFileRead, &m_iTotalFrame, 4, &nCount, NULL);
ReadFile(hFileRead, m_stSpd, m_iTotalFrame*12, &nCount, NULL);
m_dwBmpStartPos = dwASDfileLoc + 108 + m_iTotalFrame*12;
m_bIsDCEmpty = TRUE;