annotate LOD.h @ 2:2ca04ccb612a

NoCD, main menu, various
author Nomad
date Wed, 10 Oct 2012 14:21:15 +0200
parents 8b8875f5b359
children 540178ef9b18
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #pragma once
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include <stdio.h>
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "Texture.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7 /* 354 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8 enum TEXTURE_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10 TEXTURE_DEFAULT = 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11 TEXTURE_24BIT_PALETTE = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12 TEXTURE_16BIT_PALETTE = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18 namespace LOD
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 struct FileHeader
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23 void Reset();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 unsigned __int8 pSignature[4];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26 char array_000004[80];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27 char array_000054[80];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28 int dword_0000A4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29 int dword_0000A8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 unsigned int uNumIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
31 char array_0000B0[28];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32 char array_0000CC[52];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38 struct Directory
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40 Directory();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 Directory *Reset();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
44 unsigned __int8 pFilename[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 unsigned int uOfsetFromSubindicesStart;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 unsigned int uDataSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 int dword_000018;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48 unsigned __int16 uNumSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49 __int16 word_00001E;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
51 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 struct File
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57 File();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58 virtual ~File();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59 void *LoadRaw(const char *pContainer, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 FILE *FindContainer(const char *pContainerName, bool bLinearSearch);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 bool DoesContainerExist(const char *pContainer);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 int CalcIndexFast(int startIndex, int maxIndex, const char *pContainerName);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 bool LoadHeader(const char *pFilename, bool bWriting);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 int LoadSubIndices(const char *pContainer);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65 void AllocSubIndicesAndIO(unsigned int uNumSubIndices, unsigned int uBufferSize);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66 void FreeSubIndexAndIO();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67 bool AppendDirectory(LOD::Directory *pDir, const void *pData);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 void ResetSubIndices();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 void Close();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 FILE *pFile;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 char pLODName[256];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 unsigned int isFileOpened;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
74 unsigned __int8 *pIOBuffer;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 unsigned int uIOBufferSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
76 struct FileHeader header;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
77 struct Directory *pRoot;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
78 char pContainerName[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
79 unsigned int uCurrentIndexDir;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
80 unsigned int uLODDataSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
81 unsigned int uNumSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
82 struct Directory *pSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
83 unsigned int uOffsetToSubIndex;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
84 FILE *pOutputFileHandle;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
85 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
87 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
88
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
89
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
90
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
91
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
92
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
93
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
94 /* 6 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
95 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
96 struct LODWriteableFile: public LOD::File
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
97 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
98 bool LoadFile(const char *pFilename, bool bWriting);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
99 unsigned int Write(const LOD::Directory *pDir, const void *pDirData, int a4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
100 void CloseWriteFile();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
101 int CreateTempFile();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
102 int Save();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
103 bool _4621A7();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104 int _461492(LOD::FileHeader *pHeader, LOD::Directory *pDir, const char *Source);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
105
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
106 FILE *pFile;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107 char pLODName[256];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108 unsigned int isFileOpened;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109 unsigned __int8 *pIOBuffer;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
110 unsigned int uIOBufferSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 struct LOD::FileHeader header;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 struct LOD::Directory *pRoot;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 unsigned __int8 pContainerName[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114 unsigned int uCurrentIndexDir;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115 unsigned int uLODDataSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116 unsigned int uNumSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 struct LOD::Directory *pSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
118 unsigned int uOffsetToSubIndex;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119 FILE *pOutputFileHandle;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
123
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
125
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
126 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
127 struct LODFile_IconsBitmaps: public LOD::File
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
128 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
129 LODFile_IconsBitmaps();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
130 virtual ~LODFile_IconsBitmaps();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
131 int _40F9C5();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
132 unsigned int FindTextureByName(const char *pName);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
133 bool LoadBitmaps(const char *pFilename);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
134 bool LoadIconsOrEvents(const char *pLODFilename);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
135 void ReleaseAll();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
136 unsigned int LoadTexture(const char *pContainer, enum TEXTURE_TYPE uTextureType = TEXTURE_DEFAULT);
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
137 Texture *LoadTexturePtr(const char *pContainer, enum TEXTURE_TYPE uTextureType = TEXTURE_DEFAULT);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
138 int LoadTextureFromLOD(Texture *pOutTex, const char *pContainer, enum TEXTURE_TYPE eTextureType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
139 int ReloadTexture(Texture *pDst, const char *pContainer, int mode);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
140 void ReleaseHardwareTextures();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
141 void ReleaseLostHardwareTextures();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
142 void _410423_move_textures_to_device();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
143 int _410522(Texture *pDst, const char *pContainer, unsigned int uTextureType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
144 void SetupPalettes(unsigned int uTargetRBits, unsigned int uTargetGBits, unsigned int uTargetBBits);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
145 void ReleaseAll2();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
146 void _4114F2();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
147 void _4355F7();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
148
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
149
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
150 FILE *pFile;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
151 unsigned __int8 pLODName[256];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
152 unsigned int isFileOpened;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
153 unsigned __int8 *pIOBuffer;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
154 unsigned int uIOBufferSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
155 struct LOD::FileHeader header;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
156 struct LOD::Directory *pRoot;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
157 unsigned __int8 pContainerName[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
158 unsigned int uCurrentIndexDir;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
159 unsigned int uLODDataSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160 unsigned int uNumSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161 struct LOD::Directory *pSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162 unsigned int uOffsetToSubIndex;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 FILE *pOutputFileHandle;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 struct Texture pTextures[1000];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 unsigned int uNumLoadedFiles;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166 int dword_11B80;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 int dword_11B84;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 int dword_11B88;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 int uTextureRedBits;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 int uTextureGreenBits;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 int uTextureBlueBits;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172 int uNumPrevLoadedFiles;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
173 int uTexturePacksCount;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
174 int dword_011BA0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
175 int dword_011BA4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
176 int dword_011BA8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
177 struct IDirectDrawSurface **pHardwareSurfaces;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
178 struct IDirect3DTexture2 **pHardwareTextures;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
179 char *ptr_011BB4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
180 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
182
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
183
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
184
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
185
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
186
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
187
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
188 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
189 struct LODSprite
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
190 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
191 //----- (0046244C) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
192 inline LODSprite()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
193 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
194 uHeight = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
195 uPaletteId = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
196 word_1A = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
197 pSpriteLines = nullptr;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
198 pDecompressedBytes = nullptr;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
199 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
200 ~LODSprite();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
201
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
202 void Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
203 int _4ACC38(struct RenderBillboardTransform_local0 *a2, char a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
204 int _4AD2D1(struct RenderBillboardTransform_local0 *a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
205
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
206 char pName[12];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
207 int uSpriteSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
208 __int16 uWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
209 __int16 uHeight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
210 __int16 uPaletteId;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
211 __int16 word_16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
212 __int16 uTexturePitch;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
213 __int16 word_1A;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
214 int uDecompressedSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
215 struct LODSprite_stru0 *pSpriteLines;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
216 void *pDecompressedBytes;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
217 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
218 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
219
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
220 /* 15 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
221 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
222 struct LODFile_Sprites: public LOD::File
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
223 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
224 LODFile_Sprites();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
225 virtual ~LODFile_Sprites();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
226
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
227 void DeleteSomeSprites();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228 void DeleteSpritesRange(int uStartIndex, int uStopIndex);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
229 int _461397();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
230 void DeleteSomeOtherSprites();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
231 int LoadSpriteFromFile(LODSprite *pSpriteHeader, const char *pContainer);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 bool LoadSprites(const char *pFilename);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
233 int LoadSprite(const char *pContainerName, unsigned int uPaletteID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
234 void ReleaseLostHardwareSprites();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
235 void ReleaseAll();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 void MoveSpritesToVideoMemory();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 FILE *pFile;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 unsigned __int8 pLODName[256];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 unsigned int isFileOpened;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
242 unsigned __int8 *pIOBuffer;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 unsigned int uIOBufferSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
244 struct LOD::FileHeader header;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
245 struct LOD::Directory *pRoot;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 unsigned __int8 pContainerName[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
247 unsigned int uCurrentIndexDir;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 unsigned int uLODDataSize;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
249 unsigned int uNumSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
250 struct LOD::Directory *pSubIndices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 unsigned int uOffsetToSubIndex;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
252 FILE *pOutputFileHandle;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
253 struct LODSprite pSpriteHeaders[1500];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 unsigned int uNumLoadedSprites;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
255 int field_ECA0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
256 int field_ECA4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
257 int field_ECA8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
258 int field_ECAC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
259 struct Sprite *pHardwareSprites;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
260 int field_ECB4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
262 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
263
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
264 /* 17 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
265 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
266 struct LODSprite_stru0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
267 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
268 int dword_0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269 void *ptr_4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
273
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
275
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
276 extern LODFile_IconsBitmaps *pEvents_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 extern LODFile_IconsBitmaps *pIcons_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
278 extern LODFile_Sprites *pSprites_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
279 extern LODFile_IconsBitmaps *pBitmaps_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 extern LODWriteableFile *pNew_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
282 extern LODWriteableFile *pGames_LOD;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
284
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
287 extern int _6A0CA4_lod_binary_search; // weak
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
288 extern int _6A0CA8_lod_unused; // weak