首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Swing中自定义六边形JButtons之间的间距太大

Swing中自定义六边形JButtons之间的间距太大
EN

Stack Overflow用户
提问于 2018-06-03 07:32:02
回答 1查看 211关注 0票数 0

我目前正在为一个大学项目开发一个Hidato难题解算器。我使用的是Swing和Intellij IDE。

其中一个要求是具有正方形、六边形和三角形。正方形很容易,但为了实现HexagonalGrid,我编写了一个自定义的六边形按钮来扩展JButton。

然而,当我试图渲染一个网格时,我得到了这样的结果。我不知道出了什么问题。

我从this website那里得到了六边形数学,它在网上被公认为HexGrid的圣经。

这是六边形按钮和栅格渲染器的代码。

代码语言:javascript
复制
import javax.swing.*;
import java.awt.*;

public class HexagonButton extends JButton {
private Shape hexagon;
float size;
float width, height;

public HexagonButton(float centerX, float centerY, float size){
    Polygon p = new Polygon();
    this.size = size;
    p.reset();
    for(int i=0; i<6; i++){
        float angleDegrees = (60 * i) - 30;
        float angleRad = ((float)Math.PI / 180.0f) * angleDegrees;

        float x = centerX + (size * (float)Math.cos(angleRad));
        float y = centerY + (size * (float)Math.sin(angleRad));

        p.addPoint((int)x,(int)y);
    }

    width = (float)Math.sqrt(3) * size;
    height = 2.0f * size;
    hexagon = p;
}

public void paintBorder(Graphics g){
    ((Graphics2D)g).draw(hexagon);
}

public void paintComponent(Graphics g){
    ((Graphics2D)g).draw(hexagon);
}

@Override
public Dimension getPreferredSize(){

    return new Dimension((int)width, (int)height);
}
@Override
public Dimension getMinimumSize(){
    return new Dimension((int)width, (int)height);
}
@Override
public Dimension getMaximumSize(){
    return new Dimension((int)width, (int)height);
}


@Override
public boolean contains(int x, int y){
    return hexagon.contains(x,y);
}
}

