简单的五子棋操作用两种方法实现

简介: 最近有五子棋的大作业,周折半天才弄明白其中的原理,查阅了许多资料,然后网上的代码只有几篇原创并且注释很少,感觉不好理解。所以感觉有必要分享一下自己的心得

最近有五子棋的大作业,周折半天才弄明白其中的原理,查阅了许多资料,然后网上的代码只有几篇原创并且注释很少,感觉不好理解。所以感觉有必要分享一下自己的心得


本人使用两种方法:


1:(传统方法)鼠标点击事件。大致流程为 定义窗口——从写JPanel中的paint函数(画图由paint实现)——画棋盘——设置数组储存坐标以及是否有棋子——添加鼠标点击事件画棋子(判断鼠标点击的位置离此点最近的那个店的坐标并画棋子)——判断是否有胜利


1)这里说一下paint函数,paint函数定义在那个界面里他会自动执行画图不需要调用,所以你只需要写好约束的事件让他画完棋盘后该什么时候在哪里画棋子。


2)repaint 函数是起到重画作用,你点击过后再最近的那个店需要画棋子,repaint就起到从画的作用


3)本人判断成行的方法是分别定义四个变量代码五子棋个数,当》=5时停止。弹出新的窗口。具体是如果此点左右都有相同颜色的棋子,就吧这个点向左找到一直颜色不同为止,然后从这点向下(右)直接计数。


4)本人的棋子是画出来的,如果追求美观可以用image方法使用下载下来的图片棋子(但是思想一致)。


附上代码和注释:


