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.windows;
|
2014-07-27 13:39:07 +00:00
|
|
|
|
2015-11-28 03:37:44 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
|
2016-01-26 20:08:41 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.Heap.Type;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
|
2015-12-31 19:52:11 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.Artifact;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.rings.Ring;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
|
2014-08-03 18:46:22 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.ItemSlot;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.utils.Utils;
|
2016-01-14 06:26:36 +00:00
|
|
|
import com.watabou.noosa.RenderedTextMultiline;
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
public class WndInfoItem extends Window {
|
2016-01-14 06:26:36 +00:00
|
|
|
|
2014-07-27 13:39:07 +00:00
|
|
|
private static final float GAP = 2;
|
|
|
|
|
2015-11-28 03:37:44 +00:00
|
|
|
private static final int WIDTH_P = 120;
|
|
|
|
private static final int WIDTH_L = 144;
|
2014-07-27 13:39:07 +00:00
|
|
|
|
|
|
|
public WndInfoItem( Heap heap ) {
|
|
|
|
|
|
|
|
super();
|
|
|
|
|
|
|
|
if (heap.type == Heap.Type.HEAP || heap.type == Heap.Type.FOR_SALE) {
|
|
|
|
|
|
|
|
Item item = heap.peek();
|
|
|
|
|
|
|
|
int color = TITLE_COLOR;
|
2015-11-10 07:15:11 +00:00
|
|
|
if (item.levelKnown && item.level() > 0) {
|
2015-06-12 20:22:26 +00:00
|
|
|
color = ItemSlot.UPGRADED;
|
2015-11-10 07:15:11 +00:00
|
|
|
} else if (item.levelKnown && item.level() < 0) {
|
2015-06-12 20:22:26 +00:00
|
|
|
color = ItemSlot.DEGRADED;
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|
|
|
|
fillFields( item.image(), item.glowing(), color, item.toString(), item.info() );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
String title;
|
|
|
|
String info;
|
|
|
|
|
2015-02-06 06:07:22 +00:00
|
|
|
if (heap.type == Type.CHEST || heap.type == Type.MIMIC) {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "chest");
|
|
|
|
info = Messages.get(this, "wont_know");
|
2014-07-27 13:39:07 +00:00
|
|
|
} else if (heap.type == Type.TOMB) {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "tomb");
|
|
|
|
info = Messages.get(this, "owner");
|
2014-07-27 13:39:07 +00:00
|
|
|
} else if (heap.type == Type.SKELETON) {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "skeleton");
|
|
|
|
info = Messages.get(this, "skeleton_desc");
|
2015-06-12 20:22:26 +00:00
|
|
|
} else if (heap.type == Type.REMAINS) {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "remains");
|
|
|
|
info = Messages.get(this, "remains_desc");
|
2014-07-27 13:39:07 +00:00
|
|
|
} else if (heap.type == Type.CRYSTAL_CHEST) {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "crystal_chest");
|
2015-06-12 20:22:26 +00:00
|
|
|
if (heap.peek() instanceof Artifact)
|
2015-12-31 19:52:11 +00:00
|
|
|
info = Messages.get(this, "inside", Messages.get(this, "artifact") );
|
2015-06-12 20:22:26 +00:00
|
|
|
else if (heap.peek() instanceof Wand)
|
2015-12-31 19:52:11 +00:00
|
|
|
info = Messages.get(this, "inside", Messages.get(this, "wand") );
|
2015-06-12 20:22:26 +00:00
|
|
|
else if (heap.peek() instanceof Ring)
|
2015-12-31 19:52:11 +00:00
|
|
|
info = Messages.get(this, "inside", Messages.get(this, "ring") );
|
2015-04-07 21:10:50 +00:00
|
|
|
else
|
2016-01-26 20:08:41 +00:00
|
|
|
info = ""; //This shouldn't happen
|
2014-07-27 13:39:07 +00:00
|
|
|
} else {
|
2015-12-31 19:52:11 +00:00
|
|
|
title = Messages.get(this, "locked_chest");
|
|
|
|
info = Messages.get(this, "need_key");
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fillFields( heap.image(), heap.glowing(), TITLE_COLOR, title, info );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public WndInfoItem( Item item ) {
|
|
|
|
|
|
|
|
super();
|
|
|
|
|
|
|
|
int color = TITLE_COLOR;
|
2015-11-10 07:15:11 +00:00
|
|
|
if (item.levelKnown && item.level() > 0) {
|
2015-06-12 20:22:26 +00:00
|
|
|
color = ItemSlot.UPGRADED;
|
2015-11-10 07:15:11 +00:00
|
|
|
} else if (item.levelKnown && item.level() < 0) {
|
2015-06-12 20:22:26 +00:00
|
|
|
color = ItemSlot.DEGRADED;
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fillFields( item.image(), item.glowing(), color, item.toString(), item.info() );
|
|
|
|
}
|
|
|
|
|
|
|
|
private void fillFields( int image, ItemSprite.Glowing glowing, int titleColor, String title, String info ) {
|
2015-11-28 03:37:44 +00:00
|
|
|
|
|
|
|
int width = ShatteredPixelDungeon.landscape() ? WIDTH_L : WIDTH_P;
|
|
|
|
|
2014-07-27 13:39:07 +00:00
|
|
|
IconTitle titlebar = new IconTitle();
|
|
|
|
titlebar.icon( new ItemSprite( image, glowing ) );
|
|
|
|
titlebar.label( Utils.capitalize( title ), titleColor );
|
2015-11-28 03:37:44 +00:00
|
|
|
titlebar.setRect( 0, 0, width, 0 );
|
2014-07-27 13:39:07 +00:00
|
|
|
add( titlebar );
|
|
|
|
|
2016-01-14 06:26:36 +00:00
|
|
|
RenderedTextMultiline txtInfo = PixelScene.renderMultiline( info, 6 );
|
|
|
|
txtInfo.maxWidth(width);
|
|
|
|
txtInfo.setPos(titlebar.left(), titlebar.bottom() + GAP);
|
2014-07-27 13:39:07 +00:00
|
|
|
add( txtInfo );
|
|
|
|
|
2016-01-14 06:26:36 +00:00
|
|
|
resize( width, (int)(txtInfo.top() + txtInfo.height()) );
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|
|
|
|
}
|