Merging 1.9.1 source: ui changes (plus wndchooseway)
This commit is contained in:
parent
e35573883b
commit
83d492440e
|
@ -40,10 +40,12 @@ public class Archs extends Component {
|
||||||
@Override
|
@Override
|
||||||
protected void createChildren() {
|
protected void createChildren() {
|
||||||
arcsBg = new SkinnedBlock( 1, 1, Assets.ARCS_BG );
|
arcsBg = new SkinnedBlock( 1, 1, Assets.ARCS_BG );
|
||||||
|
arcsBg.autoAdjust = true;
|
||||||
arcsBg.offsetTo( 0, offsB );
|
arcsBg.offsetTo( 0, offsB );
|
||||||
add( arcsBg );
|
add( arcsBg );
|
||||||
|
|
||||||
arcsFg = new SkinnedBlock( 1, 1, Assets.ARCS_FG );
|
arcsFg = new SkinnedBlock( 1, 1, Assets.ARCS_FG );
|
||||||
|
arcsFg.autoAdjust = true;
|
||||||
arcsFg.offsetTo( 0, offsF );
|
arcsFg.offsetTo( 0, offsF );
|
||||||
add( arcsFg );
|
add( arcsFg );
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,6 @@ public class BadgesList extends ScrollPane {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void layout() {
|
protected void layout() {
|
||||||
super.layout();
|
|
||||||
|
|
||||||
float pos = 0;
|
float pos = 0;
|
||||||
|
|
||||||
|
@ -65,6 +64,8 @@ public class BadgesList extends ScrollPane {
|
||||||
}
|
}
|
||||||
|
|
||||||
content.setSize( width, pos );
|
content.setSize( width, pos );
|
||||||
|
|
||||||
|
super.layout();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -77,6 +77,8 @@ public class BuffIndicator extends Component {
|
||||||
public static final int LOCKED_FLOOR= 35;
|
public static final int LOCKED_FLOOR= 35;
|
||||||
public static final int CORRUPT = 36;
|
public static final int CORRUPT = 36;
|
||||||
public static final int BLESS = 37;
|
public static final int BLESS = 37;
|
||||||
|
public static final int RAGE = 38;
|
||||||
|
public static final int SACRIFICE = 39;
|
||||||
|
|
||||||
public static final int SIZE = 7;
|
public static final int SIZE = 7;
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
*/
|
*/
|
||||||
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import com.watabou.noosa.BitmapTextMultiline;
|
import com.watabou.noosa.BitmapTextMultiline;
|
||||||
|
@ -32,18 +33,28 @@ import com.watabou.utils.Signal;
|
||||||
|
|
||||||
public class GameLog extends Component implements Signal.Listener<String> {
|
public class GameLog extends Component implements Signal.Listener<String> {
|
||||||
|
|
||||||
private static final int MAX_MESSAGES = 3;
|
private static final int MAX_LINES = 3;
|
||||||
|
|
||||||
private static final Pattern PUNCTUATION = Pattern.compile( ".*[.,;?! ]$" );
|
private static final Pattern PUNCTUATION = Pattern.compile( ".*[.,;?! ]$" );
|
||||||
|
|
||||||
private BitmapTextMultiline lastEntry;
|
private BitmapTextMultiline lastEntry;
|
||||||
private int lastColor;
|
private int lastColor;
|
||||||
|
|
||||||
|
private static ArrayList<Entry> entries = new ArrayList<Entry>();
|
||||||
|
|
||||||
public GameLog() {
|
public GameLog() {
|
||||||
super();
|
super();
|
||||||
GLog.update.add( this );
|
GLog.update.add( this );
|
||||||
|
|
||||||
newLine();
|
recreateLines();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void recreateLines() {
|
||||||
|
for (Entry entry : entries) {
|
||||||
|
lastEntry = PixelScene.createMultiline( entry.text, 6 );
|
||||||
|
lastEntry.hardlight( lastColor = entry.color );
|
||||||
|
add( lastEntry );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void newLine() {
|
public void newLine() {
|
||||||
|
@ -74,25 +85,42 @@ public class GameLog extends Component implements Signal.Listener<String> {
|
||||||
text = Utils.capitalize( text ) +
|
text = Utils.capitalize( text ) +
|
||||||
(PUNCTUATION.matcher( text ).matches() ? "" : ".");
|
(PUNCTUATION.matcher( text ).matches() ? "" : ".");
|
||||||
|
|
||||||
if (lastEntry != null && color == lastColor) {
|
if (lastEntry != null && color == lastColor && lastEntry.nLines < MAX_LINES) {
|
||||||
|
|
||||||
String lastMessage = lastEntry.text();
|
String lastMessage = lastEntry.text();
|
||||||
lastEntry.text( lastMessage.length() == 0 ? text : lastMessage + " " + text );
|
lastEntry.text( lastMessage.length() == 0 ? text : lastMessage + " " + text );
|
||||||
lastEntry.measure();
|
lastEntry.measure();
|
||||||
|
|
||||||
|
entries.get( entries.size() - 1 ).text = lastEntry.text();
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
lastEntry = PixelScene.createMultiline( text, 6 );
|
lastEntry = PixelScene.createMultiline( text, 6 );
|
||||||
lastEntry.maxWidth = (int)width;
|
|
||||||
lastEntry.measure();
|
|
||||||
lastEntry.hardlight( color );
|
lastEntry.hardlight( color );
|
||||||
lastColor = color;
|
lastColor = color;
|
||||||
add( lastEntry );
|
add( lastEntry );
|
||||||
|
|
||||||
|
entries.add( new Entry( text, color ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (length > MAX_MESSAGES) {
|
if (length > 0) {
|
||||||
remove( members.get( 0 ) );
|
int nLines;
|
||||||
|
do {
|
||||||
|
nLines = 0;
|
||||||
|
for (int i = 0; i < length; i++) {
|
||||||
|
nLines += ((BitmapTextMultiline) members.get(i)).nLines;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nLines > MAX_LINES) {
|
||||||
|
remove(members.get(0));
|
||||||
|
|
||||||
|
entries.remove( 0 );
|
||||||
|
}
|
||||||
|
} while (nLines > MAX_LINES);
|
||||||
|
if (entries.isEmpty()) {
|
||||||
|
lastEntry = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
layout();
|
layout();
|
||||||
|
@ -103,6 +131,8 @@ public class GameLog extends Component implements Signal.Listener<String> {
|
||||||
float pos = y;
|
float pos = y;
|
||||||
for (int i=length-1; i >= 0; i--) {
|
for (int i=length-1; i >= 0; i--) {
|
||||||
BitmapTextMultiline entry = (BitmapTextMultiline)members.get( i );
|
BitmapTextMultiline entry = (BitmapTextMultiline)members.get( i );
|
||||||
|
entry.maxWidth = (int)width;
|
||||||
|
entry.measure();
|
||||||
entry.x = x;
|
entry.x = x;
|
||||||
entry.y = pos - entry.height();
|
entry.y = pos - entry.height();
|
||||||
pos -= entry.height();
|
pos -= entry.height();
|
||||||
|
@ -114,4 +144,17 @@ public class GameLog extends Component implements Signal.Listener<String> {
|
||||||
GLog.update.remove( this );
|
GLog.update.remove( this );
|
||||||
super.destroy();
|
super.destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static class Entry {
|
||||||
|
public String text;
|
||||||
|
public int color;
|
||||||
|
public Entry( String text, int color ) {
|
||||||
|
this.text = text;
|
||||||
|
this.color = color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void wipe() {
|
||||||
|
entries.clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,80 @@
|
||||||
|
/*
|
||||||
|
* 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
|
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
||||||
|
|
||||||
|
import com.watabou.noosa.BitmapTextMultiline;
|
||||||
|
import com.watabou.noosa.ui.Component;
|
||||||
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
||||||
|
import com.watabou.utils.Highlighter;
|
||||||
|
|
||||||
|
public class HighlightedText extends Component {
|
||||||
|
|
||||||
|
protected BitmapTextMultiline normal;
|
||||||
|
protected BitmapTextMultiline highlighted;
|
||||||
|
|
||||||
|
protected int nColor = 0xFFFFFF;
|
||||||
|
protected int hColor = 0xFFFF44;
|
||||||
|
|
||||||
|
public HighlightedText( float size ) {
|
||||||
|
normal = PixelScene.createMultiline( size );
|
||||||
|
add( normal );
|
||||||
|
|
||||||
|
highlighted = PixelScene.createMultiline( size );
|
||||||
|
add( highlighted );
|
||||||
|
|
||||||
|
setColor( 0xFFFFFF, 0xFFFF44 );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void layout() {
|
||||||
|
normal.x = highlighted.x = x;
|
||||||
|
normal.y = highlighted.y = y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void text( String value, int maxWidth ) {
|
||||||
|
Highlighter hl = new Highlighter( value );
|
||||||
|
|
||||||
|
normal.text( hl.text );
|
||||||
|
normal.maxWidth = maxWidth;
|
||||||
|
normal.measure();
|
||||||
|
|
||||||
|
if (hl.isHighlighted()) {
|
||||||
|
normal.mask = hl.inverted();
|
||||||
|
|
||||||
|
highlighted.text( hl.text );
|
||||||
|
highlighted.maxWidth = maxWidth;
|
||||||
|
highlighted.measure();
|
||||||
|
|
||||||
|
highlighted.mask = hl.mask;
|
||||||
|
highlighted.visible = true;
|
||||||
|
} else {
|
||||||
|
highlighted.visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
width = normal.width();
|
||||||
|
height = normal.height();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setColor( int n, int h ) {
|
||||||
|
normal.hardlight( n );
|
||||||
|
highlighted.hardlight( h );
|
||||||
|
}
|
||||||
|
}
|
|
@ -22,6 +22,7 @@ package com.shatteredpixel.shatteredpixeldungeon.ui;
|
||||||
|
|
||||||
import com.watabou.input.Touchscreen.Touch;
|
import com.watabou.input.Touchscreen.Touch;
|
||||||
import com.watabou.noosa.Camera;
|
import com.watabou.noosa.Camera;
|
||||||
|
import com.watabou.noosa.ColorBlock;
|
||||||
import com.watabou.noosa.TouchArea;
|
import com.watabou.noosa.TouchArea;
|
||||||
import com.watabou.noosa.ui.Component;
|
import com.watabou.noosa.ui.Component;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
||||||
|
@ -30,8 +31,12 @@ import com.watabou.utils.PointF;
|
||||||
|
|
||||||
public class ScrollPane extends Component {
|
public class ScrollPane extends Component {
|
||||||
|
|
||||||
|
protected static final int THUMB_COLOR = 0xFF7b8073;
|
||||||
|
protected static final float THUMB_ALPHA = 0.5f;
|
||||||
|
|
||||||
protected TouchController controller;
|
protected TouchController controller;
|
||||||
protected Component content;
|
protected Component content;
|
||||||
|
protected ColorBlock thumb;
|
||||||
|
|
||||||
protected float minX;
|
protected float minX;
|
||||||
protected float minY;
|
protected float minY;
|
||||||
|
@ -65,6 +70,10 @@ public class ScrollPane extends Component {
|
||||||
protected void createChildren() {
|
protected void createChildren() {
|
||||||
controller = new TouchController();
|
controller = new TouchController();
|
||||||
add( controller );
|
add( controller );
|
||||||
|
|
||||||
|
thumb = new ColorBlock( 1, 1, THUMB_COLOR );
|
||||||
|
thumb.am = THUMB_ALPHA;
|
||||||
|
add( thumb );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -81,6 +90,13 @@ public class ScrollPane extends Component {
|
||||||
cs.x = p.x;
|
cs.x = p.x;
|
||||||
cs.y = p.y;
|
cs.y = p.y;
|
||||||
cs.resize( (int)width, (int)height );
|
cs.resize( (int)width, (int)height );
|
||||||
|
|
||||||
|
thumb.visible = height < content.height();
|
||||||
|
if (thumb.visible) {
|
||||||
|
thumb.scale.set( 2, height * height / content.height() );
|
||||||
|
thumb.x = right() - thumb.width();
|
||||||
|
thumb.y = y;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Component content() {
|
public Component content() {
|
||||||
|
@ -104,6 +120,7 @@ public class ScrollPane extends Component {
|
||||||
if (dragging) {
|
if (dragging) {
|
||||||
|
|
||||||
dragging = false;
|
dragging = false;
|
||||||
|
thumb.am = THUMB_ALPHA;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -136,6 +153,7 @@ public class ScrollPane extends Component {
|
||||||
c.scroll.y = 0;
|
c.scroll.y = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
thumb.y = y + height * c.scroll.y / content.height();
|
||||||
|
|
||||||
lastPos.set( t.current );
|
lastPos.set( t.current );
|
||||||
|
|
||||||
|
@ -143,6 +161,7 @@ public class ScrollPane extends Component {
|
||||||
|
|
||||||
dragging = true;
|
dragging = true;
|
||||||
lastPos.set( t.current );
|
lastPos.set( t.current );
|
||||||
|
thumb.am = 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ import com.watabou.noosa.Image;
|
||||||
import com.watabou.noosa.NinePatch;
|
import com.watabou.noosa.NinePatch;
|
||||||
import com.watabou.noosa.TouchArea;
|
import com.watabou.noosa.TouchArea;
|
||||||
import com.watabou.noosa.audio.Sample;
|
import com.watabou.noosa.audio.Sample;
|
||||||
|
import com.watabou.noosa.particles.BitmaskEmitter;
|
||||||
import com.watabou.noosa.particles.Emitter;
|
import com.watabou.noosa.particles.Emitter;
|
||||||
import com.watabou.noosa.ui.Button;
|
import com.watabou.noosa.ui.Button;
|
||||||
import com.watabou.noosa.ui.Component;
|
import com.watabou.noosa.ui.Component;
|
||||||
|
@ -90,8 +91,8 @@ public class StatusPane extends Component {
|
||||||
avatar = HeroSprite.avatar( Dungeon.hero.heroClass, lastTier );
|
avatar = HeroSprite.avatar( Dungeon.hero.heroClass, lastTier );
|
||||||
add( avatar );
|
add( avatar );
|
||||||
|
|
||||||
blood = new Emitter();
|
blood = new BitmaskEmitter( avatar );
|
||||||
blood.pos( avatar );
|
|
||||||
blood.pour( BloodParticle.FACTORY, 0.3f );
|
blood.pour( BloodParticle.FACTORY, 0.3f );
|
||||||
blood.autoKill = false;
|
blood.autoKill = false;
|
||||||
blood.on = false;
|
blood.on = false;
|
||||||
|
@ -192,8 +193,8 @@ public class StatusPane extends Component {
|
||||||
lastLvl = Dungeon.hero.lvl;
|
lastLvl = Dungeon.hero.lvl;
|
||||||
level.text( Integer.toString( lastLvl ) );
|
level.text( Integer.toString( lastLvl ) );
|
||||||
level.measure();
|
level.measure();
|
||||||
level.x = 27.0f - level.width() / 2;
|
level.x = 27.5f - level.width() / 2;
|
||||||
level.y = 27.5f - level.baseLine() / 2;
|
level.y = 28.0f - level.baseLine() / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
int k = IronKey.curDepthQuantity;
|
int k = IronKey.curDepthQuantity;
|
||||||
|
|
|
@ -20,9 +20,6 @@
|
||||||
*/
|
*/
|
||||||
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
||||||
|
|
||||||
import java.util.regex.Matcher;
|
|
||||||
import java.util.regex.Pattern;
|
|
||||||
|
|
||||||
import com.watabou.input.Keys;
|
import com.watabou.input.Keys;
|
||||||
import com.watabou.input.Keys.Key;
|
import com.watabou.input.Keys.Key;
|
||||||
import com.watabou.input.Touchscreen.Touch;
|
import com.watabou.input.Touchscreen.Touch;
|
||||||
|
@ -158,61 +155,4 @@ public class Window extends Group implements Signal.Listener<Key> {
|
||||||
|
|
||||||
public void onMenuPressed() {
|
public void onMenuPressed() {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static class Highlighter {
|
|
||||||
|
|
||||||
private static final Pattern HIGHLIGHTER = Pattern.compile( "_(.*?)_" );
|
|
||||||
private static final Pattern STRIPPER = Pattern.compile( "[ \n]" );
|
|
||||||
|
|
||||||
public String text;
|
|
||||||
|
|
||||||
public boolean[] mask;
|
|
||||||
|
|
||||||
public Highlighter( String text ) {
|
|
||||||
|
|
||||||
String stripped = STRIPPER.matcher( text ).replaceAll( "" );
|
|
||||||
mask = new boolean[stripped.length()];
|
|
||||||
|
|
||||||
Matcher m = HIGHLIGHTER.matcher( stripped );
|
|
||||||
|
|
||||||
int pos = 0;
|
|
||||||
int lastMatch = 0;
|
|
||||||
|
|
||||||
while (m.find()) {
|
|
||||||
pos += (m.start() - lastMatch);
|
|
||||||
int groupLen = m.group( 1 ).length();
|
|
||||||
for (int i=pos; i < pos + groupLen; i++) {
|
|
||||||
mask[i] = true;
|
|
||||||
}
|
|
||||||
pos += groupLen;
|
|
||||||
lastMatch = m.end();
|
|
||||||
}
|
|
||||||
|
|
||||||
m.reset( text );
|
|
||||||
StringBuffer sb = new StringBuffer();
|
|
||||||
while (m.find()) {
|
|
||||||
m.appendReplacement( sb, m.group( 1 ) );
|
|
||||||
}
|
|
||||||
m.appendTail( sb );
|
|
||||||
|
|
||||||
this.text = sb.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean[] inverted() {
|
|
||||||
boolean[] result = new boolean[mask.length];
|
|
||||||
for (int i=0; i < result.length; i++) {
|
|
||||||
result[i] = !mask[i];
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isHighlighted() {
|
|
||||||
for (int i=0; i < mask.length; i++) {
|
|
||||||
if (mask[i]) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,14 +20,14 @@
|
||||||
*/
|
*/
|
||||||
package com.shatteredpixel.shatteredpixeldungeon.windows;
|
package com.shatteredpixel.shatteredpixeldungeon.windows;
|
||||||
|
|
||||||
import com.watabou.noosa.BitmapTextMultiline;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.HighlightedText;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass;
|
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.items.TomeOfMastery;
|
import com.shatteredpixel.shatteredpixeldungeon.items.TomeOfMastery;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
|
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.utils.Utils;
|
import com.shatteredpixel.shatteredpixeldungeon.utils.Utils;
|
||||||
|
import com.watabou.utils.Highlighter;
|
||||||
|
|
||||||
public class WndChooseWay extends Window {
|
public class WndChooseWay extends Window {
|
||||||
|
|
||||||
|
@ -48,28 +48,10 @@ public class WndChooseWay extends Window {
|
||||||
titlebar.setRect( 0, 0, WIDTH, 0 );
|
titlebar.setRect( 0, 0, WIDTH, 0 );
|
||||||
add( titlebar );
|
add( titlebar );
|
||||||
|
|
||||||
Highlighter hl = new Highlighter( way1.desc() + "\n\n" + way2.desc() + "\n\n" + TXT_MESSAGE );
|
HighlightedText hl = new HighlightedText( 6 );
|
||||||
|
hl.text( way1.desc() + "\n\n" + way2.desc() + "\n\n" + TXT_MESSAGE, WIDTH );
|
||||||
BitmapTextMultiline normal = PixelScene.createMultiline( hl.text, 6 );
|
hl.setPos( titlebar.left(), titlebar.bottom() + GAP );
|
||||||
normal.maxWidth = WIDTH;
|
add( hl );
|
||||||
normal.measure();
|
|
||||||
normal.x = titlebar.left();
|
|
||||||
normal.y = titlebar.bottom() + GAP;
|
|
||||||
add( normal );
|
|
||||||
|
|
||||||
if (hl.isHighlighted()) {
|
|
||||||
normal.mask = hl.inverted();
|
|
||||||
|
|
||||||
BitmapTextMultiline highlighted = PixelScene.createMultiline( hl.text, 6 );
|
|
||||||
highlighted.maxWidth = normal.maxWidth;
|
|
||||||
highlighted.measure();
|
|
||||||
highlighted.x = normal.x;
|
|
||||||
highlighted.y = normal.y;
|
|
||||||
add( highlighted );
|
|
||||||
|
|
||||||
highlighted.mask = hl.mask;
|
|
||||||
highlighted.hardlight( TITLE_COLOR );
|
|
||||||
}
|
|
||||||
|
|
||||||
RedButton btnWay1 = new RedButton( Utils.capitalize( way1.title() ) ) {
|
RedButton btnWay1 = new RedButton( Utils.capitalize( way1.title() ) ) {
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,7 +60,7 @@ public class WndChooseWay extends Window {
|
||||||
tome.choose( way1 );
|
tome.choose( way1 );
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
btnWay1.setRect( 0, normal.y + normal.height() + GAP, (WIDTH - GAP) / 2, BTN_HEIGHT );
|
btnWay1.setRect( 0, hl.bottom() + GAP, (WIDTH - GAP) / 2, BTN_HEIGHT );
|
||||||
add( btnWay1 );
|
add( btnWay1 );
|
||||||
|
|
||||||
RedButton btnWay2 = new RedButton( Utils.capitalize( way2.title() ) ) {
|
RedButton btnWay2 = new RedButton( Utils.capitalize( way2.title() ) ) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user