package loon.action.sprite.effect;
import loon.LSystem;
import loon.core.graphics.opengl.GLEx;
import loon.core.graphics.opengl.LTexture;
import loon.core.graphics.opengl.LTextures;
import loon.utils.MathUtils;
/**
* Copyright 2008 - 2009
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* @project loon
* @author cping
* @email:javachenpeng@yahoo.com
* @version 0.1
*/
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(int n, int w, int h) {
snow = LTextures.loadTexture(
(LSystem.FRAMEWORK_IMG_NAME + "snow_" + n + ".png").intern());
snowWidth = snow.getWidth();
snowHeight = snow.getHeight();
width = w;
height = h;
offsetX = 0;
offsetY = n * 0.6f + 1.9f + MathUtils.random() * 0.2f;
speed = MathUtils.random();
}
@Override
public int id() {
return id;
}
public void make() {
exist = true;
x = MathUtils.random() * width;
y = -snowHeight;
}
@Override
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;
}
}
}
@Override
public void draw(GLEx g) {
if (exist) {
snow.draw(x, y);
}
}
@Override
public LTexture get() {
return snow;
}
@Override
public float getHeight() {
return snowHeight;
}
@Override
public float getWidth() {
return snowWidth;
}
@Override
public void dispose() {
if (snow != null) {
snow.destroy();
snow = null;
}
}
}