forked from Sparagas/Silent-Hill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor.bt
182 lines (154 loc) · 3.15 KB
/
color.bt
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
//------------------------------------------------
//--- 010 Editor v14.0 Binary Template
//
// File:
// Authors:
// Version:
// Purpose:
// Category:
// File Mask:
// ID Bytes:
// History:
//------------------------------------------------
#ifndef COLOR
#define COLOR
struct RGB {
ubyte r;
ubyte g;
ubyte b;
};
struct BGR {
ubyte b;
ubyte g;
ubyte r;
};
struct RGBA {
ubyte r;
ubyte g;
ubyte b;
ubyte a;
};
struct BGRA {
ubyte b;
ubyte g;
ubyte r;
ubyte a;
};
struct RGB565 {
uint16 b : 5;
uint16 g : 6;
uint16 r : 5;
};
struct BGR565 {
uint16 r : 5;
uint16 g : 6;
uint16 b : 5;
};
struct ABGR4444 {
uint16 r : 4;
uint16 g : 4;
uint16 b : 4;
uint16 a : 4;
};
struct ABGR1555 {
uint16 r : 5;
uint16 g : 5;
uint16 b : 5;
uint16 a : 1;
};
struct Index44 {
ubyte i1 : 4;
ubyte i0 : 4;
};
struct BC1_DXT1 {
RGB565 color_0;
RGB565 color_1;
// y x
ubyte index_0_0 : 2;
ubyte index_0_1 : 2;
ubyte index_0_2 : 2;
ubyte index_0_3 : 2;
ubyte index_1_0 : 2;
ubyte index_1_1 : 2;
ubyte index_1_2 : 2;
ubyte index_1_3 : 2;
ubyte index_2_0 : 2;
ubyte index_2_1 : 2;
ubyte index_2_2 : 2;
ubyte index_2_3 : 2;
ubyte index_3_0 : 2;
ubyte index_3_1 : 2;
ubyte index_3_2 : 2;
ubyte index_3_3 : 2;
};
struct BC2_DXT3 {
uint16 alpha_0_0 : 4;
uint16 alpha_0_1 : 4;
uint16 alpha_0_2 : 4;
uint16 alpha_0_3 : 4;
uint16 alpha_1_0 : 4;
uint16 alpha_1_1 : 4;
uint16 alpha_1_2 : 4;
uint16 alpha_1_3 : 4;
uint16 alpha_2_0 : 4;
uint16 alpha_2_1 : 4;
uint16 alpha_2_2 : 4;
uint16 alpha_2_3 : 4;
uint16 alpha_3_0 : 4;
uint16 alpha_3_1 : 4;
uint16 alpha_3_2 : 4;
uint16 alpha_3_3 : 4;
RGB565 color_0;
RGB565 color_1;
// y x
ubyte index_0_0 : 2;
ubyte index_0_1 : 2;
ubyte index_0_2 : 2;
ubyte index_0_3 : 2;
ubyte index_1_0 : 2;
ubyte index_1_1 : 2;
ubyte index_1_2 : 2;
ubyte index_1_3 : 2;
ubyte index_2_0 : 2;
ubyte index_2_1 : 2;
ubyte index_2_2 : 2;
ubyte index_2_3 : 2;
ubyte index_3_0 : 2;
ubyte index_3_1 : 2;
ubyte index_3_2 : 2;
ubyte index_3_3 : 2;
};
struct BC3_DXT5 {
ubyte alpha_0;
ubyte alpha_1;
struct {
ubyte lsb <hidden=true>;
ubyte b <hidden=true>;
ubyte msb <hidden=true>;
} uint24_alpha_3bit;
struct {
ubyte lsb <hidden=true>;
ubyte b <hidden=true>;
ubyte msb <hidden=true>;
} uint24_alpha_3bit;
RGB565 color_0;
RGB565 color_1;
// y x
ubyte index_0_0 : 2;
ubyte index_0_1 : 2;
ubyte index_0_2 : 2;
ubyte index_0_3 : 2;
ubyte index_1_0 : 2;
ubyte index_1_1 : 2;
ubyte index_1_2 : 2;
ubyte index_1_3 : 2;
ubyte index_2_0 : 2;
ubyte index_2_1 : 2;
ubyte index_2_2 : 2;
ubyte index_2_3 : 2;
ubyte index_3_0 : 2;
ubyte index_3_1 : 2;
ubyte index_3_2 : 2;
ubyte index_3_3 : 2;
};
#endif