`
isiqi
  • 浏览: 16484812 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

基于Nokia手机的移动游戏开发步步通(五)

阅读更多
5 高分屏幕

  当用户从主菜单中选择"High scores"选项的时候,高分就会显示出来。高分是显示在全屏画布(FullCanvas)实例上的。分数应该在一个屏幕上就显示完,而不要卷动页面,因为这样会给用户带来麻烦。
当然了,高分屏幕也可能会包含一些图片或者动画。用户应该能够通过按下左功能键、右功能键、数字键或者Send键返回主菜单。这个例子不提供任何处理高分的机制。处理高分的两种典型的方法是通过使用记录管理服务(RMS)永久保存分数或者通过HTTP连接把高分保存到服务器中。下面的代码是高分的框架。

import javax.microedition.lcdui.*;
import com.nokia.mid.ui.*;
public class HighScore extends FullCanvas {
private GameMIDlet parent = null;
private MainMenu menu = null;
public HighScore(GameMIDlet parent, MainMenu menu) {
this.parent = parent;
this.menu = menu;
}
protected void paint(Graphics g) {
//Paint the high scores here
}
public void keyPressed(int keyCode) {
if (keyCode != KEY_END) {
//selection list to the screen
parent.setDisplayable(menu);
}
}
}

  6 教学屏幕

  当用户从主菜单中选择"Instructions"条目的时候,就会显示出游戏的规则。游戏规则文本放置在Form实例中。Form中应该包含用于进入下一条教学规则的命令(例如,标签"More")和回到主菜单的命令(例如,标签"Back")。"More"一般由左功能键控制,而"Back"由右功能键控制。如果教学规则里包含动画,那么这些动画应该使用全屏画布(FullCanvas)来显示。按下左功能键将跳过动画进入下一个教学屏幕。按下右功能键,用户将从动画中回到主菜单。键End将结束应用程序。下面的代码是文字教学规则和动画的框架。

//Text instructions. Text can be written in constructor or in own
method.
//Developer should remember that also instruction texts should be
//internationalized
import javax.microedition.lcdui.*;
public class Instructions extends Form implements CommandListener {
//Command for going next instruction if needed
private Command more = new Command(
Resources.getString(Resources.ID_GAME_MORE),
Command.OK, 1);
//Command for going back to the main menu
private Command back = new Command("", Command.BACK, 2);
private GameMIDlet parent = null;
private MainMenu menu = null;
public Instructions(String title, GameMIDlet parent, MainMenu
menu) {
super(title);
this.parent = parent;
this.menu = menu;
this.addCommand(back);
this.addCommand(more);
this.setCommandListener(this);
}
public void commandAction(Command p0, Displayable p1) {
if (p0 == more) {
//go to the next if needed e.g animation
parent.setDisplayable(new InstructionAnimation(parent));
}
else if (p0 == back) {
parent.setDisplayable(menu);
}
}
}
//Instruction animation
import javax.microedition.lcdui.*;
import com.nokia.mid.ui.*;
public class InstructionAnimation extends FullCanvas {
private GameMIDlet parent = null;
public InstructionAnimation(GameMIDlet parent) {
this.parent = parent;
}
protected void paint(Graphics g) {
//Do the animation here
}
public void keyPressed(int keyCode) {
if (keyCode == KEY_SOFTKEY1) {
//go to the next instruction screen if needed
}
else if (keyCode == KEY_SOFTKEY2) {
//selection list to the screen
parent.setDisplayable(new MainMenu(
Resources.getString (
Resources.ID_GAME_NAME),
List.IMPLICIT, parent));
}
}
}

  7关于(About)屏幕

  关于(About)屏幕显示游戏制作公司的消息文本或标志。当用户从主菜单中选择"About"选项的时候,就会启动这个屏幕。和教学规则页面一样,关于屏幕页面如果只需要文本信息的话,那么可以使用Form来实现。如果需要图像或动画,那么应该使用Canvas或FullCanvas。

//Text "About" code skeleton
import javax.microedition.lcdui.*;
public class About extends Form implements CommandListener {
//Command for going back to the main menu
private Command back = new Command("", Command.BACK, 1);
private GameMIDlet parent = null;
private MainMenu menu = null;
public About(String title, GameMIDlet parent, MainMenu menu) {
super(title);
this.parent = parent;
this.menu = menu;
this.addCommand(back);
this.setCommandListener(this);
}
public void commandAction(Command p0, Displayable p1) {
if (p0 == back) {
parent.setDisplayable(menu);
}
}
}

  8 退出

  从主菜单中选择"Exit game"选项来中止游戏并释放所有的资源。

  9 Resources类

  Resources类不是一个用户界面类,与本文中介绍的其他类不同。这个类处理国际化问题。

/**
* A simple class to simulate a resource bundle.
* Modify the contents of this class according to the
* locales/languages you want your application to support.
* In your application, retrieve a string using code such as the
* following:
* <pre>
* <code>String s = Resources.getString(Resources.ID_GAME_NEW);
* </code></pre>
* Copyright (C) 2002 Nokia Corporation
*/
public class Resources {
// Identifiers for text strings.
public static final int ID_GAME_NEW = 0;
public static final int ID_GAME_OPTIONS = 1;
public static final int ID_GAME_HIGHSCORES = 2;
public static final int ID_GAME_INSTRUCTIONS = 3;
public static final int ID_GAME_ABOUT = 4;
public static final int ID_GAME_CONTINUE = 5;
public static final int ID_GAME_BACK = 6;
public static final int ID_GAME_MORE = 7;
public static final int ID_GAME_EXIT = 8;
public static final int ID_GAME_LEVEL = 9;
public static final int ID_GAME_SOUNDS = 10;
public static final int ID_GAME_VIBRA = 11;
public static final int ID_GAME_NAME = 12;
// List of supported locales.
// The strings are Nokia-specific values
// of the "microedition.locale" system property.
private static final String[] supportedLocales = {
"en", "fi-FI", "fr", "de"
};
//NOTE: default language must be the first one
//for getString to work!
// Strings for each locale, indexed according to the
// contents of supportedLocales
private static final String[][] strings = {
{ "New game", "Settings", "High scores", "Instructions",
"About","Continue", "Back", "More", "Exit game",
"Level", "Sounds","Shakes", "Game name" },
{ "Uusi peli", "Asetukset", "Huipputulokset", "Peliohjeet",
"Tietoja","Jatka", "Poistu", "Jatka", "Poistu",
"Vaikeusaste", "Peli??net", "V?rin?tehosteet",
"Pelin nimi" },
{ "Nouveau jeu", "Paramètres", "Scores", "Instructions",
"A propos","Continuer", "Retour", "Suite", "Sortir",
"Niveau", "Sons", "Vibrations", "Jeu nom" },
{ "Neues Spiel", "Einstellungen", "Rekord", "Anleitung",
"über","Weiter", "Zurück", "Weiter", "Beenden",
"Ebene", "Ton", "Vibrationen", "Spiel name" }
};
/**
* Gets a string for the given key.
* @param key Integer key for string
* @return The string
*/
public static String getString(int key) {
String locale = System.getProperty("microedition.locale");
if (locale == null) {
locale = new String(""); // use empty instead of null
}
// find the index of the locale id
int localeIndex = -1;
for (int i = 0; i < supportedLocales.length; i++) {
if (locale.equals(supportedLocales[i])) {
localeIndex = i;
break;
}
}
// not found
if (localeIndex == -1) {
// defaults to first language, in this example English
return strings[0][key];
}
return strings[localeIndex][key];
}
}
作者:wayne编译转贴自:yesky.com

分享到:
评论

相关推荐

    aspnetmvc步步通

    《ASP.NET MVC步步通》是一本专注于讲解ASP.NET MVC技术的详细教程,旨在帮助开发者逐步掌握这一强大的Web应用开发框架。ASP.NET MVC是Microsoft推出的一种模型-视图-控制器(Model-View-Controller)架构模式的实现...

    嵌入式Linux系统移植步步通_嵌入式Linux系统移植步步通_

    总的来说,“嵌入式Linux系统移植步步通”这份资源将引导学习者逐步完成从硬件选型、内核配置、驱动开发、系统构建到最终系统验证的全过程。对于初学者,这是一份宝贵的教程,能够帮助他们快速掌握嵌入式Linux系统...

    Fdisk硬盘分区图解步步通.chm

    Fdisk硬盘分区图解步步通.chm

    《Joomla!建站步步通》Joomla!组件模块安装配置视频培训教程

    【Joomla!建站步步通】是一套专为学习Joomla!内容管理系统(CMS)而设计的视频培训教程。...,还涉及了移动开发、数据库、Web开发、软件测试和金融等多个领域,为全面提高个人技术能力提供了多样化的学习资源。

    Fdisk 硬盘分区图解步步通

    【Fdisk硬盘分区图解步步通】 在计算机领域,硬盘分区是管理和组织硬盘空间的重要步骤。Fdisk(全称为Fixed Disk)是一款经典的命令行工具,主要用于在DOS系统下进行硬盘分区操作。本文将深入探讨Fdisk的工作原理、...

    Fdisk硬盘分区图解步步通

    【Fdisk硬盘分区图解步步通】 在计算机操作系统中,硬盘分区是管理和组织硬盘空间的重要方式,它将一个物理硬盘划分为多个逻辑区域,每个区域都有独立的驱动器字母或盘符,便于数据的存储和管理。Fdisk是早期...

    fdisk 硬盘分区图解步步通

    《fdisk硬盘分区图解步步通》是一部针对Linux系统中fdisk工具的详细教程,采用图文并茂的方式,便于读者理解和掌握硬盘分区的操作。fdisk是Linux系统中用于磁盘分区管理的重要工具,它允许用户创建、删除和修改硬盘...

    Fdisk硬盘分区图解步步通.rar

    本压缩包`Fdisk硬盘分区图解步步通.rar`提供了关于如何使用Fdisk进行硬盘分区的详细教程,其中包含`Fdisk硬盘分区图解步步通.chm`这个帮助文档。 硬盘分区的主要目的是将一个大的物理硬盘划分为多个逻辑驱动器,...

    嵌入式Linux系统移植步步通_forgottenaah_linux_嵌入式_

    标题“嵌入式Linux系统移植步步通”暗示了这是一个逐步指导的教程,旨在帮助初学者或有经验的工程师了解并掌握嵌入式Linux的移植过程。描述中的“不错,学习学习”表明该资料可能是有价值的教育资源,包含了一系列...

    Fdisk硬盘分区图解步步通(HTML)

    《Fdisk硬盘分区图解步步通》是一份深入浅出的教程,主要针对计算机用户,尤其是初学者,旨在帮助他们理解和掌握如何使用Fdisk工具进行硬盘分区操作。这份教程采用了图文并茂的方式,使得复杂的操作过程更加直观易懂...

    Fdisk 硬盘分区图解步步通,CHM类_免费软件

    《Fdisk硬盘分区图解步步通》是一款专为用户详细解析硬盘分区操作的教程,以CHM类电子书的形式提供,且是免费软件。这款软件适用于想要了解或掌握硬盘分区基础知识的人群,无论你是计算机新手还是有一定经验的技术...

    嵌入式Linux系统移植步步通

    目 录 第一部分 前言...................................................................................................................................8 1 硬件环境.........................................

    MSP430单片机入门提供步步通视频教程.txt

    该教程为MSP430单片机入门提供步步通视频教程,TXT文件里有百度云链接,永久有效,欢迎大家下载学习。

    嵌入式LINUX系统移植步步通

    该文档的目的是总结我们在工作中的一些经验,并把它们分享给喜欢ARM和Linux的朋友, 如有错误之处,请大家多多指点. 同样, 我们也希望更多人能把自己的工作经验和体会加入该文档,让大家共同进步.该文档是一份交流性...

    《Fdisk_硬盘分区图解步步通》

    《Fdisk硬盘分区图解步步通》是一本详细介绍Fdisk工具使用方法的教程,通过图解的方式使得学习者能够更加直观地理解这个经典的硬盘分区工具。Fdisk在早期的Windows系统中是主要的硬盘分区工具,它允许用户创建、删除...

Global site tag (gtag.js) - Google Analytics