xxxxxxxxxx
172
//variáveis da bolinha
let xBolinha = 250;
let yBolinha = 250;
let dBolinha = 25;
let raio = dBolinha / 2;
//variáveis da velocidade da bolinha
let velocidadexBolinha= 6;
let velocidadeyBolinha= 4;
//variáveis da raquete
let xRaquete = 10;
let yRaquete = 250;
//variáveis de ambas raquetes
let wRaquete = 12;
let hRaquete = 95;
//variáveis da raquete do oponente
let xRaqueteOponente = 480;
let yRaqueteOponente = 250;
let velocidadeyOponente;
let chanceDeErrar = 0;
//placar do jogo
let meusPontos = 0;
let pontosOponente = 0;
//sons do jogo
let raquetada;
let ponto;
let trilha;
function preload(){
trilha = loadSound("trilha.mp3");
ponto = loadSound("ponto.mp3");
raquetada = loadSound("raquetada.mp3");
}
function setup() {
createCanvas(500, 500);
trilha.loop();
}
function draw() {
background(0);
mostraBolinha();
velocidadeBolinha();
bordaBolinha();
mostraRaquete(xRaquete,yRaquete);
movimentoRaquete();
colisaoRaquete();
mostraRaquete(xRaqueteOponente,yRaqueteOponente);
movimentoRaqueteOponente();
colisaoRaqueteOponente();
incluiPlacar();
marcaPonto();
calculaChanceDeErrar();
bolinhaNaoFicaPresa();
}
function mostraBolinha(){
circle(xBolinha,yBolinha,dBolinha);
}
function velocidadeBolinha(){
xBolinha += velocidadexBolinha;
yBolinha += velocidadeyBolinha;
}
function bordaBolinha(){
if (xBolinha + raio > width || xBolinha - raio < 0){
velocidadexBolinha *= -1;
}
if (yBolinha + raio > height || yBolinha - raio < 0)
{
velocidadeyBolinha *= -1;
}
}
function mostraRaquete(x,y){
rect(x, y,wRaquete, hRaquete);
}
function movimentoRaquete(){
if(keyIsDown(UP_ARROW)){
yRaquete -= 5;
}
if(keyIsDown(DOWN_ARROW)){
yRaquete += 5;
}
}
function colisaoRaquete(){
if (xBolinha - raio < xRaquete + wRaquete && yBolinha - raio < yRaquete + hRaquete && yBolinha + raio > yRaquete)
{velocidadexBolinha *= -1
raquetada.play();
}
}
function movimentoRaqueteOponente(){
/*if(keyIsDown(87)){
yRaqueteOponente -= 5;
}
if(keyIsDown(83)){
yRaqueteOponente += 5;
} */
velocidadeyOponente = yBolinha - yRaqueteOponente - wRaquete / 2 - 30;
yRaqueteOponente += velocidadeyOponente + chanceDeErrar;
calculaChanceDeErrar();
}
function colisaoRaqueteOponente(){
if (xBolinha + raio > xRaqueteOponente && yBolinha + raio < yRaqueteOponente + hRaquete && yBolinha + raio > yRaqueteOponente)
{velocidadexBolinha *= -1
raquetada.play();
}
}
function incluiPlacar(){
stroke(255);
textAlign(CENTER);
textSize(20);
fill(255,120,0);
rect(105 , 8, 40, 23)
fill(255);
text(meusPontos, 125, 26);
fill(255,120,0);
rect(355,8, 40, 23)
fill(255);
text(pontosOponente, 375, 26);
}
function marcaPonto(){
if (xBolinha > 485){
meusPontos += 1;
ponto.play();
}
if (xBolinha < 15){
pontosOponente += 1;
ponto.play();
}
}
function calculaChanceDeErrar(){
if(pontosOponente >= meusPontos)
{
chanceDeErrar += 1;
if(chanceDeErrar>=39){
chanceDeErrar = 40;
}
}
else {
chanceDeErrar -= 1
if (chanceDeErrar <= 35){
chanceDeErrar = 35
}
}
}
function bolinhaNaoFicaPresa(){
if (xBolinha - raio < 0){
xBolinha = 23
}
}