annotate LOD.h @ 110:430786d916d6

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