annotate LOD.h @ 113:9a99c386885a

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