Files
shattered-pixel-dungeon-web…/src/com/shatteredpixel/shatteredpixeldungeon/effects/EmoIcon.java
T
2015-03-02 17:34:37 -05:00

98 lines
2.3 KiB
Java

/*
* Pixel Dungeon
* Copyright (C) 2012-2014 Oleg Dolya
*
* 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.effects;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.watabou.utils.Random;
public class EmoIcon extends Image {
protected float maxSize = 2;
protected float timeScale = 1;
protected boolean growing = true;
protected CharSprite owner;
public EmoIcon( CharSprite owner ) {
super();
this.owner = owner;
GameScene.add( this );
}
@Override
public void update() {
super.update();
if (visible) {
if (growing) {
scale.set( Math.min(scale.x + Game.elapsed * timeScale, maxSize ));
if (scale.x >= maxSize) {
growing = false;
}
} else {
scale.set( Math.max(scale.x - Game.elapsed * timeScale, 1f ));
if (scale.x <= 1) {
growing = true;
}
}
x = owner.x + owner.width - width / 2;
y = owner.y - height;
}
}
public static class Sleep extends EmoIcon {
public Sleep( CharSprite owner ) {
super( owner );
copy( Icons.get( Icons.SLEEP ) );
maxSize = 1.2f;
timeScale = 0.5f;
origin.set( width / 2, height / 2 );
scale.set( Random.Float( 1, maxSize ) );
}
}
public static class Alert extends EmoIcon {
public Alert( CharSprite owner ) {
super( owner );
copy( Icons.get( Icons.ALERT ) );
maxSize = 1.3f;
timeScale = 2;
origin.set( 2.5f, height - 2.5f );
scale.set( Random.Float( 1, maxSize ) );
}
}
}