public void critReactRoomStateChange(String command, PC pc, String name) {
Creature temp = null;
for (int i = 0; i < getCount(); i++) {
if (!(getCreatures()[i] instanceof PC) && !(getCreatures()[i].getName().equals(name))) {
temp = getCreatures()[i];
if (temp != null) {
getCreatures()[i].reactStateChange(command, pc);
temp.checkNewRoom();
if (!temp.equals(getCreatures()[i])) {
i--;
}
}
}
}
}
So I switched from having a
private Creature[] creatures;
array
to having a
private ArrayList<Creature> critArr = new ArrayList<Creature>();
ArrayList
I have changed the getCreatures() method to public ArrayList getCreatures() { return this.critArr; }
The count will not be needed as that is just critArr.size().
If more details are needed please let me know.
Basic structure of my program
Room Class
-holds creatures
Creature Class
-defines creatures
so pretty much a Room can have Creatures in it. I have multiple rooms that are set up and connected to each other through a simple interface of north, east, west, south. Not needed information, but this allows you to understand the point. Thanks for any help.