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
|
2016-05-08 23:54:12 +00:00
|
|
|
* Copyright (C) 2014-2016 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.Item;
|
2015-12-31 19:52:11 +00:00
|
|
|
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;
|
2016-02-12 18:46:42 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextMultiline;
|
2014-08-03 18:46:22 +00:00
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
|
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 {
|
2016-04-22 05:23:11 +00:00
|
|
|
|
|
|
|
fillFields( heap.image(), heap.glowing(), TITLE_COLOR, heap.toString(), heap.info() );
|
|
|
|
|
2014-07-27 13:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 ) );
|
2016-01-28 01:11:17 +00:00
|
|
|
titlebar.label( Messages.titleCase( 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
|
|
|
}
|
|
|
|
}
|