欢迎来到【彩票走势 源码】【通达信多空监控源码主图】【北京桶装水溯源码厂家电话】elipse源码实例-皮皮网网站!!!

皮皮网

【彩票走势 源码】【通达信多空监控源码主图】【北京桶装水溯源码厂家电话】elipse源码实例-皮皮网 扫描左侧二维码访问本站手机端

【彩票走势 源码】【通达信多空监控源码主图】【北京桶装水溯源码厂家电话】elipse源码实例

2024-11-24 20:54:28 来源:{typename type="name"/} 分类:{typename type="name"/}

1.Grinder-grinder安装(源码方式eclipse环境下安装与配置)
2.急需基于eclipse的源码JAVA小游戏源代码!!实例!源码
3.大神们 急求基于eclipse的实例java小游戏程序的源码,程序不要多复杂啊。源码像坦克大战,实例彩票走势 源码五子棋,源码扫雷之类的实例谢谢

elipse源码实例

Grinder-grinder安装(源码方式eclipse环境下安装与配置)

       本文主要介绍在Eclipse环境下,通过源码方式安装和配置Grinder的源码详细步骤。首先,实例确保你已经配置了必要的源码环境,包括Git、实例Maven、源码Python 2.7及Jython,实例以及PyDev的源码通达信多空监控源码主图Python和Jython Interpreter。这些配置可以通过Eclipse市场或直接复制插件到dropins文件夹完成(推荐使用PyDev市场)。

       安装步骤如下:

       从git.hz.netease.com下载Grinder的Java工程(版本3.)。

       在Eclipse中使用git clone仓库,选择3./master分支。

       将项目路径更改为工作空间,等待下载并导入为Maven工程。

       只选择grinder-core和ginder-.grinder.Grinder启动项目。北京桶装水溯源码厂家电话

       配置和调试环节,可以创建一个简单的Python脚本(test.py)来测试Grinder。运行net.grinder.Grinder,检查并解决可能出现的错误提示,如JDK版本不兼容导致的提示。

       在工程路径和grinder.properties配置方面,注意两点:一是身份证照片一键生成源码脚本文件路径的相对性问题,可能需要带上上层目录;二是grinder.properties的路径配置需要明确。

       至于引用外部jar包,只需在grinder-core项目的build path中添加即可。

