• 大小: 58KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: Java
  • 标签: java  吃豆人  

资源简介

java编的经典小游戏:吃豆人,适合初学者,小时候大家都玩过吧

资源截图

代码片段和文件信息

import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;

public class Eatdot extends MIDlet
    implements CommandListener
{

    private Command exitCommand;
    public Command startCommand;
    public Command pauseCommand;
    private Display display;
    private MainCanvas myCanvas;

    public Eatdot()
    {
        //System.out.println(“debug 1“);
        display = Display.getDisplay(this);
        exitCommand = new Command(“Exit“ Command.EXIT 1);
        //System.out.println(“debug 2“);
        startCommand = new Command(“Start“ Command.OK 1);
        pauseCommand = new Command(“Pause“ Command.STOP 1);
        //System.out.println(“debug 3“);

    }

    public void startApp()
    {
        //System.out.println(“debug 4“);
        myCanvas = new MainCanvas(startCommand pauseCommand);

        myCanvas.addCommand(exitCommand);
        //System.out.println(“debug 5“);
        myCanvas.setCommandListener(this);
        //System.out.println(“debug 6“);
        display.setCurrent(myCanvas);
        //System.out.println(“debug 7“);
    }

    public void pauseApp()
    {
    }

    public void destroyApp(boolean flag)
    {
    }

    public void commandAction(Command command Displayable displayable)
    {
        if(command == exitCommand)
        {
            destroyApp(false);
            notifyDestroyed();
        } else
        if(command == startCommand)
            myCanvas.resume();
        else
            myCanvas.pause();
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        225  2004-06-04 17:59  吃豆人\bin\Eatdot.jad

     文件        177  2004-06-04 17:59  吃豆人\bin\MANIFEST.MF

     文件       1960  2004-06-04 17:59  吃豆人\classes\Eatdot.class

     文件      19550  2004-06-04 17:59  吃豆人\classes\MainCanvas.class

     文件         50  2004-07-28 20:34  吃豆人\project.properties

     文件        132  2000-11-21 22:35  吃豆人\res\img0.png

     文件        136  2000-11-21 22:35  吃豆人\res\img1.png

     文件        169  2000-11-20 17:32  吃豆人\res\img10.png

     文件        173  2000-11-20 17:32  吃豆人\res\img11.png

     文件        127  2000-11-22 16:12  吃豆人\res\img12.png

     文件        165  2000-11-20 17:33  吃豆人\res\img13.png

     文件        125  2000-11-22 16:13  吃豆人\res\img14.png

     文件        129  2000-11-22 16:13  吃豆人\res\img15.png

     文件        129  2000-11-22 16:14  吃豆人\res\img16.png

     文件        128  2000-11-22 16:15  吃豆人\res\img17.png

     文件        128  2000-11-22 16:15  吃豆人\res\img18.png

     文件        128  2000-11-22 16:15  吃豆人\res\img19.png

     文件        133  2000-11-21 22:35  吃豆人\res\img2.png

     文件        128  2000-11-22 16:16  吃豆人\res\img20.png

     文件        175  2000-11-22 16:18  吃豆人\res\img21.png

     文件        179  2000-11-22 16:19  吃豆人\res\img22.png

     文件        173  2000-11-22 16:19  吃豆人\res\img23.png

     文件        171  2000-11-22 16:20  吃豆人\res\img24.png

     文件        428  2000-11-22 16:40  吃豆人\res\img25.png

     文件        181  2000-11-23 15:49  吃豆人\res\img26.png

     文件        136  2000-11-21 22:36  吃豆人\res\img3.png

     文件        130  2000-11-21 22:36  吃豆人\res\img4.png

     文件        136  2000-11-21 22:36  吃豆人\res\img5.png

     文件        130  2000-11-21 22:36  吃豆人\res\img6.png

     文件        136  2000-11-21 22:36  吃豆人\res\img7.png

............此处省略21个文件信息

评论

共有 条评论