/* * Copyright 2014,2016 Cel Skeggs. * * This file is part of the CCRE, the Common Chicken Runtime Engine. * * The CCRE is free software: you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * The CCRE 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 Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public License * along with the CCRE. If not, see <http://www.gnu.org/licenses/>. */ package ccre.supercanvas.components; import java.awt.Color; import java.awt.FontMetrics; import java.awt.Graphics2D; import java.io.Serializable; import java.util.ArrayList; import ccre.supercanvas.DraggableBoxComponent; import ccre.supercanvas.Rendering; import ccre.supercanvas.SuperCanvasComponent; /** * A very simple box that can store other components. * * @author skeggsc */ public class FolderComponent extends DraggableBoxComponent { private static final long serialVersionUID = -4289225098349876909L; private final ArrayList<Element> components = new ArrayList<Element>(5); /** * Create a new FolderComponent. * * @param cx The X-coordinate. * @param cy The Y-coordinate. */ public FolderComponent(int cx, int cy) { super(cx, cy, 0, true); } @Override public void render(Graphics2D g, int screenWidth, int screenHeight, FontMetrics fontMetrics, int mouseX, int mouseY) { this.halfWidth = 20; this.halfHeight = 20; Rendering.drawBody(Color.YELLOW, g, this); String str = "[" + components.size() + "]"; g.setColor(Color.BLACK); g.drawString(str, centerX - fontMetrics.stringWidth(str) / 2, centerY); } @Override public boolean onInteract(int x, int y) { if (!components.isEmpty()) { Element comp = components.remove(components.size() - 1); getPanel().add(comp.component); comp.component.moveForDrag(centerX + comp.relX, centerY + comp.relY); return true; } return false; } @Override public boolean onReceiveDrop(int x, int y, SuperCanvasComponent activeEntity) { getPanel().remove(activeEntity); components.add(new Element(activeEntity, activeEntity.getDragRelX(centerX), activeEntity.getDragRelY(centerY))); return true; } private static class Element implements Serializable { private static final long serialVersionUID = 6132885323903633009L; public final SuperCanvasComponent component; public final int relX; public final int relY; Element(SuperCanvasComponent component, int relX, int relY) { this.component = component; this.relX = relX; this.relY = relY; } } }