/* * BAGSPlayer.bsh * * Copyright 2005 M. Aaron Wadley * * This file is part of BAGS (Beany Adventure Game System). * BAGS (Beany Adventure Game System) is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * BAGS (Beany Adventure Game System) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with BAGS (Beany Adventure Game System); if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ Inventory() { inventory=new Vector(); addItem(item) { if (!hasItem(item)) { inventory.add(item); } } removeItem(item) { if ((i=getItemIndex(item)) > -1) { inventory.remove(i); } } hasItem(item) { for (i:inventory) { if (i.equalsIgnoreCase(item)) { return true; } } return false; } getItemObject(item) { if (hasItem(item)) { return game.gameObjects.getObject(item); } else { return null; } } getItemIndex(item) { for (i=0; i