use of com.watabou.noosa.BitmapText in project pixel-dungeon by watabou.
the class BadgesScene method create.
@Override
public void create() {
super.create();
Music.INSTANCE.play(Assets.THEME, true);
Music.INSTANCE.volume(1f);
uiCamera.visible = false;
int w = Camera.main.width;
int h = Camera.main.height;
Archs archs = new Archs();
archs.setSize(w, h);
add(archs);
int pw = (int) Math.min(w, (PixelDungeon.landscape() ? MIN_WIDTH_L : MIN_WIDTH_P) * 3) - 16;
int ph = (int) Math.min(h, (PixelDungeon.landscape() ? MIN_HEIGHT_L : MIN_HEIGHT_P) * 3) - 32;
float size = (float) Math.sqrt(pw * ph / 27f);
int nCols = (int) Math.ceil(pw / size);
int nRows = (int) Math.ceil(ph / size);
size = Math.min(pw / nCols, ph / nRows);
float left = (w - size * nCols) / 2;
float top = (h - size * nRows) / 2;
BitmapText title = PixelScene.createText(TXT_TITLE, 9);
title.hardlight(Window.TITLE_COLOR);
title.measure();
title.x = align((w - title.width()) / 2);
title.y = align((top - title.baseLine()) / 2);
add(title);
Badges.loadGlobal();
List<Badges.Badge> badges = Badges.filtered(true);
for (int i = 0; i < nRows; i++) {
for (int j = 0; j < nCols; j++) {
int index = i * nCols + j;
Badges.Badge b = index < badges.size() ? badges.get(index) : null;
BadgeButton button = new BadgeButton(b);
button.setPos(left + j * size + (size - button.width()) / 2, top + i * size + (size - button.height()) / 2);
add(button);
}
}
ExitButton btnExit = new ExitButton();
btnExit.setPos(Camera.main.width - btnExit.width(), 0);
add(btnExit);
fadeIn();
Badges.loadingListener = new Callback() {
@Override
public void call() {
if (Game.scene() == BadgesScene.this) {
PixelDungeon.switchNoFade(BadgesScene.class);
}
}
};
}
use of com.watabou.noosa.BitmapText in project pixel-dungeon by watabou.
the class PixelScene method createText.
public static BitmapText createText(String text, float size) {
chooseFont(size);
BitmapText result = new BitmapText(text, font);
result.scale.set(scale);
return result;
}
use of com.watabou.noosa.BitmapText in project pixel-dungeon by watabou.
the class StartScene method create.
@Override
public void create() {
super.create();
Badges.loadGlobal();
uiCamera.visible = false;
int w = Camera.main.width;
int h = Camera.main.height;
float width, height;
if (PixelDungeon.landscape()) {
width = WIDTH_L;
height = HEIGHT_L;
} else {
width = WIDTH_P;
height = HEIGHT_P;
}
float left = (w - width) / 2;
float top = (h - height) / 2;
float bottom = h - top;
Archs archs = new Archs();
archs.setSize(w, h);
add(archs);
Image title = BannerSprites.get(Type.SELECT_YOUR_HERO);
title.x = align((w - title.width()) / 2);
title.y = align(top);
add(title);
buttonX = left;
buttonY = bottom - BUTTON_HEIGHT;
btnNewGame = new GameButton(TXT_NEW) {
@Override
protected void onClick() {
if (GamesInProgress.check(curClass) != null) {
StartScene.this.add(new WndOptions(TXT_REALLY, TXT_WARNING, TXT_YES, TXT_NO) {
@Override
protected void onSelect(int index) {
if (index == 0) {
startNewGame();
}
}
});
} else {
startNewGame();
}
}
};
add(btnNewGame);
btnLoad = new GameButton(TXT_LOAD) {
@Override
protected void onClick() {
InterlevelScene.mode = InterlevelScene.Mode.CONTINUE;
Game.switchScene(InterlevelScene.class);
}
};
add(btnLoad);
float centralHeight = buttonY - title.y - title.height();
HeroClass[] classes = { HeroClass.WARRIOR, HeroClass.MAGE, HeroClass.ROGUE, HeroClass.HUNTRESS };
for (HeroClass cl : classes) {
ClassShield shield = new ClassShield(cl);
shields.put(cl, shield);
add(shield);
}
if (PixelDungeon.landscape()) {
float shieldW = width / 4;
float shieldH = Math.min(centralHeight, shieldW);
top = title.y + title.height + (centralHeight - shieldH) / 2;
for (int i = 0; i < classes.length; i++) {
ClassShield shield = shields.get(classes[i]);
shield.setRect(left + i * shieldW, top, shieldW, shieldH);
}
ChallengeButton challenge = new ChallengeButton();
challenge.setPos(w / 2 - challenge.width() / 2, top + shieldH - challenge.height() / 2);
add(challenge);
} else {
float shieldW = width / 2;
float shieldH = Math.min(centralHeight / 2, shieldW * 1.2f);
top = title.y + title.height() + centralHeight / 2 - shieldH;
for (int i = 0; i < classes.length; i++) {
ClassShield shield = shields.get(classes[i]);
shield.setRect(left + (i % 2) * shieldW, top + (i / 2) * shieldH, shieldW, shieldH);
}
ChallengeButton challenge = new ChallengeButton();
challenge.setPos(w / 2 - challenge.width() / 2, top + shieldH - challenge.height() / 2);
add(challenge);
}
unlock = new Group();
add(unlock);
if (!(huntressUnlocked = Badges.isUnlocked(Badges.Badge.BOSS_SLAIN_3))) {
BitmapTextMultiline text = PixelScene.createMultiline(TXT_UNLOCK, 9);
text.maxWidth = (int) width;
text.measure();
float pos = (bottom - BUTTON_HEIGHT) + (BUTTON_HEIGHT - text.height()) / 2;
for (BitmapText line : text.new LineSplitter().split()) {
line.measure();
line.hardlight(0xFFFF00);
line.x = PixelScene.align(w / 2 - line.width() / 2);
line.y = PixelScene.align(pos);
unlock.add(line);
pos += line.height();
}
}
ExitButton btnExit = new ExitButton();
btnExit.setPos(Camera.main.width - btnExit.width(), 0);
add(btnExit);
curClass = null;
updateClass(HeroClass.values()[PixelDungeon.lastClass()]);
fadeIn();
Badges.loadingListener = new Callback() {
@Override
public void call() {
if (Game.scene() == StartScene.this) {
PixelDungeon.switchNoFade(StartScene.class);
}
}
};
}
use of com.watabou.noosa.BitmapText in project pixel-dungeon by watabou.
the class ItemSlot method createChildren.
@Override
protected void createChildren() {
super.createChildren();
icon = new ItemSprite();
add(icon);
topLeft = new BitmapText(PixelScene.font1x);
add(topLeft);
topRight = new BitmapText(PixelScene.font1x);
add(topRight);
bottomRight = new BitmapText(PixelScene.font1x);
add(bottomRight);
}
use of com.watabou.noosa.BitmapText in project pixel-dungeon by watabou.
the class DangerIndicator method createChildren.
@Override
protected void createChildren() {
super.createChildren();
number = new BitmapText(PixelScene.font1x);
add(number);
icon = Icons.SKULL.get();
add(icon);
}
Aggregations