2
respostas

[Bug] Não carrega o jogo

//variáveis da bolinha let xBolinha = 300; let yBolinha = 200; let diametro = 15; let raio = diametro / 2 ;

//velocidade da bolinha let velocidadexBolinha = 6; let velocidadeyBolinha = 6;

//variaveis da raquete let xRaquete = 5; let yRaquete = 150; let raqueteComprimento = 10; let raqueteAltura = 90;

// variaveis do oponente let xRaqueteOponente = 585; let yRaqueteOponente = 150;

let velocidadeyOponente = 6;

let colidiu = false;

//placar do jogo

let meusPontos = 0; let pontosDoOponente = 0;

let chanceDeErrar = 0;

//sons do jogo let raquetada; let ponto; let trilha;

function setup() { createCanvas(600, 400); }

function draw() { background(0); mostraBolinha(); movimentaBolinha(); verificaColisaoBorda(); mostraRaquete(xRaquete, yRaquete); movimentaMinhaRaquete(); //verificaColisaoRaquete(); verificaColisaoRaquete(xRaquete, yRaquete); mostraRaquete(xRaqueteOponente, yRaqueteOponente); movimentaRaqueteOponente(); limiteRaquete(); verificaColisaoRaquete(xRaqueteOponente, yRaqueteOponente); incluiPlacar(); marcaPonto(); }

function mostraBolinha(){ circle(xBolinha, yBolinha, diametro); }

function movimentaBolinha(){ xBolinha += velocidadexBolinha; yBolinha += velocidadeyBolinha; }

function verificaColisaoBorda(){ if (xBolinha + raio> width || xBolinha - raio< 1){ velocidadexBolinha *= -1; } if (yBolinha + raio> height || yBolinha - raio < 0){ velocidadeyBolinha *= -1; } }

function mostraRaquete(x,y){ rect(x, y, raqueteComprimento, raqueteAltura); }

function movimentaMinhaRaquete() { if (keyIsDown(UP_ARROW)){ yRaquete -= 10; } if (keyIsDown(DOWN_ARROW)){ yRaquete += 10; } }

function movimentaRaqueteOponente(){ velocidadeyOponente = yBolinha - yRaqueteOponente - raqueteComprimento /2 - 30; yRaqueteOponente += velocidadeyOponente +chaceDeErrar; calculaChanceDeErrar(); }

function verificaColisaoRaquete(x, y){ colidiu = collideRectCircle(x, y, raqueteComprimento, raqueteAltura, xBolinha, yBolinha, raio); if (colidiu){ velocidadexBolinha *= -1; } }

function incluiPlacar(){ stroke(255); textAlign(CENTER); textSize(16); fill(color(255, 140, 0)); rect(150,10,40, 20) fill(255); text(meusPontos, 170, 26); fill(color(255, 140, 0)); rect(450, 10, 40, 20) fill(255); text(pontosDoOponente, 470, 26)

}

function marcaPonto(){ if (xBolinha > 590) { meusPontos += 1; }

if (xBolinha < 10) { pontosDoOponente += 1;

} }

function calculaChanceDeErrar() { if (pontosDoOponente >= meusPontos) { chanceDeErrar += 1 if (chanceDeErrar >= 44){ chanceDeErrar = 45 } } else { chanceDeErrar -= 1 if (chanceDeErrar <= 36){ chanceDeErrar = 36 } }

}function limiteRaquete (){ //Minha raquete// if (yRaquete >= 310) { yRaquete = 310; } if (yRaquete <= 0) { yRaquete = 0; } //Raquete Oponente// if (yRaqueteOponente >= 310) { yRaqueteOponente = 310; } if (yRaqueteOponente <= 0) { yRaqueteOponente = 0; } }

function preload() { trilha = loadSound("trilha.mp3"); ponto = loadSound("ponto.mp3"); raquetada = loadSound("raquetada.mp3"); }

2 respostas

Já resolvi.

Olá, como você resolveu? Estou com o mesmo problema!