summaryrefslogtreecommitdiff
path: root/include/g3dhax.h
blob: d3584363e18382b98fde84feff6fe04f95a44f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#ifndef __KAMEK_G3DHAX_H
#define __KAMEK_G3DHAX_H

#include <common.h>

// nw4r::g3d wrapper

namespace nw4r {
	namespace g3d {

		class ResName {
			public:
				const char *name;

				ResName(const char *p = NULL) {
					name = p;
				}
		};

		class ResMdl {
			public:
				void * /*ResMdlData*/ data;

				ResMdl(void *p = NULL) {
					data = p;
				}

				void * /*ResMat*/ GetResMat(const char *str) const;
		};

		class ResAnmChr { public: void* data; ResAnmChr(void *p = NULL) { data = p; } };
		class ResAnmVis { public: void* data; ResAnmVis(void *p = NULL) { data = p; } };
		class ResAnmTexPat { public: void* data; ResAnmTexPat(void *p = NULL) { data = p; } };
		class ResAnmTexSrt { public: void* data; ResAnmTexSrt(void *p = NULL) { data = p; } };

		class ResFile {
			public:
				void * /*ResFileData*/ data;

				ResFile(void *p = NULL) {
					data = p;
				}

				void Init();
				bool CheckRevision() const;

				ResMdl GetResMdl(const char *str) const;
				void * /*ResPltt*/ GetResPltt(const ResName n) const;
				void * /*ResTex*/ GetResTex(const char *str) const;
				void * /*ResTex*/ GetResTex(const ResName n) const;
				void * /*ResTex*/ GetResTex(u32 idx) const;
				ResAnmChr GetResAnmChr(const char *str) const;
				ResAnmVis GetResAnmVis(const char *str) const;
				void * /*ResAnmClr*/ GetResAnmClr(const char *str) const;
				ResAnmTexPat GetResAnmTexPat(const char *str) const;
				ResAnmTexSrt GetResAnmTexSrt(const char *str) const;
				void * /*ResAnmScn*/ GetResAnmScn(const char *str) const;

				bool Bind(ResFile rhs);
		};

		void *__ScnMdlSimple__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResMdl*/ mdl,
				int nView = 1);


		void *__ScnMdl__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResMdl*/ mdl,
				u32 bufferOption,
				int nView = 1);


		void *__AnmObjChrRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmChr*/ resAnm,
				void * /*ResMdl*/ resMdl,
				bool bHasCache);


		void *__AnmObjVisRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmVis*/ resAnm,
				void * /*ResMdl*/ resMdl);


		void *__AnmObjTexPatRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmTexPat*/ resAnm,
				void * /*ResMdl*/ resMdl,
				bool bHasCache);


		void *__AnmObjTexSrtRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmTexSrt*/ resAnm,
				void * /*ResMdl*/ resMdl,
				bool bHasCache);


		void *__AnmObjMatClrRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmMatClr*/ resAnm,
				void * /*ResMdl*/ resMdl,
				bool bHasCache);


		void *__AnmObjShpRes__Construct(
				void * /*MEMAllocator*/ pHeap,
				u32 *pSize,
				void * /*ResAnmShp*/ resAnm,
				void * /*ResMdl*/ resMdl,
				bool bHasCache);



		bool InsertIntoScene(void *scnObj); // 80164F90

		extern void *g3dMemAllocator; // 8042A6A8

		inline void *ConstructScnMdlSimple(void *mdl, int nView = 1) {
			return __ScnMdlSimple__Construct(g3dMemAllocator, 0, mdl, nView);
		}

		inline void *ConstructScnMdl(void *mdl, u32 bufferOption, int nView = 1) {
			return __ScnMdl__Construct(g3dMemAllocator, 0, mdl, bufferOption, nView);
		}



	}
}


namespace EGG {
	class Allocator {
		public:
			char data1[0x10];

			Allocator(void *heap, s32 align);
			virtual ~Allocator();

			virtual void *alloc(u32 size);
			virtual void free(void *block);

			void *heap;
			s32 alignment;
	};
}

class mAllocator_c : public EGG::Allocator {
	public:
		mAllocator_c();
		~mAllocator_c();

		bool setup(/*EGG::Heap*/void *heap, s32 align);

		void *alloc(u32 size);
		void free(void *block);
};

class mHeapAllocator_c : public mAllocator_c {
	public:
		mHeapAllocator_c();
		~mHeapAllocator_c();

		bool link(s32 size, void *heap, const char *name, int align);
		u32 unlink();

		bool linkAndBecomeCurrentHeap(s32 size, void *heap, const char *name, int align);
};

namespace m3d {

	// random, just dumped it here because I dunno where else
	void DisableIndirectTexturing();
	void InitTexObjWithResTex(GXTexObj *obj, /* ResTex */ void *resTex, GXTexWrapMode wrapS, GXTexWrapMode wrapT, GXTexFilter minFilt, GXTexFilter magFilt); 


	class scnLeaf_c {
		public:
			scnLeaf_c();
			virtual ~scnLeaf_c();

			virtual int returnUnknown();
			virtual void free();
			virtual bool scheduleForDrawing();

			void setScnObjOption(ulong, ulong);
			bool getScnObjOption(ulong, ulong*);

			void setScale(float x, float y, float z);
			void setScale(Vec vec);

			void setDrawMatrix(Mtx *mtx);
			void getLocalMatrix(Mtx *mtx);
			void getViewMatrix(Mtx *mtx);

			void calcWorld(bool);
			void calcView(bool);

