xxxxxxxxxx
86
//ator
let yAtor = 380;
let xAtor = 237;
let colisao = false;
let meusPontos = 0;
let timeout = 0;
function debounce(fn) {
clearTimeout(timeout);
timeout = setTimeout(fn, 100);
}
function mostraAtor(){
image(imagemDoAtor, xAtor, yAtor, 30, 30);
}
function movimentaAtor(){
if (keyIsDown(UP_ARROW)){
yAtor -= 2;
}
if (keyIsDown(DOWN_ARROW)){
if(podeSeMover()){
yAtor += 2;
}
}
if (keyIsDown(LEFT_ARROW)){
if(podeSeMoverE()){
xAtor -= 2;}
}
if (keyIsDown(RIGHT_ARROW)){
if(podeSeMoverD()){
xAtor += 2;}
}
}
function verificaColisao(){
for (let i = 0; i < imagemCarros.length; i++){
colisao = collideRectCircle(xCarros[i], yCarros[i], comprimentoCarro, alturaCarro, xAtor, yAtor, 18)
if(colisao){
voltaAtor();
somColisao.play(0.1, 1, 0.35);
if (pontosMaiorQueZero()){
debounce(function() {
meusPontos -=1;
})
}
}
}
}
function voltaAtor(){
yAtor = 366;
}
function incluiPontos(){
textAlign(CENTER);
textSize(32);
fill(color(255,69,0))
text(meusPontos, width / 2, 29);
}
function marcaPonto(){
if(yAtor < 6){
meusPontos += 1; voltaAtor();
somPonto.play(0.1, 1, 0.4)
}
}
function pontosMaiorQueZero(){
return meusPontos > 0
}
function podeSeMover(){
return yAtor < 380;
}
function podeSeMoverD(){
return xAtor < 471
}
function podeSeMoverE(){
return xAtor > 0
}