-
Notifications
You must be signed in to change notification settings - Fork 0
/
ator.js
62 lines (53 loc) · 1.07 KB
/
ator.js
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
//código do ator
let xAtor = 100;
let yAtor = 366;
let colisao = false;
let meusPontos = 0;
function mostraAtor(){
image(imagemDoAtor, xAtor, yAtor, 30, 30);
print(yAtor);
}
function movimentaAtor(){
if (keyIsDown(UP_ARROW)){
yAtor -= 3;
}
if (keyIsDown(DOWN_ARROW)){
if(podeSeMover()){
yAtor += 3;
}
}
}
function verificaColisao(){
for(let i = 0; i < imagemCarros.length; i++){
colisao = collideRectCircle(xCarros[i], yCarros[i], comprimentoCarro, alturaCarro, xAtor, yAtor, 15);
if(colisao){
voltaAtorParaPosicaoInicial();
somDaColisao.play();
if(pontosMaiorQueZero()){
meusPontos -= 1;
}
}
}
}
function voltaAtorParaPosicaoInicial(){
yAtor = 366;
}
function incluiPontos(){
textAlign(CENTER);
textSize(25);
fill(color(65,105,225))
text(meusPontos, width / 3, 27);
}
function marcaPonto(){
if(yAtor < 15){
meusPontos += 1;
voltaAtorParaPosicaoInicial();
somDoPonto.play();
}
}
function pontosMaiorQueZero(){
return meusPontos > 0
}
function podeSeMover(){
return yAtor < 366;
}