-
Notifications
You must be signed in to change notification settings - Fork 0
/
birdParkProcessing.pde
128 lines (107 loc) · 2.51 KB
/
birdParkProcessing.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
import beads.*;
import org.jaudiolibs.beads.*;
import ddf.minim.Minim;
import ddf.minim.AudioPlayer;
Minim minim;
AudioPlayer bgSound;
Background backgroundHandler;
Boolean audio;
boolean cursorMode = true;
boolean foodMode = false;
PImage cursor;
PImage foodCursor;
PImage cursorIcon;
PImage foodIcon;
void setup() {
size(1280, 720, P2D);
imageMode(CENTER);
cursor = loadImage("cursor.png");
noCursor();
//foodCursor = loadImage("foodCursor.png");
//cursor = loadImage("cursor.png");
foodIcon = loadImage("foodIcon.png");
cursorIcon = loadImage("cursorIcon.png");
// cursor(cursor, 0, 0);
backgroundHandler = new Background();
minim = new Minim(this);
bgSound = minim.loadFile("ParkSound.mp3");
bgSound.loop();
}
void draw() {
background(0);
backgroundHandler.drawBackground();
imageMode(CORNER);
tint(255, 255);
image(cursorIcon, width - 180, 15);
image(foodIcon, width - 90, 15);
image(cursor, mouseX, mouseY, 30, 30);
if(foodMode){
cursor = loadImage("foodCursor.png");
}
else{
cursor = loadImage("cursor.png");
}
/*
if(foodMode){
cursor(foodCursor, foodCursor.width/2, foodCursor.height/2);
}
else{
cursor(cursor, 0, 0);
}
*/
}
void mousePressed(){
backgroundHandler.mouseClickedBackground();
if(mouseY > 200 && foodMode){
backgroundHandler.addFood();
}
if(iconCollision(mouseX, mouseY, width -180, 15, (int)cursorIcon.width, (int)cursorIcon.height)){
cursorMode = true;
foodMode = false;
}
if(iconCollision(mouseX, mouseY, width - 90, 15, (int)foodIcon.width, (int)foodIcon.height)){
cursorMode = false;
foodMode = true;
}
}
boolean iconCollision(int px, int py, int ix, int iy, int iw, int ih){
if(px >= ix && px <= ix + iw){
if(py >= iy && py <= iy + ih){
return true;
}
}
return false;
}
void keyPressed(){
if(key == 'i'){
backgroundHandler.setInstructions();
}
if(key == 'r'){
backgroundHandler.setRain();
}
if(key == 'c'){
backgroundHandler.setClouds();
}
if(key == 't'){
backgroundHandler.setThunder();
}
if(key == '='){
//increase rain frequency
backgroundHandler.increaseRain();
}
if(key == '-'){
backgroundHandler.decreaseRain();
}
if(key == 's'){
backgroundHandler.setSun();
}
if(key == ']'){
backgroundHandler.moveSunForward();
}
if(key == '['){
backgroundHandler.moveSunBackward();
}
if(key == 'a'){
backgroundHandler.autoSun();
}
}