目录

java 五子棋

目录
警告
本文最后更新于 2022-06-24,文中内容可能已过时。
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.JPanel;

/*
 *main方法创建了ChessFrame类的一个实例对象(cf),
 *并启动屏幕显示显示该实例对象。
 **/
@SuppressWarnings("serial")
public class FiveChessAppletDemo {
      @SuppressWarnings( "deprecation")
       public static void main(String args[]){
            ChessFrame cf = new ChessFrame();
            cf.show();
      }
}

/*
 *类ChessFrame主要功能是创建五子棋游戏主窗体和菜单
 **/
class ChessFrame extends JFrame implements ActionListener {
       private String[] strsize={"20x15","30x20", "40x30"};
       private String[] strmode={"人机对弈 "," 人人对弈 "};
       public static boolean iscomputer=true,checkcomputer= true;
       private int width,height;
       private ChessModel cm;
       private MainPanel mp;
      
       //构造五子棋游戏的主窗体
       public ChessFrame() {
             this.setTitle( "五子棋游戏");
            cm= new ChessModel(1);
            mp= new MainPanel(cm);
            Container con= this.getContentPane();
            con.add(mp, "Center");
             this.setResizable( false);
             this.addWindowListener( new ChessWindowEvent());
            MapSize( 20,15 );
            JMenuBar mbar = new JMenuBar();
             this.setJMenuBar(mbar);
            JMenu gameMenu = new JMenu("游戏 ");
            mbar.add(makeMenu(gameMenu, new Object[] {
                   "开局", "棋盘" ,"模式 ", null , "退出 "
                  }, this));
            JMenu lookMenu = new JMenu("视图 ");
            mbar.add(makeMenu(lookMenu, new Object[] {
                   "Metal","Motif" ,"Windows"
                  }, this));
            JMenu helpMenu = new JMenu("帮助 ");
            mbar.add(makeMenu(helpMenu, new Object[] {
                   "关于"
            }, this));
      }

       //构造五子棋游戏的主菜单
       public  JMenu makeMenu(Object parent, Object items[], Object target){
            JMenu m = null;
             if(parent instanceof JMenu)
                  m = (JMenu)parent;
             else if (parent instanceof String)
                  m = new JMenu((String)parent);
             else
                   return null ;
             for(int i = 0; i < items.length; i++)
                   if(items[i] == null)
                        m.addSeparator();
                   else if (items[i] == "棋盘" ){
                        JMenu jm = new JMenu("棋盘 ");
                        ButtonGroup group= new ButtonGroup();
                        JRadioButtonMenuItem rmenu;
                         for (int j=0;j<strsize.length;j++){
                              rmenu=makeRadioButtonMenuItem(strsize[j],target);
                               if (j==0 )
                                    rmenu.setSelected( true);
                              jm.add(rmenu);
                              group.add(rmenu);
                        }
                        m.add(jm);
                  } else if (items[i] == "模式" ){
                        JMenu jm = new JMenu("模式 ");
                        ButtonGroup group= new ButtonGroup();
                        JRadioButtonMenuItem rmenu;
                         for (int h=0;h<strmode.length;h++){
                              rmenu=makeRadioButtonMenuItem(strmode[h],target);
                               if(h==0 )
                                    rmenu.setSelected( true);
                              jm.add(rmenu);
                              group.add(rmenu);
                        }
                        m.add(jm);
                  } else
                        m.add(makeMenuItem(items[i], target));
             return m;
      }
      
       //构造五子棋游戏的菜单项
       public  JMenuItem makeMenuItem(Object item, Object target){
            JMenuItem r = null;
             if(item instanceof String)
                  r = new JMenuItem((String)item);
             else if (item instanceof JMenuItem)
                  r = (JMenuItem)item;
             else
                   return null ;
             if(target instanceof ActionListener)
                  r.addActionListener((ActionListener)target);
             return r;
      }
      
       //构造五子棋游戏的单选按钮式菜单项
       public  JRadioButtonMenuItem makeRadioButtonMenuItem(
      Object item, Object target){
      JRadioButtonMenuItem r = null;
      if(item instanceof String)
            r = new JRadioButtonMenuItem((String)item);
      else if(item instanceof JRadioButtonMenuItem)
            r = (JRadioButtonMenuItem)item;
      else
             return null ;
      if(target instanceof ActionListener)
            r.addActionListener((ActionListener)target);
      return r;
    }
   
