/** * Copyright 2008 - 2010 * * 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.1 */ package loon.action.avg; import java.util.HashMap; import loon.AndroidGraphicsUtils; import loon.core.graphics.device.LGraphics; import loon.core.graphics.device.LImage; import loon.core.graphics.opengl.GLLoader; import loon.core.graphics.opengl.LTexture; final public class AVGDialog { private static HashMap<String, LTexture> lazyImages; public final static LTexture getRMXPDialog(String fileName, int width, int height) { if (lazyImages == null) { lazyImages = new HashMap<String, LTexture>(10); } LImage dialog = AndroidGraphicsUtils.loadImage(fileName); int w = dialog.getWidth(); int[] pixels = dialog.getPixels(); int index = -1; int count = 0; int pixel; for (int i = 0; i < 5; i++) { pixel = pixels[(141 + i) + w * 12]; if (index == -1) { index = pixel; } if (index == pixel) { count++; } } if (count == 5) { return getRMXPDialog(dialog, width, height, 16, 5); } else if (count == 1) { return getRMXPDialog(dialog, width, height, 27, 5); } else if (count == 2) { return getRMXPDialog(dialog, width, height, 20, 5); } else { return getRMXPDialog(dialog, width, height, 27, 5); } } public final static LTexture getRMXPloadBuoyage(String fileName, int width, int height) { return getRMXPloadBuoyage(AndroidGraphicsUtils.loadImage(fileName), width, height); } public final static LTexture getRMXPloadBuoyage(LImage rmxpImage, int width, int height) { if (lazyImages == null) { lazyImages = new HashMap<String, LTexture>(10); } String keyName = ("buoyage" + width + "|" + height).intern(); LTexture lazy = lazyImages.get(keyName); if (lazy == null) { LImage lazyImage; LImage image, left, right, center, up, down = null; final int objWidth = 32; final int objHeight = 32; final int x1 = 128; final int x2 = 160; final int y1 = 64; final int y2 = 96; final int k = 1; try { image = AndroidGraphicsUtils.drawClipImage(rmxpImage, objWidth, objHeight, x1, y1, x2, y2); lazyImage = LImage.createImage(width, height, false); LGraphics g = lazyImage.getLGraphics(); left = AndroidGraphicsUtils.drawClipImage(image, k, height, 0, 0, k, objHeight); right = AndroidGraphicsUtils.drawClipImage(image, k, height, objWidth - k, 0, objWidth, objHeight); center = AndroidGraphicsUtils.drawClipImage(image, width, height, k, k, objWidth - k, objHeight - k); up = AndroidGraphicsUtils.drawClipImage(image, width, k, 0, 0, objWidth, k); down = AndroidGraphicsUtils.drawClipImage(image, width, k, 0, objHeight - k, objWidth, objHeight); g.drawImage(center, 0, 0); g.drawImage(left, 0, 0); g.drawImage(right, width - k, 0); g.drawImage(up, 0, 0); g.drawImage(down, 0, height - k); g.dispose(); lazy = new LTexture(GLLoader.getTextureData(lazyImage)); if (lazyImage != null) { lazyImage.dispose(); lazyImage = null; } lazyImages.put(keyName, lazy); } catch (Exception e) { return null; } finally { left = null; right = null; center = null; up = null; down = null; image = null; } } return lazy; } private final static LTexture getRMXPDialog(LImage rmxpImage, int width, int height, int size, int offset) { if (lazyImages == null) { lazyImages = new HashMap<String, LTexture>(10); } String keyName = "dialog" + width + "|" + height; LTexture lazy = lazyImages.get(keyName); if (lazy == null) { try { final int objWidth = 64; final int objHeight = 64; final int x1 = 128; final int x2 = 192; final int y1 = 0; final int y2 = 64; int center_size = objHeight - size * 2; LImage lazyImage = null; LImage image = null; LImage messageImage = null; image = AndroidGraphicsUtils.drawClipImage(rmxpImage, objWidth, objHeight, x1, y1, x2, y2); LImage centerTop = AndroidGraphicsUtils.drawClipImage(image, center_size, size, size, 0); LImage centerDown = AndroidGraphicsUtils.drawClipImage(image, center_size, size, size, objHeight - size); LImage leftTop = AndroidGraphicsUtils.drawClipImage(image, size, size, 0, 0); LImage leftCenter = AndroidGraphicsUtils.drawClipImage(image, size, center_size, 0, size); LImage leftDown = AndroidGraphicsUtils.drawClipImage(image, size, size, 0, objHeight - size); LImage rightTop = AndroidGraphicsUtils.drawClipImage(image, size, size, objWidth - size, 0); LImage rightCenter = AndroidGraphicsUtils.drawClipImage(image, size, center_size, objWidth - size, size); LImage rightDown = AndroidGraphicsUtils.drawClipImage(image, size, size, objWidth - size, objHeight - size); lazyImage = LImage.createImage(width, height, rmxpImage .getConfig()); messageImage = AndroidGraphicsUtils.drawClipImage(rmxpImage, 128, 128, 0, 0, 128, 128, false); LGraphics g = lazyImage.getLGraphics(); g.setAlpha(0.5f); messageImage = AndroidGraphicsUtils.getResize(messageImage, width - offset + 1, height - offset + 1); g.drawImage(messageImage, (lazyImage.getWidth() - messageImage .getWidth()) / 2, (lazyImage.getHeight() - messageImage .getHeight()) / 2); g.setAlpha(1.0f); LImage tmp = AndroidGraphicsUtils.getResize(centerTop, width - (size * 2), size); g.drawImage(tmp, size, 0); tmp = null; tmp = AndroidGraphicsUtils.getResize(centerDown, width - (size * 2), size); g.drawImage(tmp, size, height - size); tmp = null; g.drawImage(leftTop, 0, 0); tmp = AndroidGraphicsUtils.getResize(leftCenter, leftCenter.getWidth(), width - (size * 2)); g.drawImage(tmp, 0, size); tmp = null; g.drawImage(leftDown, 0, height - size); int right = width - size; g.drawImage(rightTop, right, 0); tmp = AndroidGraphicsUtils.getResize(rightCenter, leftCenter .getWidth(), width - (size * 2)); g.drawImage(tmp, right, size); tmp = null; g.drawImage(rightDown, right, height - size); g.dispose(); lazy = new LTexture(GLLoader.getTextureData(lazyImage)); if (lazyImage != null) { lazyImage.dispose(); lazyImage = null; } lazyImages.put(keyName, lazy); image.dispose(); messageImage.dispose(); centerTop.dispose(); centerDown.dispose(); leftTop.dispose(); leftCenter.dispose(); leftDown.dispose(); rightTop.dispose(); rightCenter.dispose(); rightDown.dispose(); image = null; messageImage = null; centerTop = null; centerDown = null; leftTop = null; leftCenter = null; leftDown = null; rightTop = null; rightCenter = null; rightDown = null; } catch (Exception e) { } } return lazy; } public static void clear() { for (LTexture tex2d : lazyImages.values()) { if (tex2d != null) { tex2d.destroy(); tex2d = null; } } lazyImages.clear(); } }