import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.*;
public class wuziqi extends JFrame {
 void judgle(int a[][],int i,int j)
 {
   //需要定义两个变量(作用相同)一个判断黑棋子,一个判断白棋
  int k=1; int kk=1;//判断横方向
 int l=1;int kl=1;//判断竖方向
 int k1=1;int kk1=1;//判断左上和右下方向
   int k2=1; int kk2=1;//判断左下和右上方向
   //横方向的判断
   int m=i;int n=j;int m1=i;int n1=j;
   int m2=i;int n2=j;
   while(m-1>=0&&a[m-1][j]==1) {m--;}//上下判断
   while(m<18&&a[m 1][j]==1) {k ;m ;} //左右判断
   //
  while(n-1>=0&&a[i][n-1]==1) {n--;}
  while(n<18&&a[i][n 1]==1) {l ;n ;} 
   //左上右下
  while(m1-1>=0&&n1-1>=0&&a[m1-1][n1-1]==1) {m1--;n1--;}
  while(m1<18&&n1<18&&a[m1 1][n1 1]==1) {k1 ;m1 ;n1 ;} 
    //左下右上方向 
 while(m2-1>=0&&n2 1<19&&a[m2-1][n2 1]==1) {m2--;n2 ;}
  while(m2<18&&n2-1>=0&&a[m2 1][n2-1]==1) {k2 ;m2 ;n2--;} 
   m=i; n=j; m1=i; n1=j;
   m2=i; n2=j;
  while(m-1>=0&&a[m-1][j]==2) {m--;}//上下判断
 while(m<18&&a[m 1][j]==2) {kk ;m ;} //左右判断
   //
   while(n-1>=0&&a[i][n-1]==2) {n--;}
   while(n<18&&a[i][n 1]==2) {kl ;n ;} 
   //左上右下
   while(m1-1>=0&&n1-1>=0&&a[m1-1][n1-1]==2) {m1--;n1--;}
   while(m1<18&&n1<18&&a[m1 1][n1 1]==2) {kk1 ;m1 ;n1 ;} 
  //左下右上方向 
   while(m2-1>=0&&n2 1<19&&a[m2-1][n2 1]==2) {m2--;n2 ;}
   while(m2<18&&n2-1>=0&&a[m2 1][n2-1]==2) {kk2 ;m2 ;n2--;}
   if(k>=5||l>=5||k1>=5||k2>=5||kk>=5||kl>=5||kk1>=5||kk2>=5) { 
   setTitle("游戏已结束");JFrame frame=new JFrame ("恭喜获胜");
   Container c=frame.getContentPane();
   c.setLayout(new GridLayout(4,1,0,0) );
   if(a[i][j]==1) {
   JLabel label=new JLabel("恭喜黑色赢了",JLabel.CENTER);
   label.setFont(new Font("宋体",0,35));c.add(label);}
   if(a[i][j]==2) {
    JLabel label=new JLabel("恭喜白色赢了",JLabel.CENTER);
    label.setFont(new Font("宋体",0,35));c.add(label);}
    JButton b1=new JButton("再来一把");
    JButton b2=new JButton("结 束");
    b1.setFocusPainted(false); 
    b2.setFocusPainted(false); 
    c.add(new JLabel(""));  
    c.add(b1);
    b1.setBackground(Color.YELLOW);
    c.add(b2);
    c.setBackground(Color.red);
    frame.setSize(300, 300);
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);//顺序问题
    frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); 
    b1.addActionListener(new ActionListener() {//建立监听事件
     public void actionPerformed(ActionEvent e) { if(b1==e.getSource()) 
    for(int i=0;i<19;i )
    for(int j=0;j<19;j )
    {a[i][j]=0;}
    frame.dispose();repaint(); } });//关闭当前窗口
    b2.addActionListener(new ActionListener() {//建立监听事件
    public void actionPerformed(ActionEvent e) {if(b2==e.getSource())
System.exit(0);//关闭所有
               } });    setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); }
}
public wuziqi() {
    setTitle("这是一个五子棋游戏");
    setVisible(true);
    Container c = getContentPane();
    DrawPanel1 jp1 = new DrawPanel1();
    c.add(jp1);
    setSize(1000, 1010);
    jp1.setBackground(new Color(60,150,200));//随便赋值一个背景颜色
    this.setResizable(false);
    this.setLocationRelativeTo(null);//剧中放置,要在setsize后面放置
    setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    c.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    {
    int x=0,y=0;
    for (int i = 0; i < 19; i ) {
    if (jp1.b4[i][2] >e.getX())
    {if(i>0) { if(e.getX()-jp1.b4[i-1][2] e.getY())//找到点击的点右侧的最近那个坐标值
    {
    if(i>0) { if(e.getY()-jp1.b3[2][i-1]=0&&i<=18) {//横方向的判断
   int m=i;int n=j;int m1=i;int n1=j;
   int m2=i;int n2=j;
   while(m-1>=0&&a[m-1][j]==true) {m--;}//上下判断
   while(m<18&&a[m 1][j]==true) {k ;m ;} //左右判断
   //
   while(n-1>=0&&a[i][n-1]==true) {n--;}
   while(n<18&&a[i][n 1]==true) {l ;n ;} 
   //左上右下
    while(m1-1>=0&&n1-1>=0&&a[m1-1][n1-1]==true) {m1--;n1--;}
    while(m1<18&&n1<18&&a[m1 1][n1 1]==true) {k1 ;m1 ;n1 ;} 
    //左下右上方向 
   while(m2-1>=0&&n2 1<19&&a[m2-1][n2 1]==true) {m2--;n2 ;}
   while(m2<18&&n2-1>=0&&a[m2 1][n2-1]==true) {k2 ;m2 ;n2--;} 
   if(k>=5||l>=5||k1>=5||k2>5) { 
      setTitle("游戏已结束");JFrame frame=new JFrame ("恭喜获胜");
      Container c=frame.getContentPane();
      c.setLayout(new GridLayout(4,1,0,0) );
      JLabel label=new JLabel("恭喜你赢了",JLabel.CENTER);
      label.setFont(new Font("宋体",0,35));
      JButton b1=new JButton("再来一把");
      JButton b2=new JButton("结 束");
      b1.setFocusPainted(false); 
      b2.setFocusPainted(false); 
      c.add(new JLabel(""));
      c.add(label);
      c.add(b1);
      b1.setBackground(Color.YELLOW);
      c.add(b2);
      c.setBackground(Color.red);
      //c.add(b1);
      //c.add(b2);
      frame.setSize(300, 300);
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);//顺序问题
      frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); 
  b1.addActionListener(new ActionListener() {//建立监听事件
   public void actionPerformed(ActionEvent e) { if(b1==e.getSource()) 
       for(int i=0;i<19;i )
      for(int j=0;j<19;j )
      {judgle[i][j]=false; black[i][j]=false; 
       white[i][j]=false;b[i][j].setIcon(null); frame.dispose();repaint(); }
           } });
  b2.addActionListener(new ActionListener() {//建立监听事件
   public void actionPerformed(ActionEvent e) {if(b2==e.getSource())System.exit(0);
             } });   
      //System.exit(0);//结束
   }
    }
  public wuziqi2()
  {
    setTitle("这是一个五子棋游戏");
    //Container c=getContentPane();
    //setLayout(new FlowLayout(2,10,10));//流布局管理器
    DrawPanel1 d1=new DrawPanel1();
    d1.setSize(950,950);
    d1.setLayout(new GridLayout(19,19,0,0));//网格布局19行19列
    d1.setBackground(new Color(0,200,200));
    setResizable(false);
    add(d1);
    for(int i=0;i<19;i ) {
    for(int j=0;j<19;j ) {b[i][j]=new JButton("");d1.add(b[i][j]); b[i][j].setContentAreaFilled(false);//透明
    b[i][j].setBorderPainted(false);//取消边框
    b[i][j].setFocusPainted(false); //取消焦点
    }}
    for( int i=0;i<19;i )
    { for(int j=0;j<19;j )
      b[i][j].addActionListener(new ActionListener() {//建立监听事件
         public void actionPerformed(ActionEvent e)
         { for( int i=0;i<19;i ){
           for(int j=0;j<19;j )
           if(!judgle[i][j])
          if(e.getSource()==b[i][j])
          { 
          if(n%2==0) {  drawlconw icon = new drawlconw(40, 40);white[i][j]=true;//有bai棋子
          b[i][j].setIcon(icon);judgle1(white,i,j);}
          if(n%2!=0) {  drawlconb icon = new drawlconb(40, 40);black[i][j]=true;//有hei棋子
          b[i][j].setIcon(icon);judgle1(black,i,j);}
          n ;//奇数偶数的计量方式,没有特别意义
          judgle[i][j]=true;//有了棋子
         }}
         }
       });
    }
    setSize(950,950);
    setLocationRelativeTo(null);//要放在sitsize后面,不然整个图形就在
    setVisible(true);
    setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
  }
  public static void main(String[] args)
  {
    wuziqi2 f=  new wuziqi2();
  }
static  class drawlconw implements Icon{ // 实现Icon接口白色棋子
    private int width; // 声明图标的宽
    private int height; // 声明图标的长
    public int getIconHeight() { // 实现getIconHeight()方法
      return this.height;
    }
    public int getIconWidth() { // 实现getIconWidth()方法
      return this.width;
    }
    public drawlconw(int width, int height) { // 定义构造方法
      this.width = width;
      this.height = height;
    }
    // 实现paintIcon()方法
    public void paintIcon(Component arg0, Graphics arg1, int x, int y) {
      arg1.setColor(Color.white);
      arg1.fillOval(x, y, width, height); // 绘制一个圆形
    }
}
static  class drawlconb implements Icon{ // 实现Icon接口白色棋子
  private int width; // 声明图标的宽
  private int height; // 声明图标的长
  public int getIconHeight() { // 实现getIconHeight()方法
    return this.height;
  }
  public int getIconWidth() { // 实现getIconWidth()方法
    return this.width;
  }
  public drawlconb(int width, int height) { // 定义构造方法
    this.width = width;
    this.height = height;
  }
  // 实现paintIcon()方法
  public void paintIcon(Component arg0, Graphics arg1, int x, int y) {
    arg1.setColor(Color.black);
    arg1.fillOval(x, y, width, height); // 绘制一个圆形 
  }
}
class DrawPanel1 extends JPanel {
  // Graphics g=getGraphics();
  public void paint(Graphics g) {
    super.paint(g);
    for ( int i = 25; i < 910; i = i 48) {//画竖线
      g.drawLine(30, i, 912, i);
      g.setColor(Color.black);
    }
    for (int i = 30; i <= 925; i = i 49) {//画横线
      g.drawLine(i, 25, i, 890);
    }
  }
}
}


aHR0cDovL2ltZy5ibG9nLmNzZG4ubmV0LzIwMTcxMjEzMTIxODA4MDk5.png


本人菜鸡刚学java,有很多理解不好的地方,忘大佬指出!

目录
相关文章
|
3月前
|
数据可视化 Java
使用ChatGPT实现可视化操作扫雷小游戏 【java代码实现】
这篇文章介绍了使用Java语言和Swing框架实现的扫雷小游戏的详细代码和实现过程。
使用ChatGPT实现可视化操作扫雷小游戏 【java代码实现】
|
6月前
俄罗斯方块游戏开发实战教程(7):消除判断和处理
俄罗斯方块游戏开发实战教程(7):消除判断和处理
78 0
|
11月前
|
存储
扫雷小游戏的优化!(不仅仅是展开功能哦)
扫雷小游戏的优化!(不仅仅是展开功能哦)
89 0
|
C语言
井字棋的简单实现
井字棋的简单实现
56 0
Java随机点名和猜拳游戏运行代码
Java随机点名和猜拳游戏运行代码
[学习][笔记] qt5 从入门到入坟:<三>添加动作
[学习][笔记] qt5 从入门到入坟:<三>添加动作
|
存储 程序员 Python
Python版飞机大战游戏的设计(一)-----敌机出场(2)
Python版飞机大战游戏的设计(一)-----敌机出场
|
存储 数据可视化
扫雷游戏简单实现
扫雷游戏简单实现
|
小程序
学习做游戏的最有效的方法,你的方法用对了吗?
我遇到很多的想要学习做游戏,但是最终因为各种各样的原因半途而废的人,“半途而废”并不是一件多么稀奇的事,大概我们每个人都是“半途而废”的专家。但是,投入一定的时间和精力,最终却没有学成,会让人有很强的挫败感。如果再三尝试,都没有学成的话,那么这种挫败感是足以让一个人彻底放弃的。
134 0