    public void MapSize(int w,int h){
      setSize(w * 20+50 , h * 20+ 100 );
      if( this.checkcomputer)
             this.iscomputer= true;
      else
             this.iscomputer= false;
      mp.setModel(cm);
      mp.repaint();
    }
   
    public boolean getiscomputer(){
      return this.iscomputer;
    }
   
    public void restart(){
      int modeChess = cm.getModeChess();
      if(modeChess <= 3 && modeChess >= 1){
            cm = new ChessModel(modeChess);
            MapSize(cm.getWidth(),cm.getHeight());
      }else{
            System.out.println( "\u81EA\u5B9A\u4E49" );
      }
    }
   
    public void actionPerformed(ActionEvent e){
      String arg=e.getActionCommand();
      try{
             if (arg.equals("Windows"))
                  UIManager.setLookAndFeel(
                         "com.sun.java.swing.plaf.windows.WindowsLookAndFeel" );
             else if (arg.equals("Motif"))
                        UIManager.setLookAndFeel(
                               "com.sun.java.swing.plaf.motif.MotifLookAndFeel" );
                   else
                        UIManager.setLookAndFeel(
                               "javax.swing.plaf.metal.MetalLookAndFeel" );
                  SwingUtilities.updateComponentTreeUI( this);
            } catch(Exception ee){}
             if(arg.equals("20x15")){
                   this.width= 20;
                   this.height= 15;
                  cm= new ChessModel(1);
                  MapSize( this.width, this.height);
                  SwingUtilities.updateComponentTreeUI( this);
            }
             if(arg.equals("30x20")){
                   this.width= 30;
                   this.height= 20;
                  cm= new ChessModel(2);
                  MapSize( this.width, this.height);
                  SwingUtilities.updateComponentTreeUI( this);
            }
             if(arg.equals("40x30")){
                   this.width= 40;
                   this.height= 30;
                  cm= new ChessModel(3);
                  MapSize( this.width, this.height);
                  SwingUtilities.updateComponentTreeUI( this);
            }
             if(arg.equals("人机对弈 ")){
                   this.checkcomputer= true;
                   this.iscomputer= true;
                  cm= new ChessModel(cm.getModeChess());
                  MapSize(cm.getWidth(),cm.getHeight());
                  SwingUtilities.updateComponentTreeUI( this);
            }
             if(arg.equals("人人对弈 ")){
                   this.checkcomputer= false;
                   this.iscomputer= false;
                  cm= new ChessModel(cm.getModeChess());
                  MapSize(cm.getWidth(),cm.getHeight());
                  SwingUtilities.updateComponentTreeUI( this);
            }
             if(arg.equals("开局 ")){
                  restart();
            }
             if(arg.equals("关于 "))
                  JOptionPane.showMessageDialog( this, " 五子棋游戏测试版本 ", " 关于", 0);
             if(arg.equals("退出 "))
                  System.exit( 0);
      }
}

/*
 *类ChessModel实现了整个五子棋程序算法的核心
 */
class ChessModel {
       //棋盘的宽度、高度、棋盘的模式(如 20×15)
       private int width,height,modeChess;
       //棋盘方格的横向、纵向坐标
       private int x=0,y= 0;
       //棋盘方格的横向、纵向坐标所对应的棋子颜色,
       //数组arrMapShow只有 3个值:1, 2,3, -5,
       //其中1代表该棋盘方格上下的棋子为黑子,
       //2代表该棋盘方格上下的棋子为白子,
       //3代表为该棋盘方格上没有棋子,
       //-5代表该棋盘方格不能够下棋子
       private int [][] arrMapShow;
       //交换棋手的标识,棋盘方格上是否有棋子的标识符
       private boolean isOdd,isExist;

       public ChessModel() {}
      
       //该构造方法根据不同的棋盘模式( modeChess)来构建对应大小的棋盘
       public ChessModel(int modeChess){
             this.isOdd= true;
             if(modeChess == 1){
                  PanelInit( 20, 15 , modeChess);
            }
             if(modeChess == 2){
                  PanelInit( 30, 20 , modeChess);
            }
             if(modeChess == 3){
                  PanelInit( 40, 30 , modeChess);
            }
      }
      
