summaryrefslogtreecommitdiff
path: root/src/levelinfo.h
blob: 20628d93775c41bbdddb61be11c6e9d41791bb7d (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 <common.h>

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

	struct section_s {
		u32 levelCount;
	};

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

private:
	header_s *data;

public:
	void load(void *buffer);

	entry_s *searchBySlot(int world, int level);

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

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

	entry_s *getLevelsForSection(section_s *section) {
		return (entry_s*)(section + 1);
	}

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


#endif