added icons and xml to livewp directory in debian rules
[shermanaquarium] / sherman-aquarium / shermans / defines.h
1 #ifndef DEFINES_H
2 #define DEFINES_H
3
4
5 /*
6   Magic for the graphics function to know when they are called
7   after or before the fish are drawn.
8   Best kept here.
9 */
10
11 #define DRAW_BEFORE 0
12 #define DRAW_AFTER 1
13
14 #define MAX_COMICS 8
15
16 #define SHERMAN_PATH "shermans_aquarium/"
17
18 #define LEFT 0
19 #define CENTER 1
20 #define RIGHT 2
21 #define TOP 0
22 #define BOTTOM 2
23
24
25
26
27 /* This defines how large the CPU load buffer shall be. Having a
28    small value makes the termometer response very fast on the
29    different CPU load. With 20 it is responsing quite smooth.
30
31 */
32
33 #define CPUSMOOTHNESS 20
34
35 /* perform clipping outside this range, also this is the size of the
36  * drawing area */
37 /* This is how much that is seen on the screen of the aquarium */
38
39 #define XMIN 4
40 #define XMAX 56
41 #define YMIN 4
42 #define YMAX 56
43
44 #define WINDOWSIZE_X 64
45 #define WINDOWSIZE_Y 64
46
47
48 /* How large the aquarium that the fishes lives in. */
49
50 #define VIRTUAL_AQUARIUM_DX 80
51 #define VIRTUAL_AQUARIUM_DY 40
52
53 #define VIEWPOINT_START_X  60
54 #define VIEWPOINT_START_Y  40
55
56
57 #endif