       //按照棋盘模式构建棋盘大小
       private void PanelInit(int width, int height, int modeChess){
             this.width = width;
             this.height = height;
             this.modeChess = modeChess;
            arrMapShow = new int [width+1][height+ 1];
             for(int i = 0; i <= width; i++){
                   for(int j = 0; j <= height; j++){
                        arrMapShow[i][j] = - 5;
                  }
            }
      }
      
       //获取是否交换棋手的标识符
       public boolean getisOdd(){
             return this .isOdd;
      }

       //设置交换棋手的标识符
       public void setisOdd(boolean isodd){
             if(isodd)
                   this.isOdd= true;
             else
                   this.isOdd= false;
      }
      
       //获取某棋盘方格是否有棋子的标识值
       public boolean getisExist(){
             return this .isExist;
      }
      
       //获取棋盘宽度
       public int getWidth(){
             return this .width;
      }
      
       //获取棋盘高度
       public int getHeight(){
             return this .height;
      }
      
       //获取棋盘模式
       public int getModeChess(){
             return this .modeChess;
      }

       //获取棋盘方格上棋子的信息
       public int [][] getarrMapShow(){
             return arrMapShow;
      }

       //判断下子的横向、纵向坐标是否越界
       private boolean badxy(int x, int y){
             if(x >= width+20 || x < 0)
                   return true ;
             return y >= height+20 || y < 0;
      }

       //计算棋盘上某一方格上八个方向棋子的最大值,
       //这八个方向分别是:左、右、上、下、左上、左下、右上、右下
       public boolean chessExist(int i, int j){
             if(this .arrMapShow[i][j]==1 || this.arrMapShow[i][j]==2)
                   return true ;
             return false ;
      }

       //判断该坐标位置是否可下棋子
       public void readyplay(int x, int y){
             if(badxy(x,y))
                   return;
             if (chessExist(x,y))
                   return;
             this.arrMapShow[x][y]= 3;
      }

       //在该坐标位置下棋子
       public void play(int x, int y){
             if(badxy(x,y))
                   return;
             if(chessExist(x,y)){
                   this.isExist= true;
                   return;
            } else
                   this.isExist= false;
             if(getisOdd()){
                  setisOdd( false);
             this.arrMapShow[x][y]= 1;
            } else{
                  setisOdd( true);
                   this.arrMapShow[x][y]= 2;
            }
      }

       //计算机走棋
       /*
       * 说明:用穷举法判断每一个坐标点的四个方向的的最大棋子数,
       * 最后得出棋子数最大值的坐标,下子
       **/
       public void computerDo(int width, int height){
             int max_black,max_white,max_temp,max=0;
            setisOdd( true);
            System.out.println( "计算机走棋 ...");
             for(int i = 0; i <= width; i++){
                   for(int j = 0; j <= height; j++){
                         if(!chessExist(i,j)){//算法判断是否下子
                              max_white=checkMax(i,j, 2);// 判断白子的最大值
                              max_black=checkMax(i,j, 1);// 判断黑子的最大值
                              max_temp=Math.max(max_white,max_black);
                               if(max_temp>max){
                                    max=max_temp;
                                     this.x=i;
                                     this.y=j;
                              }
                        }
                  }
            }
            setX( this.x);
            setY( this.y);
             this.arrMapShow[ this.x][ this.y]= 2;
      }
      
       //记录电脑下子后的横向坐标
       public void setX(int x){
             this.x=x;
      }
      
       //记录电脑下子后的纵向坐标
       public void setY(int y){
             this.y=y;
      }
      
       //获取电脑下子的横向坐标
       public int getX(){
             return this .x;
      }
      
       //获取电脑下子的纵向坐标
       public int getY(){
             return this .y;
      }

