summaryrefslogtreecommitdiff
path: root/src/levelinfo.h
blob: d0eee1ad803e692a016294053fbaa5fd2dca5e29 (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
#ifndef __NEWER_LEVELINFO_H
#define __NEWER_LEVELINFO_H

#include <game.h>

class dLevelInfo_c {
public:
	struct header_s {
		u32 magic;
		u32 sectionCount;
		u32 sectionOffsets[1];
	};

	struct entry_s {
		u8 worldSlot;
		u8 levelSlot;
		u8 displayWorld;
		u8 displayLevel;
		u8 nameLength;
		u8 reserved3;
		u16 flags;
		u32 nameOffset;
	};

	struct section_s {
		u32 levelCount;
		entry_s levels[1];
	};

private:
	header_s *data;

public:
	void load(void *buffer);

	entry_s *searchBySlot(int world, int level);
	entry_s *searchByDisplayNum(int world, int level);

	u32 sectionCount() {
		return data->sectionCount;
	}

	section_s *getSectionByIndex(u32 index) {
		return (section_s*)(((char*)data) + data->sectionOffsets[index]);
	}

	const char *getNameForLevel(entry_s *entry) {
		return (const char*)data + entry->nameOffset;
	}

	static dLevelInfo_c s_info;
};


#endif