WormMain类
最主要的类,继承自MIDlet父类并实现了CommandListener接口。
l protected void startApp()
实现MIDlet父类的方法,当开始程序时首先执行这个函数
// 显示画板 Display.getDisplay(this).setCurrent(theGame); try { // 开始游戏线程 Thread myThread = new Thread(theGame); myThread.start(); } catch (Error e) { destroyApp(false); notifyDestroyed(); } |
l public void commandAction(Command c, Displayable d)
接受并处理用户输入事件
// 重新开始 if (c == restartCmd) { theGame.restart(); }; // 改变难度等级 if (c == levelCmd) { Item[] levelItem = { new Gauge("Level", true, 9, theGame.getLevel()) }; Form f = new Form("Change Level", levelItem); f.addCommand(OKCmd); f.addCommand(cancelCmd); f.setCommandListener(this); Display.getDisplay(this).setCurrent(f); }; // 离开游戏 if (c == exitCmd) { destroyApp(false); notifyDestroyed(); }; // 开始游戏 if (c == startCmd) { theGame.removeCommand(startCmd); theGame.addCommand(restartCmd); theGame.restart(); }; // 确定 if (c == OKCmd) { Form f = (Form)d; Gauge g = (Gauge)f.get(0); theGame.setLevel(g.getValue()); Display.getDisplay(this).setCurrent(theGame); }; // 取消 if (c == cancelCmd) { Display.getDisplay(this).setCurrent(theGame); }; // 打开音效 if (c == audioOnCmd) { /* 打开音效 */ theGame.createAudioPlayer(); theGame.removeCommand(audioOnCmd); theGame.addCommand(audioOffCmd); }; // 关闭音效 if (c == audioOffCmd) { /* 关闭音效 */ theGame.destroyAudioPlayer(); theGame.removeCommand(audioOffCmd); theGame.addCommand(audioOnCmd); } |
相关视频
相关阅读 Windows错误代码大全 Windows错误代码查询激活windows有什么用Mac QQ和Windows QQ聊天记录怎么合并 Mac QQ和Windows QQ聊天记录Windows 10自动更新怎么关闭 如何关闭Windows 10自动更新windows 10 rs4快速预览版17017下载错误问题Win10秋季创意者更新16291更新了什么 win10 16291更新内容windows10秋季创意者更新时间 windows10秋季创意者更新内容kb3150513补丁更新了什么 Windows 10补丁kb3150513是什么
热门文章 去除winrar注册框方法
最新文章
比特币病毒怎么破解 比去除winrar注册框方法
华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)通过Access破解MSSQL获得数据
人气排行 华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)qq相册密码破解方法去除winrar注册框方法(适应任何版本)怎么用手机破解收费游戏华为无线猫HG522破解如何给软件脱壳基础教程
查看所有0条评论>>