Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a text based game in Java and I am trying to implement a player inventory, so far I have Class named weapons and I have an array of strings with the weapon type, and then another array with the actual weapon. Although I believe I am looking at this in the wrong direction. I'm not looking for someone to write the code for me, I am just looking for someone to kindly point me in the right direction as far as what I should do to implement a player inventory. I just need someone to tell me where to read up to learn how to create something like this. Thanks in advance, Shandan

share|improve this question
2  
Can you define in more details the requirements of your inventory? – Edwin Dalorzo Dec 21 '12 at 15:13
Can you show the code instead of just describing it? You have a class names Weapons? What does this class represent? Is there a Weapon class and Weapons is a collection of Weapon instances? What is this array of strings for a weapon type? What is a weapon type? It's not really clear how you're arranging all of this. In general I imagine there would be a Player class which contains its inventory. If the only things that can be carried are instances of Weapon then the Player can have a list of Weapons. If there are other carryable objects, some abstraction may be necessary. – David Dec 21 '12 at 15:15
So why no ArrayList (or custom ArrayList with a certain maximum) for the inventory? – Christiaan de Jong Dec 21 '12 at 15:16
It would help if you posted some sample code – Aaron Kurtzhals Dec 21 '12 at 15:27

closed as not a real question by Nambari, ataylor, CoolBeans, Damien Pirsy, t0mm13b Dec 21 '12 at 20:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

6 Answers

What is a player inventory? A player inventory is all of the items that a player can carry.

Right now, you just have a Weapons class defined. In Java, class names start with capital letters.

Since the only thing a player can carry is one or more weapons, your PlayerInventory class would contain a List or Array of Weapons. (Lists are more flexible than Arrays.)

Later, as you add more things to your game, the PlayerInventory class would keep track of those things with Lists.

share|improve this answer
I see, like I said, I think I'm looking at this the wrong way. So I would essentially, declare the weapons as objects then add attributes? – Shandan Spencer Dec 21 '12 at 15:22
@Shandan Spencer: Yes. All of the objects a player can carry would be Java classes with attributes. – Gilbert Le Blanc Dec 21 '12 at 15:31

How about using interfaces and inheritance for anything related to objects that a player can interact with? Would save you from storing string arrays or multiple arrays.

So then you in your player class you could have a list of IObjects or IPlayerObjects or whatever you want to call your interface that will be common to all items a player can interact with.

Take a look at the following for inheritance and interfaces: http://docs.oracle.com/javase/tutorial/java/IandI/index.html

share|improve this answer

you are using Java, even though using arrays is much simpler, I'll try to follow an object oriented approach:

  • Define a class for weapons, i.e.: Weapon.
  • WeaponType can be an enum or another complete different class. Weapon class would have a WeaponType field that could be named, for example: type.
  • Instead of using an array, you could use an ArrayList in your Inventory class holding all the Weapons. Then add methods like getWeapons(), getWeaponByType(WeaponType), etc. to that Inventory class.

Can't give more clues without seeing any code.

share|improve this answer

Maybe something like this:

class Player{
  List<Weapon> weapons= new ArrayList<Weapon>();
  ...
}

enum Weapon{
  AXE, SWORD, KNIFE, ...

}
share|improve this answer
Ah, I see, so, To add attributes to the weapon would I declare ints then what? – Shandan Spencer Dec 21 '12 at 15:30

Try using an ArrayList.

If you are only storing weapons in the inventory, and the class for weapons is Weapon, the code would look something like this:

ArrayList<Weapon> inventory = new ArrayList<Weapon>();
Weapon sword = new Weapon();
inventory.add(sword);

The size of an ArrayList is flexible and better suited to this purpose.

To get an item from the inventory with a specific index you would use:

inventory.get(0);

To loop through the items you would say:

for (Weapon w:inventory) {
    //do something with w here
}
share|improve this answer

Try something along these lines:

public class Player{

private Inventory inventory;
private Int health;
private String name;

public Player()
{
   this.inventory = new Inventory();
}

//player action methods

}


public class Inventory
{
   private Weapon equippedWeapon;
   private Weapon secondary

   //or if you have multiple weapons
   private Weapon[] weapons;

   public Inventory()
   {
   }

//methods to equip/unequip weapons
}

public class Weapon
{

   private String weaponType;
   private int weaponDamage;
   private String weaponName;

   public Weapon(String weaponType, int weaponDamage, String weaponName)
   {
   //set your instance variables
   }

//actions for a weapon

}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.