1

時間制限のある 10 問のトリビア ゲームがあります。間違った答えは 0 点を出力するはずです。正解は、残りの 20,000 ミリ秒を 100 点スケールに変換して出力することになっています。

現在、ゲームは最初のゲームで動作します。その後、ユーザーが 2 回目のプレイを続けると、各質問のポイントが不正確になります。たとえば、不正解は 1 から 100 までのさまざまなポイントを持ち始め、正解が 0 ポイントになることもあれば、合計ポイントが間違っていることもあります。したがって、いくつかの変数が2番目のゲームでリセットされない可能性があると推測しているため、ポイントが少しずれています。

アルゴリズムを扱うすべてのコードを投稿しました。私の質問は、ユーザーがアプリを閉じる前に何回プレイしても正しい答えを出力するようにこのコードを取得する方法です。

QuestionView.java

public class QuestionView extends Activity  {

    int correctAnswers = 0;
    int wrongAnswers = 0;
    int answer = 0;
    int i = 0;

    long score = 0;

    long startTime = 20000;
    long interval = 1000;
    long points;

    boolean timerHasStarted = false;

    String category;

    Button answer1, answer2, answer3, answer4;
    TextView question, pointCounter, questionNumber, timeCounter, timeremaining;
    AdView adView;

    ArrayList<Question> queries;
    public static ArrayList<Long> pointsPerQuestion = new ArrayList<Long>(10);
    Timer cdTimer;

    ProgressBar bar;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.questionview);

        answer1 = (Button)findViewById(R.id.answer1);
        answer2 = (Button)findViewById(R.id.answer2);
        answer3 = (Button)findViewById(R.id.answer3);
        answer4 = (Button)findViewById(R.id.answer4);

        question = (TextView)findViewById(R.id.question);

        category = getIntent().getStringExtra("category");
        queries = getIntent().getParcelableArrayListExtra("queries");

        questionNumber = (TextView)findViewById(R.id.questionnumber);
        timeremaining = (TextView)findViewById(R.id.timeremaining);

        cdTimer = new Timer(startTime, interval);

        bar = (ProgressBar)findViewById(R.id.progressbar);
        bar.setIndeterminate(false);
        bar.setMax(20000);

        tracker.sendView("/QuestionView - Started Quiz");

        loadQuestion();
    }

    public void loadQuestion() {

        if(i == 10) {

            cdTimer.cancel();
            endQuiz();

        } else {

            if(!timerHasStarted) {
                cdTimer.start();
                timerHasStarted = true;
            } else {
                cdTimer.start();
                timerHasStarted = false;
            }

            answer = queries.get(i).getCorrectAnswer();

            question.setText(queries.get(i).getQuery());

            answer1.setText(queries.get(i).getA1());
            answer2.setText(queries.get(i).getA2());
            answer3.setText(queries.get(i).getA3());
            answer4.setText(queries.get(i).getA4());

            answer1.setOnClickListener(new OnClickListener() {
                public void onClick(View arg0) {
                    queries.get(i).setSelectedAnswer(0);
                    if(answer == 0) {
                        correctAnswers++;
                        correct();
                    } else {
                        wrongAnswers++;
                        incorrect();
                    }
                }
            });

            answer2.setOnClickListener(new OnClickListener() {
                public void onClick(View arg0) {
                    queries.get(i).setSelectedAnswer(1);
                    if(answer == 1) {
                        correctAnswers++;
                        correct();
                    } else {
                        wrongAnswers++;
                        incorrect();
                    }
                }
            });

            answer3.setOnClickListener(new OnClickListener() {
                public void onClick(View arg0) {
                    queries.get(i).setSelectedAnswer(2);
                    if(answer == 2) {
                        correctAnswers++;
                        correct();
                    } else {
                        wrongAnswers++;
                        incorrect();
                    }
                }
            });

            answer4.setOnClickListener(new OnClickListener() {
                public void onClick(View arg0) {
                    queries.get(i).setSelectedAnswer(3);
                    if(answer == 3) {
                        correctAnswers++;
                        correct();
                    } else {
                        wrongAnswers++;
                        incorrect();
                    }
                }
            });
        } 
    }

    public ArrayList<Question> getQueries() {
        return queries;
    }

    public static ArrayList<Long> getPointsPerQuestion() {
        return pointsPerQuestion;
    }

    public void correct() {
        pointsPerQuestion.add(points); 
        score = score + points;
        i++;
        loadQuestion();
    }

    public void incorrect() {
        long zero = 0;
        pointsPerQuestion.add(zero);
        i++;
        loadQuestion();
    }

    public class Timer extends CountDownTimer {

        public Timer(long startTime, long interval) {
            super(startTime, interval);
        }

        @Override
        public void onFinish() {
            points = 0;
            if(i >= 9) {
                cdTimer.cancel();
                pointsPerQuestion.add(points);
                endQuiz();
            } else {
                wrongAnswers++;
                incorrect();
            }
        }

        @Override
        public void onTick(long millisUntilFinished) {
            bar.setProgress((int) millisUntilFinished);
            points = millisUntilFinished / 200;
            timeremaining.setText("Score remaining: " + points);
            if(i < 10) {
                questionNumber.setText("Question " + (i + 1) + " of 10");
            }
        }
    }

    public void endQuiz() {
        Intent intent = new Intent(QuestionView.this, Results.class);
        intent.putExtra("correctAnswers", correctAnswers);
        intent.putExtra("wrongAnswers", wrongAnswers);
        intent.putExtra("score", score);
        intent.putExtra("pointsPerQuestion", pointsPerQuestion);
        intent.putParcelableArrayListExtra("queries", queries);
        intent.putExtra("category", category);
        startActivity(intent);
    }
}

ここにQuestionオブジェクトがあります:

exodus.add(new Question("6th", "3rd", "5th", "4th", 2, "Name that plague:  All livestock dies", -1, "Exodus 9:6"));

質問ごとのポイントが表示される私のResultsクラスでは、これはポイントを表示する行です。

scoreTV.setText("You received " + QuestionView.getPointsPerQuestion().get(x) + " out of a possible 100 points.");

他のすべてはほとんど私のQuestionView上記にあります。他に何か必要な場合はお知らせください。

最初の 3 つの文字列は、回答 A (インデックス 0)、B (インデックス 1)、C (インデックス 2)、および D (インデックス 3) です。最初の int が正解です。5弦が問題です。2 番目の int は、クイズ中にユーザーが選択した回答に設定されます。最後の文字列は、答えが見つかる聖書の一節です。

4

0 に答える 0