package TicTacToe; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Random; public class TicTacToe extends JFrame implements ActionListener { main main; JFrame frame = new JFrame("Tic Tac Toe"); JPanel title_panel = new JPanel(); JLabel textField = new JLabel(); JButton[] button = new JButton[9]; JPanel ButtonPanel = new JPanel(); Random random = new Random(); private int move = 0; private final int max_move= 9; boolean playerOne; TicTacToe() throws InterruptedException { frame.setSize(600, 600); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLayout(new BorderLayout()); frame.getContentPane().setBackground(Color.GRAY); /// Setting Up The Jpanel for Title textField.setForeground(new Color(25, 255, 0)); textField.setBackground(new Color(25, 25, 25)); textField.setFont(new Font("Helvetica", Font.BOLD, 60)); textField.setHorizontalAlignment(JLabel.CENTER); textField.setText("Tic-Tac-Toe"); textField.setOpaque(true); title_panel.setLayout(new BorderLayout()); title_panel.setBounds(0, 0, 600, 100); title_panel.add(textField); frame.add(title_panel, BorderLayout.NORTH); ButtonPanel.setLayout(new GridLayout(3, 3)); for (int i = 0; i < 9; i++) { button[i] = new JButton(); button[i].setFont(new Font("Fantasy", Font.BOLD, 80)); button[i].setFocusable(false); ButtonPanel.add(button[i]); ButtonPanel.setFocusable(false); button[i].addActionListener(this); } frame.add(ButtonPanel); frame.setVisible(true); Thread.sleep(1000); FirstTurns(); } @Override public void actionPerformed(ActionEvent e) { for (int i = 0 ; i<9 ; i++) { if (e.getSource()==button[i]){ if (playerOne){ if (button[i].getText().equals("")){ button[i].setForeground(Color.GREEN); button[i].setText("X"); move++; playerOne=false; textField.setText("Y Player Turns"); WinnerCheck(); noWinner(); } } else { if (button[i].getText().equals("")){ button[i].setForeground(Color.GREEN); button[i].setText("Y"); move++; playerOne=true; textField.setText("X Player Turns"); WinnerCheck(); noWinner(); } } } } } public void FirstTurns(){ if (random.nextInt(2)==0) { playerOne = true; textField.setText("X Player Turns"); } else{ playerOne = false; textField.setText("Y Player Turns"); } } private void xWins(int a , int b , int c){ button[a].setBackground(Color.GREEN); button[b].setBackground(Color.GREEN); button[c].setBackground(Color.GREEN); for (int i = 0 ;i<9 ; i++){ button[i].setEnabled(false); } textField.setText("XWins"); int result = JOptionPane.showConfirmDialog(null , "Do You Want To Retry"); if (result==0){ restartGame(); } else if (result==1 || result== JOptionPane.CANCEL_OPTION) { System.exit(0); frame.dispose(); } main.playersRecord("X"); } private void restartGame() { for (int i = 0; i < 9; i++) { button[i].setText(""); button[i].setEnabled(true); button[i].setBackground(null); FirstTurns(); } } private void noWinner() { if (move == max_move) { main.playersRecord("Draw"); JOptionPane.showMessageDialog(null, "It's a Draw! Do you want to restart?"); int result = JOptionPane.showConfirmDialog(null, "Its a Draw Wanna Restart"); if (result == JOptionPane.YES_OPTION) { restartGame(); } else { frame.dispose(); } } } private void yWins(int a , int b , int c){ button[a].setBackground(Color.GREEN); button[b].setBackground(Color.GREEN); button[c].setBackground(Color.GREEN); for (int i = 0 ;i<9 ; i++){ button[i].setEnabled(false); } textField.setText("YWins"); int result = JOptionPane.showConfirmDialog(null , "Do You Want To Retry"); if (result==0){ restartGame(); } else if (result==1 || result== JOptionPane.CANCEL_OPTION) { System.exit(0); frame.dispose(); } main.playersRecord("Y"); } private void WinnerCheck(){ if (button[0].getText()=="X" && button[1].getText()=="X" && button[2].getText()=="X"){ xWins(0 , 1 , 2); } if (button[3].getText()=="X" && button[4].getText()=="X" && button[5].getText()=="X"){ xWins(3 , 4 , 5); } if (button[6].getText()=="X" && button[7].getText()=="X" && button[8].getText()=="X"){ xWins(6 , 7 , 8); } if (button[0].getText()=="X" && button[3].getText()=="X" && button[6].getText()=="X"){ xWins(0 , 3 , 6); } if (button[1].getText()=="X" && button[4].getText()=="X" && button[7].getText()=="X"){ xWins(1 , 4 , 7); } if (button[2].getText()=="X" && button[5].getText()=="X" && button[8].getText()=="X"){ xWins(2 , 5 , 8); } if (button[0].getText()=="X" && button[4].getText()=="X" && button[8].getText()=="X"){ xWins(0 , 4 , 8); } if (button[2].getText()=="X" && button[4].getText()=="X" && button[6].getText()=="X"){ xWins(2 , 4 , 6); } //// If Y is the Winner if (button[0].getText()=="Y" && button[1].getText()=="Y" && button[2].getText()=="Y"){ yWins(0 , 1 , 2); } if (button[3].getText()=="Y" && button[4].getText()=="Y" && button[5].getText()=="Y"){ yWins(3 , 4 , 5); } if (button[6].getText()=="Y" && button[7].getText()=="Y" && button[8].getText()=="Y"){ yWins(6 , 7 , 8); } if (button[0].getText()=="Y" && button[3].getText()=="Y" && button[6].getText()=="Y"){ yWins(0 , 3 , 6); } if (button[1].getText()=="Y" && button[4].getText()=="Y" && button[7].getText()=="Y"){ yWins(1 , 4 , 7); } if (button[2].getText()=="Y" && button[5].getText()=="Y" && button[8].getText()=="Y"){ yWins(2 , 5 , 8); } if (button[0].getText()=="Y" && button[4].getText()=="Y" && button[8].getText()=="Y"){ yWins(0 , 4 , 8); } if (button[2].getText()=="Y" && button[4].getText()=="Y" && button[6].getText()=="Y"){ yWins(2 , 4 , 6); } } } package TicTacToe; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; public class main implements ActionListener { String url = "sorry this is private"; String username = "root"; String password = "sorry this is private"; String query = "INSERT INTO player_record (id , playeronename , playertwoname , winner) VALUES (?,?,? ?)"; JTextField textField1 , textField2; main(){ try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFoundException e) { throw new RuntimeException(e); } JFrame frame = new JFrame(); frame.setSize(400, 400); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLayout(null); frame.getContentPane().setBackground(Color.BLACK); frame.setVisible(true); JLabel name1 = new JLabel("Player 1 : "); name1.setBounds(80 , 114 , 100 , 50); name1.setFont(new Font("Helvetica", Font.BOLD, 20)); name1.setForeground(new Color(255, 255, 255)); frame.add(name1); JLabel name2 = new JLabel("Player 2 : "); name2.setBounds(80 , 180 , 100 , 80); name2.setFont(new Font("Helvetica", Font.BOLD, 20)); name2.setForeground(new Color(255, 255, 255)); frame.add(name2); textField1 = new JTextField(); textField1.setBounds(210 , 130 , 100 , 30); textField1.setFocusable(true); frame.add(textField1); textField2 = new JTextField(); textField2.setBounds(210 , 200 , 100 , 30); textField2.setFocusable(true); frame.add(textField2); JButton button = new JButton("Play"); button.setSize(100 , 100); button.setBackground(Color.white); button.setFocusable(false); button.setFont(new Font("Helvetica", Font.BOLD, 20)); button.setBounds(150 , 270 , 100 , 50); button.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { if (e.getSource() == button) { if (textField1.getText().isEmpty() || textField2.getText().isEmpty()) { JOptionPane.showMessageDialog(null, "Fill The Details First", "Title", JOptionPane.WARNING_MESSAGE); } else { SwingUtilities.invokeLater( ()-> { try { new TicTacToe(); } catch (InterruptedException ex){ ex.printStackTrace(); } }); frame.dispose(); } } } }); frame.add(button); } Connection connection; { try { connection = DriverManager.getConnection(url, username, password); System.out.println("Connection SuccessFull"); } catch (SQLException e) { e.printStackTrace(); } } public void playersRecord(String winner){ try { PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setInt(1 ,1); preparedStatement.setString(2 ,textField1.getText()); preparedStatement.setString(3 ,textField2.getText()); preparedStatement.setString(4 ,winner); int lineEffected = preparedStatement.executeUpdate(); if (lineEffected>0){ System.out.println("Insertion Succesfully"); connection.commit(); } else { System.out.println("Nothing Happened"); } } catch (Exception e){ e.printStackTrace(); } finally { try { if (connection != null && !connection.isClosed()) { connection.close(); // Close the database connection System.out.println("Connection closed."); } } catch (SQLException ex) { ex.printStackTrace(); } } } public static void main(String[] args)throws Exception { SwingUtilities.invokeLater(() -> { new main(); }); } @Override public void actionPerformed(ActionEvent e) { } }