急需基于eclipse的JAVA小游戏源代码!!!

       单人版五子棋,广州桶装水溯源码厂家电话不用导入,直接新建一个mywindow类就行,然后把一下代码粘贴就Ok了。或者,直接用dos就可以了。。

       ---------------------

       import java.awt.*;

       import java.awt.event.*;

       import javax.swing.*;

       class mypanel extends Panel implements MouseListener

       {

        int chess[][] = new int[][];

        boolean Is_Black_True;

        mypanel()

        {

        Is_Black_True = true;

        for(int i = 0;i < ;i++)

        {

        for(int j = 0;j < ;j++)

        {

        chess[i][j] = 0;

        }

        }

        addMouseListener(this);

        setBackground(Color.BLUE);

        setBounds(0, 0, , );

        setVisible(true);

        }

        public void mousePressed(MouseEvent e)

        {

        int x = e.getX();

        int y = e.getY();

        if(x < || x > + ||y < || y > +)

        {

        return;

        }

        if(chess[x/-1][y/-1] != 0)

        {

        return;

        }

        if(Is_Black_True == true)

        {

        chess[x/-1][y/-1] = 1;

        Is_Black_True = false;

        repaint();

        Justisewiner();

        return;

        }

        if(Is_Black_True == false)

        {

        chess[x/-1][y/-1] = 2;

        Is_Black_True = true;

        repaint();

        Justisewiner();

        return;

        }

        }

        void Drawline(Graphics g)

        {

        for(int i = ;i <= ;i += )

        {

        for(int j = ;j <= ; j+= )

        {

        g.setColor(Color.WHITE);

        g.drawLine(i, j, i, );

        }

        }

        for(int j = ;j <= ;j += )

        {

        g.setColor(Color.WHITE);

        g.drawLine(, j, , j);

        }

        }

        void Drawchess(Graphics g)

        {

        for(int i = 0;i < ;i++)

        {

        for(int j = 0;j < ;j++)

        {

        if(chess[i][j] == 1)

        {

        g.setColor(Color.BLACK);

        g.fillOval((i + 1) * - 8, (j + 1) * - 8, , );

        }

        if(chess[i][j] == 2)

        {

        g.setColor(Color.WHITE);

        g.fillOval((i + 1) * - 8, (j + 1) * - 8, , );

        }

        }

        }

        }

        void Justisewiner()

        {

        int black_count = 0;

        int white_count = 0;

        int i = 0;

        for(i = 0;i < ;i++)//横向判断

        {

        for(int j = 0;j < ;j++)

        {

        if(chess[i][j] == 1)

        {

        black_count++;

        if(black_count == 5)

        {

        JOptionPane.showMessageDialog(this, "黑棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        black_count = 0;

        }

        if(chess[i][j] == 2)

        {

        white_count++;

        if(white_count == 5)

        {

        JOptionPane.showMessageDialog(this, "白棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        white_count = 0;

        }

        }

        }

        for(i = 0;i < ;i++)//竖向判断

        {

        for(int j = 0;j < ;j++)

        {

        if(chess[j][i] == 1)

        {

        black_count++;

        if(black_count == 5)

        {

        JOptionPane.showMessageDialog(this, "黑棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        black_count = 0;

        }

        if(chess[j][i] == 2)

        {

        white_count++;

        if(white_count == 5)

        {

        JOptionPane.showMessageDialog(this, "白棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        white_count = 0;

        }

        }

        }

       for(i = 0;i < 7;i++)//左向右斜判断

        {

        for(int j = 0;j < 7;j++)

        {

        for(int k = 0;k < 5;k++)

        {

        if(chess[i + k][j + k] == 1)

        {

        black_count++;

        if(black_count == 5)

        {

        JOptionPane.showMessageDialog(this, "黑棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        black_count = 0;

        }

        if(chess[i + k][j + k] == 2)

        {

        white_count++;

        if(white_count == 5)

        {

        JOptionPane.showMessageDialog(this, "白棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        white_count = 0;

        }

        }

        }

        }

        for(i = 4;i < ;i++)//右向左斜判断

        {

        for(int j = 6;j >= 0;j--)

        {

        for(int k = 0;k < 5;k++)

        {

        if(chess[i - k][j + k] == 1)

        {

        black_count++;

        if(black_count == 5)

        {

        JOptionPane.showMessageDialog(this, "黑棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        black_count = 0;

        }

        if(chess[i - k][j + k] == 2)

        {

        white_count++;

        if(white_count == 5)

        {

        JOptionPane.showMessageDialog(this, "白棋胜利");

        Clear_Chess();

        return;

        }

        }

        else

        {

        white_count = 0;

        }

        }

        }

        }

        }

        void Clear_Chess()

        {

        for(int i=0;i<;i++)

        {

        for(int j=0;j<;j++)

        {

        chess[i][j]=0;

        }

        }

        repaint();

        }

        public void paint(Graphics g)

        {

        Drawline(g);

        Drawchess(g);

        }

        public void mouseExited(MouseEvent e){ }

        public void mouseEntered(MouseEvent e){ }

        public void mouseReleased(MouseEvent e){ }

        public void mouseClicked(MouseEvent e){ }

       }

       class myframe extends Frame implements WindowListener

       {

        mypanel panel;

        myframe()

        {

        setLayout(null);

        panel = new mypanel();

        add(panel);

        panel.setBounds(0,, , );

        setTitle("单人版五子棋");

        setBounds(, , , );

        setVisible(true);

        addWindowListener(this);

        }

        public void windowClosing(WindowEvent e)

        {

        System.exit(0);

        }

        public void windowDeactivated(WindowEvent e){ }

        public void windowActivated(WindowEvent e){ }

        public void windowOpened(WindowEvent e){ }

        public void windowClosed(WindowEvent e){ }

        public void windowIconified(WindowEvent e){ }

        public void windowDeiconified(WindowEvent e){ }

       }

       public class mywindow

       {

        public static void main(String argc [])

        {

        myframe f = new myframe();

        }

       }

大神们 急求基于eclipse的java小游戏程序的源码,程序不要多复杂啊。像坦克大战,五子棋,扫雷之类的谢谢

       import java.util.Scanner;

       public class Wuziqi {

       

        /

**

        * 棋盘

        */

        private final int[][] qipan;

       

        /

**

        * 步数

        */

        private int bushu;

       

        /

**

        * 构造方法,设置棋盘规格

        * @param x

        * @param y

        */

        public Wuziqi(int x, int y) {

        if (x < 1 || y < 1) {

        System.out.println("棋盘规格应不小于1,使用默认规格");

        qipan = new int[9][9];

        } else {

        qipan = new int[y][x];

        }

        }

       

        /

**

        * 游戏开始

        */

        public void play() {

        int[] zuobiao = null;

        //如果游戏没有结束

        while (!end(zuobiao)) {

        //落子,并取得坐标

        zuobiao = luozi();

        //输出棋盘

        out();

        }

       

        }

        /

**

        * 输出棋盘和棋子

        */

        private void out() {

       

        for (int i = 0; i < qipan.length; i++) {

        for (int j = 0; j < qipan[i].length; j++) {

        if (qipan[i][j] == 0) {

        System.out.print("  +");

        }else if (qipan[i][j] == -1) {

        System.out.print("  白");

        }else if (qipan[i][j] == 1) {

        System.out.print("  黑");

        }

        }

        System.out.println(" ");

        }

        }

        /

**

        * 落子

        */

        private int[] luozi() {

        int[] zuobiao;

        bushu++;

        if (bushu % 2 == 1) {

        System.out.println("请黑方落子");

        zuobiao = input();

        qipan[zuobiao[1]][zuobiao[0]] = 1;

        }else {

        System.out.println("请白方落子");

        zuobiao = input();

        qipan[zuobiao[1]][zuobiao[0]] = -1;

        }

        return zuobiao;

        }

       

        /

**

        * 输入坐标

        * @return

        */

        private int[] input() {

       

        Scanner sc = new Scanner(System.in);

        System.out.println("请输入x轴坐标");

        String x = sc.next();

        System.out.println("请输入y轴坐标");

        String y = sc.next();

        //如果没有通过验证,则再次执行input(),递归算法

        if (!validate(x, y)) {

        return input();

        }

        int int_x = Integer.valueOf(x);

        int int_y = Integer.valueOf(y);

        return new int[] { int_x, int_y};

        }

       

        /

**

        * 校验数据

        * @param x

        * @param y

        * @return

        */

        private boolean validate(String x, String y) {

       

        Integer int_x = null;

        Integer int_y = null;

        //异常处理的方式判断字符串是否是一个整数

        try {

        int_x = Integer.valueOf(x);

        int_y = Integer.valueOf(y);

        } catch (NumberFormatException e) {

        System.out.println("坐标格式错误,坐标应为整数");

        return false;

        }

        if (int_x < 0 || int_y < 0 || int_x >= qipan[0].length || int_y >= qipan.length) {

        System.out.println("坐标越界");

        return false;

        }

        if (qipan[int_y][int_x] == 0) {

        return true;

        } else {

        System.out.println("坐标上已有棋子");

        }

        return false;

        };

       

        /

**

        * 结束条件

        * @return

        */

        private boolean end(int[] zuobiao) {

       

        if (zuobiao == null) {

        return false;

        }

        //计数器

        //表示棋盘上经过最近落子坐标的4条线上的连续(和最近落子颜色相同的)棋子的个数

        //如果某条线上连续的棋子大于等于4(加上最近落子本身,大于等于5),则游戏结束,符合五子棋规则

        int[] jieguo = new int[4];

        int x = zuobiao[0];

        int y = zuobiao[1];

        //定义八个方向

        final int[][] fangxiang = { { -1, 0}, { -1, 1}, { 0, 1}, { 1, 1}, { 1, 0}, { 1, -1}, { 0, -1}, { -1, -1}};

        //最近落子的坐标上的棋子颜色

        int number = qipan[y][x];

        //搜索最近落子坐标为中心最远4的距离

        for (int i = 1; i <= 4; i++) {

        //每次搜索不同的距离都搜索八个方向

        for (int j = 0; j < fangxiang.length; j++) {

        //约定如果某个方向为null时,不再搜索这个方向。关键字continue是跳过本次(一次)循环的意思

        if (fangxiang[j] == null) {

        continue;

        }

        int mubiao_x = x + i * fangxiang[j][0];

        int mubiao_y = y + i * fangxiang[j][1];

        //如果搜索坐标相对于棋盘越界,则不再搜索这个方向

        if (mubiao_y >= qipan.length || mubiao_y < 0 || mubiao_x >= qipan[0].length || mubiao_x < 0) {

        fangxiang[j] = null;

        continue;

        }

        //如果最近落子坐标上的值等于目标坐标上的值(颜色相同),则计数器上某条线加1

        //否则认为这个方向没有棋子或有别的颜色的棋子,不再搜索这个方向

        if (number == qipan[mubiao_y][mubiao_x]) {

        jieguo[j % 4]++;

        }else {

        fangxiang[j] = null;

        }

        }

        }

        //查看计数器上是否有比3更大的数(查看是否有一方胜出)

        for (int i : jieguo) {

        if (i > 3) {

        System.out.println("游戏结束");

        if (bushu % 2 == 1) {

        System.out.println("黑方胜");

        } else {

        System.out.println("白方胜");

        }

        return true;

        }

        }

        //没有胜出者的情况下,查看棋盘上是否还有空位置,如果有,则游戏可以继续

        for (int[] arr : qipan) {

        for (int i : arr) {

        if (i == 0) {

        return false;

        }

        }

        }

        //如果没有空位置,则平局

        System.out.println("游戏结束,平局");

        return true;

        }

       }