私はもともとChillaxから始めましたが、締め切り間際に非常に多くの問題に遭遇した後、より慣れ親しんだIDEであるNetBeansに戻り、より基本的な「小惑星」タイプのゲームにアプローチを変更しました。
- NBのzipファイル: http: //ge.tt/4T5tBFT/v/0 ?c
- テキスト:git clone git://gist.github.com/4248746.git
- 埋め込み?:
NetBeansでは、次のようになります。
Exception in thread "main" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(ImageIcon.java:205)
at gayme.Craft.<init>(Craft.java:27)
at gayme.Board.<init>(Board.java:54)
at gayme.Gayme.<init>(Gayme.java:9)
at gayme.Gayme.main(Gayme.java:19)
Java Result: 1
出典:(クラフト26-34)
public Craft() {
ImageIcon ii = new ImageIcon(this.getClass().getResource("craft.png"));
image = ii.getImage();
width = image.getWidth(null);
height = image.getHeight(null);
missiles = new ArrayList();
visible = true;
x = 40;
y = 60;}
(ボード54)
craft = new Craft();
(Gayme 9)
add(new Board());
(Gayme 19)
new Gayme();
私は本当に解決する必要のある問題を抱えており、睡眠不足の脳はそれぞれの問題を考えています。どちらのゲームでもお気軽にお手伝いしてください。どうもありがとう!