home *** CD-ROM | disk | FTP | other *** search
- import javax.microedition.lcdui.Command;
- import javax.microedition.lcdui.CommandListener;
- import javax.microedition.lcdui.Display;
- import javax.microedition.lcdui.Displayable;
- import javax.microedition.lcdui.Form;
- import javax.microedition.midlet.MIDlet;
-
- public class FutureForce extends MIDlet implements CommandListener {
- // $FF: renamed from: c javax.microedition.lcdui.Command
- private static Command field_0;
- // $FF: renamed from: d javax.microedition.lcdui.Command
- private static Command field_1;
- // $FF: renamed from: b javax.microedition.lcdui.Command
- private static Command field_2;
- // $FF: renamed from: f a
- private static a field_3;
- // $FF: renamed from: a javax.microedition.lcdui.Display
- private static Display field_4;
- // $FF: renamed from: e javax.microedition.lcdui.Form
- private static Form field_5;
-
- public void startApp() {
- field_0 = new Command("Quit", 7, 1);
- field_1 = new Command("Help", 5, 2);
- field_2 = new Command("Back", 1, 1);
- field_4 = Display.getDisplay(this);
- field_3 = new a(field_4);
- field_3.addCommand(field_0);
- field_3.addCommand(field_1);
- field_3.setCommandListener(this);
- field_5 = new Form("Help");
- field_5.append("-Future Force- \n");
- field_5.append("-------------- \n");
- field_5.append("You are a fighter pilot for Terran Command, fighting off the alien menace of The Fallen. \n");
- field_5.append("4 & 6 to move back and forth. \n");
- field_5.append("2 & 8 to move up and down. \n");
- field_5.append("5 to fire lasers. \n");
- field_5.append("\t Enjoy. \n");
- field_5.append(" \n");
- field_5.append("lostincode.co.uk");
- field_5.addCommand(field_2);
- field_5.setCommandListener(this);
- Display.getDisplay(this).setCurrent(field_3);
- }
-
- public void commandAction(Command var1, Displayable var2) {
- if (var1.equals(field_0)) {
- this.destroyApp(false);
- this.notifyDestroyed();
- } else if (var1.equals(field_1)) {
- Display.getDisplay(this).setCurrent(field_5);
- a var10000 = field_3;
- if (!a.an) {
- field_3.d();
- }
- } else if (var1.equals(field_2)) {
- Display.getDisplay(this).setCurrent(field_3);
- field_3.d();
- }
-
- }
-
- public void pauseApp() {
- }
-
- public void destroyApp(boolean var1) {
- }
- }
-