aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/staticres.cpp
blob: f5dd561758e49fe161aeacb6cb905677b322d271 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "voyeur/staticres.h"

namespace Voyeur {

const int COMPUTER_DEFAULTS[] = {
	18, 1, 0, 1, 33, 0, 998, -1, 18, 2, 0, 1, 41, 0,
	998, -1, 18, 3, 0, 1, 47, 0, 998, -1, 18, 4, 0,
	1, 53, 0, 998, -1, 18, 5, 0, 1, 46, 0, 998, -1,
	18, 6, 0, 1, 50, 0, 998, -1, 18, 7, 0, 1, 40, 0,
	998, -1, 18, 8, 0, 1, 43, 0, 998, -1, 19, 1, 0,
	2, 28, 0, 998, -1
};

const int RESOLVE_TABLE[] = {
	0x2A00, 0x4A00, 0x1000, 0x4B00, 0x2C00, 0x4F00, 0x1400, 0x5000,
	0x1700, 0x5100, 0x1800, 0x5200, 0x3300, 0x5400, 0x3700, 0x5500,
	0x1A00, 0x1C00, 0x1E00, 0x1F00, 0x2100, 0x2200, 0x2400, 0x2700,
	0x2B00, 0x1100, 0x4C00, 0x1200, 0x4D00, 0x1300, 0x4E00, 0x2E00,
	0x1900, 0x3200, 0x3400, 0x3800, 0x2800, 0x3E00, 0x4100, 0x2900,
	0x4400, 0x4600, 0x5300, 0x3900, 0x7600, 0x7200, 0x7300, 0x7400,
	0x7500
};

const int LEVEL_H[] = { 
	4, 7, 7, 8, 9, 10, 2, 2, 4, 8, 8, 9, 9, 10, 10, 11, 11
};

const int LEVEL_M[] = {
	0, 0, 30, 0, 30, 0, 0, 0, 30, 0, 30, 0, 45, 0, 30, 0, 30
};

const int BLIND_TABLE[] = {
	0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 9, 10, 11, 1, 11, 5, 12,
	13, 16, 15, 16, 17, 18, 5, 6, 18, 17, 13, 13, 14, 14,
	5, 12, 6, 6, 13, 14, 13
};

const int COMP_BUT_TABLE[] = {
	269, 128, 307, 163, 
	269, 128, 307, 163, 
	68, 79, 98, 102, 
	68, 79, 98, 102, 
	68, 79, 98, 102, 
	68, 79, 98, 102,
	248, 138, 291, 163, 
	83, 132, 143, 156, 
	248, 138, 291, 163, 
	83, 132, 143, 156, 
	83, 132, 143, 156, 
	248, 138, 291, 163, 
	68, 79, 98, 102, 
	68, 79, 98, 102
};

} // End of namespace Voyeur