Compare commits

...

1 Commits
0.1 ... master

View File

@ -1,115 +1,99 @@
import java.awt.event.ActionEvent; import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; import java.awt.event.ActionListener;
import javax.swing.BoxLayout; import javax.swing.*;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Screen { public class Screen {
static boolean rock = false; static boolean rock = false;
static boolean scissors = false; static boolean scissors = false;
static boolean paper = false; static boolean paper = false;
static int score = 0; //makes the variable and boolean static int score = 0; // Makes the variable and boolean
public static void main(String[] args) { public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); // Set OS theme
} catch (Exception e) {
e.printStackTrace();
}
JFrame frame = new JFrame("rock paper scissors"); JFrame frame = new JFrame("Rock Paper Scissors");
frame.setSize(300,200); frame.setSize(300, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //makes the window and also makes it so when the window is closed the java stops frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton rockbutton = new JButton("rock"); JButton rockbutton = new JButton("Rock");
JButton paperbutton = new JButton("paper"); JButton paperbutton = new JButton("Paper");
JButton scissorsbutton = new JButton("scissors"); JButton scissorsbutton = new JButton("Scissors");
JPanel panel = new JPanel(); JPanel panel = new JPanel();
JLabel Label = new JLabel("play"); //makes the buttons, text, and panel JLabel label = new JLabel("Play");
panel.add(rockbutton); panel.add(rockbutton);
panel.add(paperbutton); panel.add(paperbutton);
panel.add(scissorsbutton); panel.add(scissorsbutton);
panel.add(Label); panel.add(label);
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); // adds everthing to the window and buts it in a form from top to bottom panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
rockbutton.setAlignmentX(JButton.CENTER_ALIGNMENT); rockbutton.setAlignmentX(JButton.CENTER_ALIGNMENT);
paperbutton.setAlignmentX(JButton.CENTER_ALIGNMENT); paperbutton.setAlignmentX(JButton.CENTER_ALIGNMENT);
scissorsbutton.setAlignmentX(JButton.CENTER_ALIGNMENT); scissorsbutton.setAlignmentX(JButton.CENTER_ALIGNMENT);
Label.setAlignmentX(JLabel.CENTER_ALIGNMENT); //sets everyting in the window to the center label.setAlignmentX(JLabel.CENTER_ALIGNMENT);
rockbutton.addActionListener(new ActionListener() {
rockbutton.addActionListener(new ActionListener(){ //sees if you click the button and makes the corresponding boolean true public void actionPerformed(ActionEvent e) {
public void actionPerformed(ActionEvent e){
rock = true; rock = true;
if(rock == true) { //checks if the button is true and if it is then it forces the others to be false and you play your turn scissors = false;
scissors = false; paper = false;
paper = false; Thecomputer.generate(args);
Thecomputer.generate(args); System.out.println("Rock is true");
System.out.println("rock is true"); if (Thecomputer.aipaper) {
if(Thecomputer.aipaper == true){ score -= 1;
score += -1; label.setText("Paper, you lose, score " + score);
Label.setText("paper, you lose, score " + score); } else if (Thecomputer.airock) {
}; label.setText("Rock, tie, score " + score);
if(Thecomputer.airock == true){ } else if (Thecomputer.aiscissors) {
score += 1; score += 1;
Label.setText("rock, tie, score " + score); label.setText("Scissors, you win, score " + score);
}; }
if(Thecomputer.aiscissors == true){
Label.setText("scissors, you win, score " + score);//adds or removes 1 from the score
};
};
}
});
paperbutton.addActionListener(new ActionListener(){ //sees if you click the button and makes the corresponding boolean true
public void actionPerformed(ActionEvent e){
paper = true;
if(paper == true) { //checks if the button is true and if it is then it forces the others to be false and you play your turn
rock = false;
scissors = false;
Thecomputer.generate(args);
System.out.println("paper is true");
if(Thecomputer.aipaper == true){
Label.setText("paper, you tie, score " + score);
};
if(Thecomputer.airock == true){
score += 1;
Label.setText("rock, you win, score " + score);
};
if(Thecomputer.aiscissors == true){
score += -1;
Label.setText("scissors, you lose, score " + score);//adds or removes 1 from the score
};
};
} }
}); });
scissorsbutton.addActionListener(new ActionListener(){ //sees if you click the button and makes the corresponding boolean true paperbutton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e){ public void actionPerformed(ActionEvent e) {
scissors = true; paper = true;
if(scissors == true) { //checks if the button is true and if it is then it forces the others to be false and you play your turn rock = false;
paper = false; scissors = false;
scissors = false; Thecomputer.generate(args);
Thecomputer.generate(args); System.out.println("Paper is true");
System.out.println("Scirrors is true"); if (Thecomputer.aipaper) {
if(Thecomputer.aiscissors == true){ label.setText("Paper, tie, score " + score);
} else if (Thecomputer.airock) {
Label.setText("scissors, you tie, score " + score); score += 1;
}; label.setText("Rock, you win, score " + score);
if(Thecomputer.airock == true){ } else if (Thecomputer.aiscissors) {
score += -1; score -= 1;
Label.setText("rock, you lose, score " + score); label.setText("Scissors, you lose, score " + score);
}; }
if(Thecomputer.aipaper == true){
score += 1;
Label.setText("paper, you win, score " + score); //adds or removes 1 from the score
};
} }
}}); });
scissorsbutton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
scissors = true;
paper = false;
rock = false;
Thecomputer.generate(args);
System.out.println("Scissors is true");
if (Thecomputer.aiscissors) {
label.setText("Scissors, tie, score " + score);
} else if (Thecomputer.airock) {
score -= 1;
label.setText("Rock, you lose, score " + score);
} else if (Thecomputer.aipaper) {
score += 1;
label.setText("Paper, you win, score " + score);
}
}
});
frame.add(panel); frame.add(panel);
frame.setVisible(true);//make it so you can see window frame.setVisible(true);
} }
} }