예제 #1
0
    public void Comecar()
    {
        PainelComecar.SetActive(false);
        PainelMeio.SetActive(false);
        PainelUltimo.SetActive(false);

        NumeroQuestao.text = NumQuestao.ToString();

        ChamarQuestao();
        testarImagem();
    }
예제 #2
0
    public void btnProxima()
    {
        NumQuestao++;
        x++;


        if (err == 1)
        {
            HP05.SetActive(false);
        }

        if (err == 2)
        {
            HP04.SetActive(false);
        }

        if (err == 3)
        {
            HP03.SetActive(false);
        }

        if (err == 4)
        {
            HP02.SetActive(false);
        }

        if (err >= 5)
        {
            HP01.SetActive(false);
            NumQuestao = 16;
        }

        if (NumQuestao < 6)
        {
            idQuestão = ids[x];
            Debug.Log("Nivel 1 - Pos:" + x + " = " + idQuestão);

            ChamarQuestao();

            Subnivel = 2;

            testarImagem();
        }

        if (NumQuestao == 6)
        {
            x   = 0;
            ids = new List <string>();
            Debug.Log("Nivel 2 - Pos:" + x + " = " + idQuestão);

            ConsultarIds();

            PainelMeio.SetActive(true);
            SubMeu01.SetActive(false);
            SubMeu02.SetActive(true);

            ZerarImagem();
        }

        if (NumQuestao > 6 && NumQuestao < 11)
        {
            idQuestão = ids[x];
            Debug.Log("Nivel 2 - Pos:" + x + " = " + idQuestão);

            ChamarQuestao();

            Subnivel = 3;

            testarImagem();
        }

        if (NumQuestao == 11)
        {
            x   = 0;
            ids = new List <string>();
            Debug.Log("Nivel 3 - Pos:" + x + " = " + idQuestão);

            ConsultarIds();

            PainelUltimo.SetActive(true);

            ZerarImagem();

            SubMeu02.SetActive(false);
            SubMeu03.SetActive(true);
        }

        if (NumQuestao > 11 && NumQuestao <= 15)
        {
            idQuestão = ids[x];
            Debug.Log("Nivel 3 - Pos:" + x + " = " + idQuestão);

            ChamarQuestao();

            testarImagem();
        }

        if (NumQuestao > 15)
        {
            AcertosFinal.text = Acertos.ToString();

            PainelFinal.SetActive(true);

            if (Acertos > 10)
            {
                Aprovado.SetActive(true);

                Pontos          = Acertos * 8;
                Pontos          = DBManager.score + Pontos;
                DBManager.score = Pontos;

                if (DBManager.nivel <= Nivel)
                {
                    gravarComNivel();
                }
                else
                {
                    gravarSemNivel();
                }
            }
            else
            {
                Reprovado.SetActive(true);
            }
        }

        NumeroQuestao.text = NumQuestao.ToString();
        PainelResposta.SetActive(false);
        Correto.SetActive(false);
        Incorreto.SetActive(false);
    }