问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

网上下了一个java五子棋的源代码,有很多java文件,请问怎么编译成游戏?makefile?

发布网友 发布时间:2022-05-26 13:04

我来回答

2个回答

热心网友 时间:2023-10-18 12:23

//不懂的可Q464605372

import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
import java.awt.Color;

public class GoBang extends Applet implements ActionListener, MouseListener,
MouseMotionListener, ItemListener {
int color = 0;// 旗子的颜色标识 0:白子 1:黑子

boolean isStart = false;// 游戏开始标志

int bodyArray[][] = new int[16][16]; // 设置棋盘棋子状态 0 无子 1 白子 2 黑子

Button b1 = new Button("游戏开始");

Button b2 = new Button("重置游戏");

Label lblWin = new Label(" ");

Checkbox ckbHB[] = new Checkbox[2];

CheckboxGroup ckgHB = new CheckboxGroup();

public void init() {
setLayout(null);

addMouseListener(this);
add(b1);
b1.setBounds(330, 50, 80, 30);
b1.addActionListener(this);
add(b2);
b2.setBounds(330, 90, 80, 30);
b2.addActionListener(this);
ckbHB[0] = new Checkbox("白子先", ckgHB, false);
ckbHB[0].setBounds(320, 20, 60, 30);
ckbHB[1] = new Checkbox("黑子先", ckgHB, false);
ckbHB[1].setBounds(380, 20, 60, 30);
add(ckbHB[0]);
add(ckbHB[1]);
ckbHB[0].addItemListener(this);
ckbHB[1].addItemListener(this);
add(lblWin);
lblWin.setBounds(330, 130, 80, 30);

gameInit();
this.resize(new Dimension(450,350));
}

public void itemStateChanged(ItemEvent e) {
if (ckbHB[0].getState()) // 选择黑子先还是白子先
{
color = 0;
} else {
color= 1;
}
}

public void actionPerformed(ActionEvent e) {
if (e.getSource() == b1) {
gameStart();
} else {
reStart();
}
}

public void mousePressed(MouseEvent e) {
}

public void mouseClicked(MouseEvent e) {
int x1, y1;
x1 = e.getX();
y1 = e.getY();
if (e.getX() < 20 || e.getX() > 300 || e.getY() < 20 || e.getY() > 300) {
return;
}

if (x1 % 20 > 10) {
x1 += 20;
}

if (y1 % 20 > 10) {
y1 += 20;
}

x1 = x1 / 20 * 20;
y1 = y1 / 20 * 20;
setDown(x1, y1);

}

public void mouseEntered(MouseEvent e) {
}

public void mouseExited(MouseEvent e) {
}

public void mouseReleased(MouseEvent e) {
}

public void mouseDragged(MouseEvent e) {
}

public void mouseMoved(MouseEvent e) {
}

public void paint(Graphics g) {
g.setColor(Color.lightGray);
g.fill3DRect(10, 10, 300, 300, true);
g.setColor(Color.black);
for (int i = 1; i < 16; i++) {
g.drawLine(20, 20 * i, 300, 20 * i);
g.drawLine(20 * i, 20, 20 * i, 300);
}
}

public void setDown(int x, int y) // 落子
{
if (!isStart) // 判断游戏未开始
{
return;
}

if (bodyArray[x / 20][y / 20] != 0) {
return;
}
Graphics g = getGraphics();

if (color == 1)// 判断黑子还是白子
{
g.setColor(Color.black);
color = 0;
} else {
g.setColor(Color.white);
color = 1;
}

g.fillOval(x - 10, y - 10, 20, 20);

bodyArray[x / 20][y / 20] = color + 1;

if (gameWin1(x / 20, y / 20)) // 判断输赢
{
lblWin.setText(startColor(color) + "赢了!");
isStart = false;
}

if (gameWin2(x / 20, y / 20)) // 判断输赢
{
lblWin.setText(startColor(color) + "赢了!");
isStart = false;
}

if (gameWin3(x / 20, y / 20)) // 判断输赢
{
lblWin.setText(startColor(color) + "赢了!");
isStart = false;
}

if (gameWin4(x / 20, y / 20)) // 判断输赢
{
lblWin.setText(startColor(color) + "赢了!");
isStart = false;
}
}

public String startColor(int x) {
if (x == 0) {
return "黑子";
} else {
return "白子";
}
}

public void gameStart() // 游戏开始
{
isStart = true;
enableGame(false);
b2.setEnabled(true);
}

public void gameInit() // 游戏开始初始化
{
isStart = false;
enableGame(true);
b2.setEnabled(false);
ckbHB[0].setState(true);

for (int i = 0; i < 16; i++) {
for (int j = 0; j < 16; j++) {
bodyArray[i][j] = 0;
}
}
lblWin.setText("");
}

public void reStart() // 游戏重新开始
{
repaint();
gameInit();
}

public void enableGame(boolean e) // 设置组件状态
{
b1.setEnabled(e);
b2.setEnabled(e);
ckbHB[0].setEnabled(e);
ckbHB[1].setEnabled(e);
}

public boolean gameWin1(int x, int y) // 判断输赢 横
{
int x1, y1, t = 1;
x1 = x;
y1 = y;

for (int i = 1; i < 5; i++) {
if (x1 > 15) {
break;
}
if (bodyArray[x1 + i][y1] == bodyArray[x][y]) {
t += 1;
} else {
break;
}

}

for (int i = 1; i < 5; i++) {
if (x1 < 1) {
break;
}

if (bodyArray[x1 - i][y1] == bodyArray[x][y]) {
t += 1;
} else {
break;
}
}

if (t > 4) {
return true;
} else {
return false;
}
}

public boolean gameWin2(int x, int y) // 判断输赢 竖
{
int x1, y1, t = 1;
x1 = x;
y1 = y;

for (int i = 1; i < 5; i++) {
if (x1 > 15) {
break;
}
if (bodyArray[x1][y1 + i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}

}

for (int i = 1; i < 5; i++) {
if (x1 < 1) {
break;
}

if (bodyArray[x1][y1 - i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}
}

if (t > 4) {
return true;
} else {
return false;
}
}

public boolean gameWin3(int x, int y) // 判断输赢 左斜
{
int x1, y1, t = 1;
x1 = x;
y1 = y;

for (int i = 1; i < 5; i++) {
if (x1 > 15) {
break;
}
if (bodyArray[x1 + i][y1 - i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}

}

for (int i = 1; i < 5; i++) {
if (x1 < 1) {
break;
}

if (bodyArray[x1 - i][y1 + i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}
}

if (t > 4) {
return true;
} else {
return false;
}
}

public boolean gameWin4(int x, int y) // 判断输赢 左斜
{
int x1, y1, t = 1;
x1 = x;
y1 = y;

for (int i = 1; i < 5; i++) {
if (x1 > 15) {
break;
}
if (bodyArray[x1 + i][y1 + i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}

}

for (int i = 1; i < 5; i++) {
if (x1 < 1) {
break;
}

if (bodyArray[x1 - i][y1 - i] == bodyArray[x][y]) {
t += 1;
} else {
break;
}
}

if (t > 4) {
return true;
} else {
return false;
}
}
}

热心网友 时间:2023-10-18 12:23

放到java编程工具Eclipse和MyElipse里面应该可以运行
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
对自己的前途怎么看? 开封哪里卖台球桌 范县新区哪里有卖麻将的 如何访问soutong防屏蔽网站 如何查看被屏蔽的属性? 商南有建设银行是真的吗? 输尿管结石能用体外碎石吗 输尿管体外碎石可进行几次 输尿管中段结石可以体外碎石吗 女人梦见大便是吉兆发财 酒驾驾照吊销后怎么办 驾驶证吊销期间醉酒驾驶怎么处理 驾驶证吊销期间酒驾怎么处理? 成都理工会计专硕22年复试成绩 我的驾驶证被扣6分,我用学法减分怎么不加分反被扣分? 成都信息工程大学会计专硕mpacc复试政治开卷吗 扣6分学法减分后还能扣6分吗? 成都大学的会计专业咋样?急求答案。 如果我的驾照通过学法减分恢复了12分以后,又被扣了6分还可以学法减分吗? 成都大学的会计、国际经济与贸易好不好。请专业人士讲解一下!谢谢。 成都大学会计学专业好吗 一次性扣6分可以学法免分吗 请问那个英文名里带c和j? 成都大学会计专业可以考研不 成都大学会计专硕在哪个校区 英文名里面有没有既可以当姓又可以当名的名字?有哪些? 英文名考里怎么拼 你申请的学开减分正在正在取消中,取消成功之后再通知,是什么原因? 学法减分以申请过不去怎么回事,卡在以申请这里,谁知道是不是什么意思啊?_百度问一问 骨密度仪检测哪个部位? java有没有makefile 请问各位大佬,用c++完成一个app的具体步骤是什么啊 如何向android的setting语言列表中添加一门语言 真心求助。一个准备学习编程的迷茫人。 不用VS怎么运行C++程序 c#编译后是什么文件 2021年粮食产量是多少呢? 700亿斤相当于多少吨 1.08亿吨等于多少斤? 《创意中国》里绘本舞蹈课程好吗? 电瓶车未满18周岁的可以骑吗? 电瓶车充电充不满而且骑的时候是显示没多少电了但是还可以骑10公里是怎么回事 新买的电瓶车和电池还有充电器为什么在第一次充电时充十几个小时突然停了也跳绿灯是满了吗? 载氢光纤是否适合做剥模器? 光纤激光器可以切割塑料膜吗 光纤激光器中剥模器和cps的区别 请问康百力维生素C加E经期可以吃吗? 谁吃过康百力这个牌子的,维生素C+E效果怎么样,我这个是不是正品。 每天都有在吃维生素C+E片,现在又买了一瓶康百力钙+D,请问这两个可以一起吃吗?都是康百力牌子的。 请问康百力的维生素C+E经期可以吃么?