       //计算棋盘上某一方格上八个方向棋子的最大值,
       //这八个方向分别是:左、右、上、下、左上、左下、右上、右下
       public int checkMax(int x, int y,int black_or_white){
             int num=0 ,max_num,max_temp=0;
             int x_temp=x,y_temp=y;
             int x_temp1=x_temp,y_temp1=y_temp;
             //judge right
             for(int i=1;i< 5;i++){
                  x_temp1+= 1;
                   if(x_temp1>this.width)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             //judge left
            x_temp1=x_temp;
             for(int i=1;i< 5;i++){
                  x_temp1-= 1;
                   if(x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             if(num<5)
                  max_temp=num;

             //judge up
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 0;
             for(int i=1;i< 5;i++){
                  y_temp1-= 1;
                   if(y_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             //judge down
            y_temp1=y_temp;
             for(int i=1;i< 5;i++){
                  y_temp1+= 1;
                   if(y_temp1>this.height)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             if(num>max_temp&&num<5)
                  max_temp=num;

             //judge left_up
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 0;
             for(int i=1;i< 5;i++){
                  x_temp1-= 1;
                  y_temp1-= 1;
                   if(y_temp1<0 || x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             //judge right_down
            x_temp1=x_temp;
            y_temp1=y_temp;
             for(int i=1;i< 5;i++){
                  x_temp1+= 1;
                  y_temp1+= 1;
                   if(y_temp1>this.height || x_temp1>this.width)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             if(num>max_temp&&num<5)
                  max_temp=num;

             //judge right_up
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 0;
             for(int i=1;i< 5;i++){
                  x_temp1+= 1;
                  y_temp1-= 1;
                   if(y_temp1<0 || x_temp1>this.width)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             //judge left_down
            x_temp1=x_temp;
            y_temp1=y_temp;
             for(int i=1;i< 5;i++){
                  x_temp1-= 1;
                  y_temp1+= 1;
                   if(y_temp1>this.height || x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==black_or_white)
                        num++;
                   else
                         break;
            }
             if(num>max_temp&&num<5)
                  max_temp=num;
            max_num=max_temp;
             return max_num;
      }

       //判断胜负
       public boolean judgeSuccess(int x, int y,boolean isodd){
             int num=1 ;
             int arrvalue;
             int x_temp=x,y_temp=y;
             if(isodd)
                  arrvalue= 2;
             else
                  arrvalue= 1;
             int x_temp1=x_temp,y_temp1=y_temp;
             //判断右边
             for(int i=1;i< 6;i++){
                  x_temp1+= 1;
                   if(x_temp1>this.width)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             //判断左边
            x_temp1=x_temp;
             for(int i=1;i< 6;i++){
                  x_temp1-= 1;
                   if(x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             if(num==5 )
                   return true ;

             //判断上方
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 1;
             for(int i=1;i< 6;i++){
                  y_temp1-= 1;
                   if(y_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             //判断下方
            y_temp1=y_temp;
             for(int i=1;i< 6;i++){
                  y_temp1+= 1;
                   if(y_temp1>this.height)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             if(num==5 )
                   return true ;

             //判断左上
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 1;
             for(int i=1;i< 6;i++){
                  x_temp1-= 1;
                  y_temp1-= 1;
                   if(y_temp1<0 || x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             //判断右下
            x_temp1=x_temp;
            y_temp1=y_temp;
             for(int i=1;i< 6;i++){
            x_temp1+= 1;
            y_temp1+= 1;
             if(y_temp1>this.height || x_temp1>this.width)
                   break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             if(num==5 )
                   return true ;

             //判断右上
            x_temp1=x_temp;
            y_temp1=y_temp;
            num= 1;
             for(int i=1;i< 6;i++){
                  x_temp1+= 1;
                  y_temp1-= 1;
                   if(y_temp1<0 || x_temp1>this.width)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             //判断左下
            x_temp1=x_temp;
            y_temp1=y_temp;
             for(int i=1;i< 6;i++){
                  x_temp1-= 1;
                  y_temp1+= 1;
                   if(y_temp1>this.height || x_temp1<0)
                         break;
                   if(this .arrMapShow[x_temp1][y_temp1]==arrvalue)
                        num++;
                   else
                         break;
            }
             if(num==5 )
                   return true ;
             return false ;
      }

       //赢棋后的提示
       public void showSuccess(JPanel jp){
            JOptionPane.showMessageDialog(jp, "你赢了,好厉害!", "win",
                  JOptionPane.INFORMATION_MESSAGE);
      }
      
       //输棋后的提示
       public void showDefeat(JPanel jp){
            JOptionPane.showMessageDialog(jp, "你输了,请重新开始!", "lost",
                  JOptionPane.INFORMATION_MESSAGE);
      }
}

/*
 *类MainPanel主要完成如下功能:
 *1、构建一个面板,在该面板上画上棋盘;
 *2、处理在该棋盘上的鼠标事件(如鼠标左键点击、鼠标右键点击、鼠标拖动等)
 **/
class MainPanel extends JPanel
       implements MouseListener,MouseMotionListener{
       private int width,height;//棋盘的宽度和高度
       private ChessModel cm;
      
       //根据棋盘模式设定面板的大小
      MainPanel(ChessModel mm){
            cm=mm;
            width=cm.getWidth();
            height=cm.getHeight();
            addMouseListener( this);
      }
   
    //根据棋盘模式设定棋盘的宽度和高度
       public void setModel(ChessModel mm){
            cm = mm;
            width = cm.getWidth();
            height = cm.getHeight();
      }

       //根据坐标计算出棋盘方格棋子的信息(如白子还是黑子),
       //然后调用draw方法在棋盘上画出相应的棋子
       public void paintComponent(Graphics g){
             super.paintComponent(g);
             for(int j = 0; j <= height; j++){
                   for(int i = 0; i <= width; i++){
                         int v = cm.getarrMapShow()[i][j];
                        draw(g, i, j, v);
                  }
            }
      }

       //根据提供的棋子信息(颜色、坐标)画棋子
       public void draw(Graphics g, int i, int j, int v){
             int x = 20 * i+20;
             int y = 20 * j+20;
             //画棋盘
             if(i!=width && j!=height){
                  g.setColor(Color.white);
                  g.drawRect(x,y, 20,20 );
            }
             //画黑色棋子
             if(v == 1 ){
                  g.setColor(Color.gray);
                  g.drawOval(x- 8,y-8 ,16,16);
                  g.setColor(Color.black);
                  g.fillOval(x- 8,y-8 ,16,16);
            }
             //画白色棋子
             if(v == 2 ){
                  g.setColor(Color.gray);
                  g.drawOval(x- 8,y-8 ,16,16);
                  g.setColor(Color.white);
                  g.fillOval(x- 8,y-8 ,16,16);
            }
             if(v ==3 ){
                  g.setColor(Color.cyan);
                  g.drawOval(x- 8,y-8 ,16,16);
            }
      }

       //响应鼠标的点击事件,根据鼠标的点击来下棋,
       //根据下棋判断胜负等
       public void mousePressed(MouseEvent evt){
             int x = (evt.getX()-10) / 20;
             int y = (evt.getY()-10) / 20;
            System.out.println(x+ " "+y);
             if (evt.getModifiers()==MouseEvent.BUTTON1_MASK){
                  cm.play(x,y);
                  System.out.println(cm.getisOdd()+ " "+cm.getarrMapShow()[x][y]);
                  repaint();
                   if(cm.judgeSuccess(x,y,cm.getisOdd())){
                        cm.showSuccess( this);
                        evt.consume();
                        ChessFrame.iscomputer= false;
                  }
                   //判断是否为人机对弈
                   if(ChessFrame.iscomputer&&!cm.getisExist()){
                        cm.computerDo(cm.getWidth(),cm.getHeight());
                        repaint();
                         if(cm.judgeSuccess(cm.getX(),cm.getY(),cm.getisOdd())){
                              cm.showDefeat( this);
                              evt.consume();
                        }
                  }
            }
      }

       public void mouseClicked(MouseEvent evt){}
       public void mouseReleased(MouseEvent evt){}
       public void mouseEntered(MouseEvent mouseevt){}
       public void mouseExited(MouseEvent mouseevent){}
       public void mouseDragged(MouseEvent evt){}
   
    //响应鼠标的拖动事件
       public void mouseMoved(MouseEvent moveevt){
             int x = (moveevt.getX()-10) / 20;
             int y = (moveevt.getY()-10) / 20;
            cm.readyplay(x,y);
            repaint();
      }
}

class ChessWindowEvent extends WindowAdapter{
       public void windowClosing(WindowEvent e){
            System.exit( 0);
      }

      ChessWindowEvent(){}
}