0

我正在使用 BlueJ 做一个 Java 课程。我们需要为基于文本的游戏 Zuul 添加新功能。我决定开始研究库存和物品系统。我很难找到最好的方法来做到这一点,所以我只是飞了起来。这是我的代码。抱歉,我还没有开始评论所有内容。游戏可以编译,但运行游戏时控制台出现异常。

错误:

java.lang.NullPointerException
    at Game.createPlayer(Game.java:15)
    at Game.<init>(Game.java:7)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
    at bluej.runtime.ExecServer$3.run(ExecServer.java:740)

游戏类(这相当于 Java 中的 Main 类,这是运行游戏的地方):

import java.util.*;

public class Game
{
    public Game()
    {
        createPlayer();
        createItems();
    }

    private Entity localPlayer;

    public void createPlayer(){
        Player localPlayer = new Player("Player Name", 0, 0, 0, 0, 0);
        localPlayer.equipArmour("Helm", armourDB.get("Helm")); // This is where I think I have gone wrong
    }

    // Create global hashmap variables
    private HashMap<String, Weapon> weaponsDB;
    private HashMap<String, Armour> armourDB;
    private HashMap<String, Supplement> supplementDB;

    public void createItems(){
        // Create weapons
        weaponsDB = new HashMap<String, Weapon>();

        Weapon weaponFists = new Weapon("Fists", "Weapon", 0, 0, 0, 0, 0, "Melee");
        Weapon weaponSword = new Weapon("Sword", "Weapon", 0, 0, 0, 0, 0, "Melee");
        Weapon weaponBow = new Weapon("Bow", "Weapon", 0, 0, 0, 0, 0, "Ranged");
        Weapon weaponDagger = new Weapon("Dagger", "Weapon", 0, 0, 0, 0, 0, "Melee");

        weaponsDB.put("Fists", weaponFists);
        weaponsDB.put("Sword", weaponSword);
        weaponsDB.put("Bow", weaponBow);
        weaponsDB.put("Dagger", weaponDagger);

        // Create armour
        armourDB = new HashMap<String, Armour>();

        Armour armourBreastplate = new Armour("Breatplate", "Chest", 0, 0, 0, 0, 0);
        Armour armourHelm = new Armour("Helm", "Head", 0, 0, 0, 0, 0);

        armourDB.put("Breastplate", armourBreastplate);
        armourDB.put("Helm", armourHelm);

        // Create supplements
        supplementDB = new HashMap<String, Supplement>();

        Supplement supplementHealthPotion = new Supplement("Health Potion", 0, 0);
        Supplement supplementPowerPotion = new Supplement("Power Potion", 0, 0);

        supplementDB.put("Health Potion", supplementHealthPotion);
        supplementDB.put("Power Potion", supplementPowerPotion);
    }
}

实体类(玩家类和敌人类的构造):

import java.util.*;

public class Entity
{
    private boolean entityStatus;

    private String entityName;
    private int entityHealth;
    private int entityPower;
    private int entityHealthRegen;
    private int entityPowerRegen;
    private int entityAttackPower;

    private HashMap<String, Armour> entityEquipment;
    private ArrayList<Item> entityInventory;    

    public Entity(
        String paramEntityName,
        int paramEntityHealth,
        int paramEntityPower,
        int paramEntityHealthRegen,
        int paramEntityPowerRegen,
        int paramEntityAttackPower)
    {
        entityStatus = true;

        entityName = paramEntityName;
        entityHealth = paramEntityHealth;
        entityPower = paramEntityPower;
        entityHealthRegen = paramEntityHealthRegen;
        entityPowerRegen = paramEntityPowerRegen;
        entityAttackPower = paramEntityAttackPower;

        entityEquipment = new HashMap<String, Armour>(); // Set all possible equipment slots to null on initial run
        entityEquipment.put("Head", null);
        entityEquipment.put("Shoulders", null);
        entityEquipment.put("Chest", null);
        entityEquipment.put("Hands", null);
        entityEquipment.put("Legs", null);
        entityEquipment.put("Feet", null);
        entityEquipment.put("Weapon", null);

        entityInventory = new ArrayList<Item>();
    }

    public boolean getEntityStatus(){
        return entityStatus;
    }

    public String getEntityName(){
        return entityName;
    }

    public int getEntityHealth(){
        return entityHealth;
    }

    public int getEntityPower(){
        return entityPower;
    }

    public int getEntityHealthRegen(){
        return entityHealthRegen;
    }

    public int getEntityPowerRegen(){
        return entityPowerRegen;
    }

    public int getEntityAttackPower(){
        return entityAttackPower;
    }

    // Equips the player with an item into the equipment slot
    public void equipArmour(String paramEquipmentSlot, Armour paramArmourName){
        entityEquipment.put(paramEquipmentSlot, paramArmourName);
    }

    public void printInventory(){
        System.out.println("Something");
    }
}

我认为主要的问题是我无法完全理解主题标签的使用,我需要看一个活生生的例子来看看它是如何工作的。任何人都可以帮忙吗?如果您需要我提供其他任何东西,请告诉我。

4

1 回答 1

1

好吧,这就是问题所在:

armourDB.get("Helm")

那时你还没有初始化armourDB。如果您在该特定线路createItems()之前调用createPlayer()它应该没问题。但是您仍然不会初始化名为localPlayer. 您只会为在 中声明的局部变量赋值createPlayer

老实说,目前还不清楚您要达到的目标,但这是前两个问题...

于 2012-03-28T13:30:49.720 回答