-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullScreen.ts
16 lines (16 loc) · 2.01 KB
/
fullScreen.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function displayFullScreenTwo() {
let list_colors_number = [[149, 11, 149, 11, 149, 11, 149, 11, 150, 10, 150, 10, 40, 1, 110, 9, 153, 5, 768, 1, 159, 1, 485, 1, 159, 1, 606, 1, 166, 1, 21, 1, 111, 1, 80, 1, 78, 1, 101, 1, 97, 1, 8, 1, 52, 1, 97, 1, 296, 1, 330, 1, 159, 1, 212, 1, 83, 1, 77, 1, 113, 1, 45, 1, 113, 1, 67, 1, 159, 1, 249, 1, 212, 1, 159, 1, 311, 1, 322, 1, 147, 1, 8, 2560, 1994, 7, 150, 13, 146, 15, 143, 19, 140, 21, 138, 9, 5, 9, 136, 8], [10, 7, 135, 6, 13, 7, 133, 6, 15, 6, 132, 6, 17, 6, 131, 6, 18, 5, 130, 6, 19, 6, 129, 5, 21, 5, 129, 5, 21, 5, 129, 5, 21, 5, 128, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 127, 5, 23, 5, 128, 5, 21, 5, 129, 5, 21, 5, 129, 5, 21, 5, 129, 6, 19, 6, 130, 5, 19, 5, 131, 6, 17, 6, 132, 6, 15, 6, 133, 7, 13, 7, 134, 7], [11, 7, 136, 9, 5, 9, 138, 21, 140, 19, 142, 17, 145, 13, 150, 7, 2639]];
let list_colors = [[0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 2, 0, 1, 0, 1, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 1, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0, 4, 3, 4], [0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4, 0, 4, 3, 4], [0, 4, 3, 4, 0, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3]];
let palette_colors = [1309, 65408, 1308, 9609, 40669];
let width = 160;
let height = 128;
let nombre_occurence: number = (list_colors.length - 1) * (list_colors[0].length) + list_colors[list_colors.length - 1].length;
return {
listOfColorNumber: list_colors_number,
listOfColor: list_colors,
paletteOfColors: palette_colors,
width: width,
height: height,
numberOfOccurence: nombre_occurence
};
}