-
Notifications
You must be signed in to change notification settings - Fork 27
/
general.h
66 lines (57 loc) · 1.22 KB
/
general.h
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
/*
* general.h
*
*
* Created by Alex Marshall on 09/01/30.
* Copyright 2009 __MyCompanyName__. All rights reserved.
*
*/
#define BENZIN_VERSION_MAJOR 0
#define BENZIN_VERSION_MINOR 1
#define BENZIN_VERSION_BUILD 200
#define BENZIN_VERSION_OTHER "WIP"
#define USE_BRLAN
//#define USE_BRLYT
#define DEBUGBRLAN
#define DEBUGMAIN
//#define DEBUGBRLYT
#define fatal(x) printf(x); exit(1)
// WTF is this doing here?
/*void LZ77Decompress(void *indata, size_t dlen, u8* ret)
{
int inp = 0;
u8* data = (u8*)calloc(dlen + 16, 1);
memcpy(data, indata, dlen);
int i;
u8 bitmask;
ret = (u8*)calloc(dlen, 256); // HORRIBLY INEFFICIENT.
// FIGURE SOMETHING ELSE OUT
int retoff = 0;
while(inp < dlen) {
bitmask = data[inp];
inp++;
for(i = 0; i < 8; i++) {
if(bitmask & 0x80) {
u8 rep = data[inp];
u8 repLength = (rep >> 4) + 3;
inp++;
u16 repOff = data[inp] | ((rep & 0x0F) << 8);
inp++;
if(repOff <= retoff) {
fatal("Offset too high!\nQuitting\n");
}
while(repLength > 0) {
ret[retoff] = ret[(retoff - repOff) - 1];
repLength--;
retoff++;
}
}else{
ret[retoff] = data[inp];
retoff++;
inp++;
}
bitmask = bitmask << 1;
}
}
}
*/