/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2015 Evan Debenham * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 this program. If not, see */ package com.shatteredpixel.shatteredpixeldungeon.items; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; import com.watabou.noosa.audio.Sample; import com.watabou.utils.Bundle; import java.util.ArrayList; public class DewVial extends Item { private static final int MAX_VOLUME = 10; private static final String AC_DRINK = "DRINK"; private static final float TIME_TO_DRINK = 1f; private static final String TXT_STATUS = "%d/%d"; { image = ItemSpriteSheet.VIAL; defaultAction = AC_DRINK; unique = true; } private int volume = 0; private static final String VOLUME = "volume"; @Override public void storeInBundle( Bundle bundle ) { super.storeInBundle( bundle ); bundle.put( VOLUME, volume ); } @Override public void restoreFromBundle( Bundle bundle ) { super.restoreFromBundle( bundle ); volume = bundle.getInt( VOLUME ); } @Override public ArrayList actions( Hero hero ) { ArrayList actions = super.actions( hero ); if (volume > 0) { actions.add( AC_DRINK ); } return actions; } @Override public void execute( final Hero hero, String action ) { if (action.equals( AC_DRINK )) { if (volume > 0) { int value = 1 + (Dungeon.depth - 1) / 5; if (hero.heroClass == HeroClass.HUNTRESS) { value++; } value *= volume; value = (int)Math.max(volume*volume*.01*hero.HT, value); int effect = Math.min( hero.HT - hero.HP, value ); if (effect > 0) { hero.HP += effect; hero.sprite.emitter().burst( Speck.factory( Speck.HEALING ), volume > 5 ? 2 : 1 ); hero.sprite.showStatus( CharSprite.POSITIVE, Messages.get(this, "value", effect) ); } volume = 0; hero.spend( TIME_TO_DRINK ); hero.busy(); Sample.INSTANCE.play( Assets.SND_DRINK ); hero.sprite.operate( hero.pos ); updateQuickslot(); } else { GLog.w( Messages.get(this, "empty") ); } } else { super.execute( hero, action ); } } public void empty() {volume = 0; updateQuickslot();} @Override public boolean isUpgradable() { return false; } @Override public boolean isIdentified() { return true; } public boolean isFull() { return volume >= MAX_VOLUME; } public void collectDew( Dewdrop dew ) { GLog.i( Messages.get(this, "collected") ); volume += dew.quantity; if (volume >= MAX_VOLUME) { volume = MAX_VOLUME; GLog.p( Messages.get(this, "full") ); } updateQuickslot(); } public void fill() { volume = MAX_VOLUME; updateQuickslot(); } @Override public String status() { return Messages.format( TXT_STATUS, volume, MAX_VOLUME ); } @Override public String toString() { return super.toString() + " (" + status() + ")" ; } }