Public class Main extends JFrame implements MouseListener {

/**
 * Create the GUI and show it.  For thread safety,
 * this method should be invoked from the
 * event-dispatching thread.
 */
public static void main(String[] args) {
// write your code here
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    Main main = new Main();
    main.pack();
    main.setVisible(true);
    main.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

Main(){
    super();
    int rows = 3;
    int cols = 3;
    setLayout(new GridLayout(rows,cols,-1,-1));
    //grid.setBorder(BorderFactory.createEmptyBorder(2,2,2,2));
    this.setMinimumSize(new Dimension(173 * rows, 200 * cols+2));

    for(int i=0;i<rows;i++){
        for(int j=0;j<cols;j++){
            float size = 25;
            int width = (int)(size * Math.sqrt(3));
            int height = (int)(size * 2.0f);
            int xOffset = (width / 2);
            if(i%2==1){
                //Offset odd rows to the right
                xOffset += (width/2);
            }
            int yOffset = height / 2;
            int centerX = xOffset + j*width;
            int centerY = yOffset + i*height;
            HexagonButton hexagon = new HexagonButton(centerX, centerY, size);
            hexagon.addMouseListener(this);
            hexagon.setMinimumSize(hexagon.getMinimumSize());
            hexagon.setMaximumSize(hexagon.getMaximumSize());
            hexagon.setPreferredSize(hexagon.getPreferredSize());
            //hexagon.setVerticalAlignment(SwingConstants.CENTER);
            hexagon.setHorizontalAlignment(SwingConstants.CENTER);
            add(hexagon);
        }

    }

}
}

有人知道问题出在哪里吗?我对Swing还是个新手

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-06-03 08:25:09

无论如何,我不会为每个单元格使用自定义组件,而是使用单个组件,生成您需要的形状,并将它们绘制到单个组件上。

这使您可以更好地控制形状的放置,而且由于Shape内置了碰撞检测功能,因此可以非常轻松地检测鼠标位于/单击哪个单元格上。

我对您的基本代码做了一些调整,并提出了以下示例。

它创建一个单独的形状作为“母版”,然后,我为每个单元格创建一个Area,并将它的位置转换到我想要它出现的位置。然后将其添加到用于绘制所有单元格并执行鼠标“点击”检测的List中。

这种方法的好处是,它可以自动缩放形状以适应可用的组件空间

代码语言:javascript
复制
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.geom.AffineTransform;
import java.awt.geom.Area;
import java.awt.geom.GeneralPath;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

//      private Shape hexagon;
        private List<Shape> cells = new ArrayList<>(6);

        private Shape highlighted;

        public TestPane() {
            addMouseMotionListener(new MouseAdapter() {
                @Override
                public void mouseMoved(MouseEvent e) {
                    highlighted = null;
                    for (Shape cell : cells) {
                        if (cell.contains(e.getPoint())) {
                            highlighted = cell;
                            break;
                        }
                    }
                    repaint();
                }
            });
        }

        @Override
        public void invalidate() {
            super.invalidate();
            updateHoneyComb();
        }

        protected void updateHoneyComb() {
            GeneralPath path = new GeneralPath();

            float rowHeight = ((getHeight() * 1.14f) / 3f);
            float colWidth = getWidth() / 3f;

            float size = Math.min(rowHeight, colWidth);

            float centerX = size / 2f;
            float centerY = size / 2f;
            for (float i = 0; i < 6; i++) {
                float angleDegrees = (60f * i) - 30f;
                float angleRad = ((float) Math.PI / 180.0f) * angleDegrees;

                float x = centerX + ((size / 2f) * (float) Math.cos(angleRad));
                float y = centerY + ((size / 2f) * (float) Math.sin(angleRad));

                if (i == 0) {
                    path.moveTo(x, y);
                } else {
                    path.lineTo(x, y);
                }
            }
            path.closePath();

            cells.clear();
            for (int row = 0; row < 3; row++) {
                float offset = size / 2f;
                int colCount = 2;
                if (row % 2 == 0) {
                    offset = 0;
                    colCount = 3;
                }
                for (int col = 0; col < colCount; col++) {
                    AffineTransform at = AffineTransform.getTranslateInstance(offset + (col * size), row * (size * 0.8f));
                    Area area = new Area(path);
                    area = area.createTransformedArea(at);
                    cells.add(area);
                }
            }

        }

        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();
            if (highlighted != null) {
                g2d.setColor(Color.BLUE);
                g2d.fill(highlighted);
            }
            g2d.setColor(Color.BLACK);
            for (Shape cell : cells) {
                g2d.draw(cell);
            }
            g2d.dispose();
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }

    }
}

知道吗,我现在,你要告诉我他们之间有空间。根据第一个单元格应该在0x0的事实,我会说空间来自于您的六边形算法,但我将留给您来排序;)

此外,行/列目前是硬编码的(3x3),应该不难使它们更具可变性;)

更新

所以,我玩了一个定位算法,基于你链接的六边形算法,我能够想出…

代码语言:javascript
复制
    protected void updateHoneyComb() {
        GeneralPath path = new GeneralPath();

        double rowHeight = ((getHeight() * 1.14f) / 3f);
        double colWidth = getWidth() / 3f;

        double size = Math.min(rowHeight, colWidth) / 2d;

        double centerX = size / 2d;
        double centerY = size / 2d;

        double width = Math.sqrt(3d) * size;
        double height = size * 2;
        for (float i = 0; i < 6; i++) {
            float angleDegrees = (60f * i) - 30f;
            float angleRad = ((float) Math.PI / 180.0f) * angleDegrees;

            double x = centerX + (size * Math.cos(angleRad));
            double y = centerY + (size * Math.sin(angleRad));

            if (i == 0) {
                path.moveTo(x, y);
            } else {
                path.lineTo(x, y);
            }
        }
        path.closePath();

        cells.clear();
        double yPos = size / 2d;
        for (int row = 0; row < 3; row++) {
            double offset = (width / 2d);
            int colCount = 2;
            if (row % 2 == 0) {
                offset = 0;
                colCount = 3;
            }
            double xPos = offset;
            for (int col = 0; col < colCount; col++) {
                AffineTransform at = AffineTransform.getTranslateInstance(xPos + (size * 0.38), yPos);
                Area area = new Area(path);
                area = area.createTransformedArea(at);
                cells.add(area);
                xPos += width;
            }
            yPos += height * 0.75;
        }

    }

它现在让六边形彼此相对地排列。不过,还需要做一些工作

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50662053

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档