			void setDrawPriorities(int opa, int xlu);

			void *scnObj;
	};

	class proc_c : public scnLeaf_c {
		public:
			bool setup(void *allocator = 0, u32 *size = 0);

			int returnUnknown() { return 2; }
			virtual void drawOpa() = 0;
			virtual void drawXlu() = 0;
	};




	// TODO: bmdl_c/smdl_c
	class banm_c;
	class mdl_c {
		public:
			mdl_c();
			virtual ~mdl_c();

			virtual void _vf0C();
			virtual void _vf10();
			virtual bool scheduleForDrawing();
			virtual void bindAnim(void *anim, float boo);
			virtual void _vf1C();

			bool setup(nw4r::g3d::ResMdl model, void *allocator, u32 bufferOption, int nView, u32 *size);
			void oneSetupType();
			void sub_80064BF0();

			void setDrawMatrix(const Mtx matrix);
			void setScale(float x, float y, float z);
			void setScale(Vec *scale);
			void calcWorld(bool unk);

			void bindAnim(banm_c *animation, float unk);

			char data[0x3C];
	};




	class banm_c {
		public:
			virtual ~banm_c();

			virtual int _vf0C() = 0;
			virtual void detach();
			virtual void process();

			bool testAnmFlag(u32 flag); /* nw4r::g3d::AnmObj::AnmFlag */

			void *anmObj; // should be NW4R AnmObj class
			void *frameHeap; // should be a frame heap
			mAllocator_c allocator;

			float getCurrentFrame();
			float setCurrentFrame(float value);
			float getUpdateRate();
			float setUpdateRate(float value);
		private:
			void setupHeap(mAllocator_c *allocator, u32 *sizeOutput);
	};

	class fanm_c : public banm_c {
		public:
			fanm_c();
			~fanm_c();

			void process();

			void _80169050(float _unk, float updateRate, float _unk2, u8 _unk3);
			void setCurrentFrame(float value);
			bool isAnimationDone(); // I think
			bool querySomething(float value);

			// 28 might be Max Frame?
			float _28, _2C, currentFrame;
			u8 playState;		// animation group??
	};

	class anmChr_c : public fanm_c {
		public:
			~anmChr_c();
			int _vf0C();

			bool setup(nw4r::g3d::ResMdl modelRes, nw4r::g3d::ResAnmChr anmRes,
					mAllocator_c *allocator, u32 *sizeOutPtr);

			void bind(/*b*/mdl_c *model, nw4r::g3d::ResAnmChr anmRes, int unk);
	};

	class anmVis_c : public fanm_c {
		public:
			~anmVis_c();
			int _vf0C();

			bool setup(nw4r::g3d::ResMdl modelRes, nw4r::g3d::ResAnmVis anmRes,
					mAllocator_c *allocator, u32 *sizeOutPtr);

			void bind(/*b*/mdl_c *model, nw4r::g3d::ResAnmVis anmRes, int unk);
	};

	class anmTexPat_c : public banm_c {
		public:
			class child_c : public fanm_c {
				~child_c();
				int _vf0C();

				// some methods missing
			};

			// some methods missing

			~anmTexPat_c();
			int _vf0C();
			void detach();
			void process();

			bool setup(nw4r::g3d::ResMdl modelRes, nw4r::g3d::ResAnmTexPat anmRes,
					mAllocator_c *allocator, u32 *sizeOutPtr, int count);

			void bindEntry(/*b*/mdl_c *model, nw4r::g3d::ResAnmTexPat *resource,
					int entryNumber, int _param4);

			float getFrameForEntry(int number);
			void setFrameForEntry(float value, int number);
			float getUpdateRateForEntry(int number);
			void setUpdateRateForEntry(float value, int number);
			bool isEntryAnimationDone(int number);
			bool queryEntrySomething(float value, int number);
			void setEntryByte34(u8 value, int number);
			float getEntryField28(int number);

		private:
			child_c *children;

			void processOneEntry(int number);
	};

	class anmTexSrt_c : public banm_c {
		public:
			class child_c : public fanm_c {
				~child_c();
				int _vf0C();

				// some methods missing
			};

			// some methods missing

			~anmTexSrt_c();
			int _vf0C();
			void detach();
			void process();

			bool setup(nw4r::g3d::ResMdl modelRes, nw4r::g3d::ResAnmTexSrt anmRes,
					mAllocator_c *allocator, u32 *sizeOutPtr, int count);

			void bindEntry(/*b*/mdl_c *model, nw4r::g3d::ResAnmTexSrt resource,
					int entryNumber, int _param4);

			float getFrameForEntry(int number);
			void setFrameForEntry(float value, int number);
			float getUpdateRateForEntry(int number);
			void setUpdateRateForEntry(float value, int number);
			bool isEntryAnimationDone(int number);
			void setEntryByte34(u8 value, int number);
			float getEntryField28(int number);
			float getEntryField2C(int number);

		private:
			child_c *children;

			void processOneEntry(int number);
	};
};



void SetupTextures_Player(m3d::mdl_c *model, int sceneID); // 800B3E50
void SetupTextures_Map(m3d::mdl_c *model, int sceneID); // 800B3F50
void SetupTextures_Boss(m3d::mdl_c *model, int sceneID); // 800B4050
void SetupTextures_Enemy(m3d::mdl_c *model, int sceneID); // 800B4170
void SetupTextures_MapObj(m3d::mdl_c *model, int sceneID); // 800B42B0
void SetupTextures_Item(m3d::mdl_c *model, int sceneID); // 800B43D0

#endif