-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOOP_Assignment.pde
181 lines (117 loc) · 2.9 KB
/
OOP_Assignment.pde
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
import processing.sound.*;
SoundFile file;
SoundFile file_2;
SoundFile file_3;
PImage img;
PImage img_2;
void setup()
{
fullScreen();
img = loadImage("movie_converted.jpg");
img_2 = loadImage("movie_converted_2.jpg");
file = new SoundFile(this, "close.mp3");
file_2 = new SoundFile(this, "Closer.mp3");
file_3 = new SoundFile(this, "closest.mp3");
}
HUD Viser = new HUD();
Logo Wayland = new Logo();
Barchart bar = new Barchart();
Radar Alien_Radar = new Radar();
Buttons switches = new Buttons();
Map map = new Map();
float points = 5;
float move_down = 10;
float move_over = 1140;
float move_over_1 = 1220;
float move_over_2 = 1300;
int start = 0;
int Scan_up_down = 0;
int Scan_across = 0;
void scale_barchart()
{
scale(1.6);
textSize(14);
translate(50, 50);
bar.barchart();
}
void button_duplication()
{
switches.Draw_button();
}
void scale_radar()
{
translate(1025, 334);
scale(1.35);
Alien_Radar.drawradar();
}
int time = 0;
int time2 = 0;
void draw()
{
if(time > 950)
{
background(img);
if (mousePressed)
{
if (mouseX > 3 * points + move_over -25 && mouseX < 2 * points + move_over + 20 && mouseY > 5 * points + move_down -25 && mouseY <15 * points + move_down +20)
{
background(img_2);
}
}
if (mousePressed)
{
if (mouseX > 3 * points + move_over_1 -25 && mouseX < 2 * points + move_over_1 + 20 && mouseY > 5 * points + move_down -25 && mouseY <15 * points + move_down +20)
{
stroke(38, 153, 0);
strokeWeight(10);
line(0, Scan_up_down, width, Scan_up_down);
for(int i = 0;i < 5; i++)
{
if(Scan_up_down < height)
{
Scan_up_down = Scan_up_down + 30;
}
if (Scan_up_down > height)
{
Scan_up_down = 0;
}
}
line(Scan_across,height, Scan_across,0 );
for(int j = 0;j < 5; j++)
{
if(Scan_across < width)
{
Scan_across = Scan_across + 20;
}
if (Scan_across > width)
{
Scan_across = 0;
}
}
}
}
stroke(0);
strokeWeight(1);
Viser.drawHUD();
button_duplication();
}
Wayland.drawlogo();
if(time > 950)
{
scale_barchart();
scale_radar();
if (mousePressed)
{
if (mouseX > 3 * points + move_over_2 -25 && mouseX < 2 * points + move_over_2 + 20 && mouseY > 5 * points + move_down -25 && mouseY <15 * points + move_down +20)
{
stroke(0, 0, 204);
noFill();
map.draw_map();
}
}
}
if(time < 1200)
{
time++;
}
}