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
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.
|
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. |
|||||
|
|
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 |
|||
|
|
|
you are using Java, even though using arrays is much simpler, I'll try to follow an object oriented approach:
Can't give more clues without seeing any code. |
|||
|
|
|
Maybe something like this:
|
|||
|
|
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:
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:
To loop through the items you would say:
|
|||
|
|
|
Try something along these lines:
|
|||
|
|


Weapons? What does this class represent? Is there aWeaponclass andWeaponsis a collection ofWeaponinstances? 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 aPlayerclass which contains its inventory. If the only things that can be carried are instances ofWeaponthen thePlayercan have a list ofWeapons. If there are other carryable objects, some abstraction may be necessary. – David Dec 21 '12 at 15:15