private void PctAustralia_Click(object sender, EventArgs e) { if (usuario.setFase() == 1) { if (tailandia.setCondicao()) { australia.mudarPonto(); Score += 20; MessageBox.Show("Parabéns !!!! \nVocê ganhou a primeira fase"); usuario.getFase(2); LoadFase(); } else { caminhoErrado(); } } else if (usuario.setFase() == 2) { if (tailandia.setCondicao()) { australia.mudarPonto(); Score += 10; MessageBox.Show("Parabéns !!!! \nVocê ganhou a segunda fase"); usuario.getScore(Score); MessageBox.Show("Sua pontuação foi " + usuario.setScore()); Application.Exit(); } else { caminhoErrado(); } } }
private void reset()// reseta todos os pontos para proxima fase { saoPaulo = new SaoPaulo(); bahia = new Bahia(); caribe = new Caribe(); usa_leste = new USA_Leste(); usa_oeste = new USA_Oeste(); japao = new Japao(); china = new China(); tailandia = new Tailandia(); australia = new Australia(); unitedKingdom = new UnitedKingdom(); africaCentral = new AfricaCentral(); africaSul = new AfricaSul(); india = new India(); saoPaulo.getCondicao(true); bahia.getCondicao(true); caribe.getCondicao(true); usa_leste.getCondicao(true); usa_oeste.getCondicao(true); japao.getCondicao(true); china.getCondicao(true); tailandia.getCondicao(true); australia.getCondicao(true); unitedKingdom.getCondicao(true); africaCentral.getCondicao(true); africaSul.getCondicao(true); india.getCondicao(true); europaLeste.getCondicao(true); europaOeste.getCondicao(true); saoPaulo.getBloquedo(false); bahia.getBloquedo(false); caribe.getBloquedo(false); usa_leste.getBloquedo(false); usa_oeste.getBloquedo(false); japao.getBloquedo(false); china.getBloquedo(false); tailandia.getBloquedo(false); australia.getBloquedo(false); unitedKingdom.getBloquedo(false); africaCentral.getBloquedo(false); africaSul.getBloquedo(false); india.getBloquedo(false); europaLeste.getBloquedo(false); europaOeste.getBloquedo(false); saoPaulo.get_pct(pctSaoPaulo); bahia.get_pct(pctBahia); caribe.get_pct(pctCaribe); usa_leste.get_pct(pct_USA_Leste); usa_oeste.get_pct(pct_USA_Oeste); japao.get_pct(pctJapao); china.get_pct(pctChina); tailandia.get_pct(pctTailandia); australia.get_pct(pctAustralia); unitedKingdom.get_pct(pct_UnitedKingdom); africaCentral.get_pct(pctAfricaCenter); africaSul.get_pct(pctAfricaSul); india.get_pct(pctIndia); europaLeste.get_pct(pctEuropaLeste); europaOeste.get_pct(pctEuropaOeste); saoPaulo.mudarPonto(); bahia.mudarPonto(); caribe.mudarPonto(); usa_leste.mudarPonto(); usa_oeste.mudarPonto(); japao.mudarPonto(); china.mudarPonto(); tailandia.mudarPonto(); australia.mudarPonto(); unitedKingdom.mudarPonto(); africaCentral.mudarPonto(); africaSul.mudarPonto(); india.mudarPonto(); europaOeste.mudarPonto(); europaLeste.mudarPonto(); }