package loon.srpg.effect;
import loon.LSystem;
import loon.core.graphics.device.LColor;
import loon.core.graphics.opengl.GLEx;
/**
*
* Copyright 2008 - 2011
*
* 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 loonframework
* @author chenpeng
* @email:ceponline@yahoo.com.cn
* @version 0.1
*/
public class SRPGOUTEffect extends SRPGEffect {
private int t_x;
private int t_y;
private LColor color;
private TriangleEffect[] de;
public SRPGOUTEffect(int x, int y) {
this(x, y, LColor.black);
}
public SRPGOUTEffect(int x, int y, LColor color) {
this.t_x = x;
this.t_y = y;
this.color = color;
float[][] res = { { 0.0f, 30f }, { 24f, -15f }, { -24f, -15f } };
this.de = new TriangleEffect[8];
this.de[0] = new TriangleEffect(res, 2f, 0.0f, 36f);
this.de[1] = new TriangleEffect(res, 0.0f, 2f, 36f);
this.de[2] = new TriangleEffect(res, -2f, 0.0f, 36f);
this.de[3] = new TriangleEffect(res, 0.0f, -2f, 36f);
this.de[4] = new TriangleEffect(res, 1.3999999999999999f,
1.3999999999999999f, 36f);
this.de[5] = new TriangleEffect(res, -1.3999999999999999f,
1.3999999999999999f, 36f);
this.de[6] = new TriangleEffect(res, 1.3999999999999999f,
-1.3999999999999999f, 36f);
this.de[7] = new TriangleEffect(res, -1.3999999999999999f,
-1.3999999999999999f, 36f);
this.setExist(true);
}
@Override
public void draw(GLEx g, int x, int y) {
next();
g.setColor(color);
for (int i = 0; i < de.length; i++) {
de[i].drawPaint(g, t_x - x, LSystem.screenRect.height - (t_y - y));
}
if (super.frame > 40) {
setExist(false);
}
}
}