This is the classic Simon Says game- a sequence of random numbers are generated in an array and it asks the user to match them. It doesn't look to me like it's matching the numbers I enter though. Someone else said it is, however. I'm entering them in at the terminal that pops up when I instantiate my class (using BlueJ). It generates a random number (0-3, but usually follows an obvious pattern for some reason), I press it and hit enter, and it mostly comes up blank... I tested the methods individually and they seem to work fine, the problem must be within the constructor. Can someone help me figure this out? How are you entering it and what does it say? Thanks!
import acm.program.*;
import acm.graphics.*;
import java.awt.Color;
import java.awt.Font;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.JOptionPane;
import java.util.Scanner;
import java.io.DataInputStream;
public class Simon extends Program implements ActionListener
{
Scanner usersInputScanner = new Scanner(System.in);
private int array[];
private int currentSeqLength;
private int usersInput;
private String usersInputString;
public Simon()
{
//Initialize Class Values
array = new int[20];
currentSeqLength = 1;
usersInput = 0;
generateSequence();
while(currentSeqLength < array.length)
{
playSequence();
//Wait For User's Input Here, Assign To Variable
System.out.println("Enter A Number");
//usersInputString = JOptionPane.showInputDialog("Enter A Number"); //usersInputScanner.nextInt();
usersInput = usersInputScanner.nextInt(); // usersInputString
if (pushButton(usersInputScanner.nextInt()) == true)
{
System.out.println("Number Pressed: " + usersInput);
currentSeqLength++;
}
else
{
System.out.println("Number Pressed: " + usersInput);
System.out.println(gameOverMessage());
break;
//Reset Variables:
}
}
}
public void generateSequence()
{
//Fill Array With Random Numbers
for (int i = 0; i < array.length; i++ )
{
array[i] = (int)(Math.random()*4);
}
}
public void setLength(int length)
{
//Set Current Length To Size Of Given Argument
currentSeqLength = length;
}
int getLength()
{
return currentSeqLength;
}
int[] playSequence()
{
//Print Out The Current Sequence
//New Local Array To Return
int newArray[]= new int[currentSeqLength];
//Repeat As Many Times As Value Of currentSeqLength
for(int i = 0; i < currentSeqLength ; i++)
{
System.out.println(array[i]);
//Return an array of int's to the player.
newArray[i] = array[i];
}
return newArray;
}
boolean pushButton(int usersInput)
{
//Given A Button Press (0-3), Return Whether That Was The
//Correct Button To Play At The Moment
if (usersInput == array[currentSeqLength])
{
return true;
}
else
{
return false;
}
}
boolean isTurnOver()
{
//If Current Sequence Length Matches Or Exceeds Value Of
//Array Element In Location Of Current Sequence Length
if (currentSeqLength >= array[currentSeqLength])
{
return true;
}
else
{
return false;
}
}
//Not Needed?
boolean isGameOver()
{
if (pushButton(usersInput) == false)
{
return true;
}
else
{
return false;
}
}
String gameOverMessage()
{
return "Game Over";
}
/*public void actionPerformed(ActionEvent event)
{
int input;
}
*/
}