package loon.action.sprite.effect;
import loon.LSystem;
import loon.LTexture;
import loon.opengl.GLEx;
import loon.opengl.LTexturePack;
import loon.utils.MathUtils;
public class SnowKernel implements IKernel {
private boolean exist;
private LTexture snow;
private int id;
private float offsetX, offsetY, speed, x, y, width, height, snowWidth,
snowHeight;
public SnowKernel(LTexturePack pack, int n, int w, int h) {
snow = pack.getTexture(LSystem.FRAMEWORK_IMG_NAME + "snow_" + n);
snowWidth = snow.width();
snowHeight = snow.height();
width = w;
height = h;
offsetX = 0;
offsetY = n * 0.6f + 1.9f + MathUtils.random() * 0.2f;
speed = MathUtils.random();
}
public int id() {
return id;
}
public void make() {
exist = true;
x = MathUtils.random() * width;
y = -snowHeight;
}
public void update() {
if (!exist) {
if (MathUtils.random() < 0.002) {
make();
}
} else {
x += offsetX;
y += offsetY;
offsetX += speed;
speed += (MathUtils.random() - 0.5) * 0.3;
if (offsetX >= 1.5) {
offsetX = 1.5f;
}
if (offsetX <= -1.5) {
offsetX = -1.5f;
}
if (speed >= 0.2) {
speed = 0.2f;
}
if (speed <= -0.2) {
speed = -0.2f;
}
if (y >= height) {
y = -snowHeight;
x = MathUtils.random() * width;
}
}
}
public void draw(GLEx g, float mx, float my) {
if (exist) {
snow.draw(mx + x, my + y);
}
}
public LTexture get() {
return snow;
}
public float getHeight() {
return snowHeight;
}
public float getWidth() {
return snowWidth;
}
public void close() {
if (snow != null) {
snow.close();
snow = null;
}
}
}