2014-07-27 13:39:07 +00:00
|
|
|
/*
|
|
|
|
* Pixel Dungeon
|
2015-06-12 20:44:04 +00:00
|
|
|
* Copyright (C) 2012-2015 Oleg Dolya
|
|
|
|
*
|
|
|
|
* Shattered Pixel Dungeon
|
|
|
|
* Copyright (C) 2014-2015 Evan Debenham
|
2014-07-27 13:39:07 +00:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2014-08-03 18:46:22 +00:00
|
|
|
package com.shatteredpixel.shatteredpixeldungeon.items;
|
2014-07-27 13:39:07 +00:00
|
|
|
|
2014-08-03 18:46:22 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.Badges;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.Statistics;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.AmuletScene;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
2016-03-24 22:53:57 +00:00
|
|
|
import com.watabou.noosa.Game;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
public class Amulet extends Item {
|
|
|
|
|
2016-01-23 03:12:02 +00:00
|
|
|
private static final String AC_END = "END";
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
image = ItemSpriteSheet.AMULET;
|
|
|
|
|
|
|
|
unique = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ArrayList<String> actions( Hero hero ) {
|
|
|
|
ArrayList<String> actions = super.actions( hero );
|
|
|
|
actions.add( AC_END );
|
|
|
|
return actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void execute( Hero hero, String action ) {
|
2016-01-23 03:12:02 +00:00
|
|
|
if (action.equals(AC_END)) {
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
showAmuletScene( false );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
super.execute( hero, action );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean doPickUp( Hero hero ) {
|
|
|
|
if (super.doPickUp( hero )) {
|
|
|
|
|
|
|
|
if (!Statistics.amuletObtained) {
|
|
|
|
Statistics.amuletObtained = true;
|
|
|
|
Badges.validateVictory();
|
2016-03-24 22:53:57 +00:00
|
|
|
hero.spend(-TIME_TO_PICK_UP);
|
2014-07-27 13:39:07 +00:00
|
|
|
showAmuletScene( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void showAmuletScene( boolean showText ) {
|
|
|
|
try {
|
|
|
|
Dungeon.saveAll();
|
|
|
|
AmuletScene.noText = !showText;
|
|
|
|
Game.switchScene( AmuletScene.class );
|
|
|
|
} catch (IOException e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isIdentified() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isUpgradable() {
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-04 00:43:24 +00:00
|
|
|
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|