92 lines
2.6 KiB
Java
92 lines
2.6 KiB
Java
/*
|
|
* 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.windows;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
|
|
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
|
|
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
|
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.CheckBox;
|
|
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
|
|
import com.watabou.noosa.RenderedText;
|
|
|
|
public class WndChallenges extends Window {
|
|
|
|
private static final int WIDTH = 108;
|
|
private static final int TTL_HEIGHT = 12;
|
|
private static final int BTN_HEIGHT = 18;
|
|
private static final int GAP = 1;
|
|
|
|
private boolean editable;
|
|
private ArrayList<CheckBox> boxes;
|
|
|
|
public WndChallenges( int checked, boolean editable ) {
|
|
|
|
super();
|
|
|
|
this.editable = editable;
|
|
|
|
RenderedText title = PixelScene.renderText( Messages.get(this, "title"), 9 );
|
|
title.hardlight( TITLE_COLOR );
|
|
title.x = (WIDTH - title.width()) / 2;
|
|
title.y = (TTL_HEIGHT - title.height()) / 2;
|
|
add( title );
|
|
|
|
boxes = new ArrayList<CheckBox>();
|
|
|
|
float pos = TTL_HEIGHT;
|
|
for (int i=0; i < Challenges.NAME_IDS.length; i++) {
|
|
|
|
CheckBox cb = new CheckBox( Messages.get(Challenges.class, Challenges.NAME_IDS[i]) );
|
|
cb.checked( (checked & Challenges.MASKS[i]) != 0 );
|
|
cb.active = editable;
|
|
|
|
if (i > 0) {
|
|
pos += GAP;
|
|
}
|
|
cb.setRect( 0, pos, WIDTH, BTN_HEIGHT );
|
|
pos = cb.bottom();
|
|
|
|
add( cb );
|
|
boxes.add( cb );
|
|
}
|
|
|
|
resize( WIDTH, (int)pos );
|
|
}
|
|
|
|
@Override
|
|
public void onBackPressed() {
|
|
|
|
if (editable) {
|
|
int value = 0;
|
|
for (int i=0; i < boxes.size(); i++) {
|
|
if (boxes.get( i ).checked()) {
|
|
value |= Challenges.MASKS[i];
|
|
}
|
|
}
|
|
ShatteredPixelDungeon.challenges( value );
|
|
}
|
|
|
|
super.onBackPressed();
|
|
}
|
|
} |