• java: Composite Pattern


    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc Shape.java
     * from: https://refactoring.guru/design-patterns/composite/java/example
     * */
    
    
    package com.javapatterns.composite;
    
    
    import java.awt.*;
    /**
     *
     * @author geovindu
     * */
    public interface Shape {
        /**
         *
         * */
        int getX();
        /**
         *
         * */
        int getY();
        /**
         *
         * */
        int getWidth();
        /**
         *
         * */
        int getHeight();
        /**
         *
         * */
        void move(int x, int y);
        /**
         *
         * */
        boolean isInsideBounds(int x, int y);
        /**
         *
         * */
        void select();
        /**
         *
         * */
        void unSelect();
        /**
         *
         * */
        boolean isSelected();
        /**
         *
         * */
        void paint(Graphics graphics);
    
    
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc BaseShape.java
     *
     * */
    
    package com.javapatterns.composite;
    
    import java.awt.*;
    
    
    /**
     *
     * @author geovindu
     * */
    abstract  class BaseShape implements Shape{
    
        public int x;
        public int y;
        public Color color;
        private boolean selected = false;
        /**
         *
         * */
        BaseShape(int x, int y, Color color) {
            this.x = x;
            this.y = y;
            this.color = color;
        }
        /**
         *
         * */
        @Override
        public int getX() {
            return x;
        }
        /**
         *
         * */
        @Override
        public int getY() {
            return y;
        }
        /**
         *
         * */
        @Override
        public int getWidth() {
            return 0;
        }
        /**
         *
         * */
        @Override
        public int getHeight() {
            return 0;
        }
        /**
         *
         * */
        @Override
        public void move(int x, int y) {
            this.x += x;
            this.y += y;
        }
        /**
         *
         * */
        @Override
        public boolean isInsideBounds(int x, int y) {
            return x > getX() && x < (getX() + getWidth()) &&
                    y > getY() && y < (getY() + getHeight());
        }
        /**
         *
         * */
        @Override
        public void select() {
            selected = true;
        }
        /**
         *
         * */
        @Override
        public void unSelect() {
            selected = false;
        }
        /**
         *
         * */
        @Override
        public boolean isSelected() {
            return selected;
        }
        /**
         *
         * */
        void enableSelectionStyle(Graphics graphics) {
            graphics.setColor(Color.LIGHT_GRAY);
    
            Graphics2D g2 = (Graphics2D) graphics;
            float dash1[] = {2.0f};
            g2.setStroke(new BasicStroke(1.0f,
                    BasicStroke.CAP_BUTT,
                    BasicStroke.JOIN_MITER,
                    2.0f, dash1, 0.0f));
        }
        /**
         *
         * */
        void disableSelectionStyle(Graphics graphics) {
            graphics.setColor(color);
            Graphics2D g2 = (Graphics2D) graphics;
            g2.setStroke(new BasicStroke());
        }
    
        /**
         *
         * */
        @Override
        public void paint(Graphics graphics) {
            if (isSelected()) {
                enableSelectionStyle(graphics);
            }
            else {
                disableSelectionStyle(graphics);
            }
    
            // ...
        }
    
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc Dot.java
     *
     * */
    
    package com.javapatterns.composite;
    
    import java.awt.*;
    /**
     *画点
     * @author geovindu
     * */
    public class Dot extends BaseShape{
    
        private final int DOT_SIZE = 3;
        /**
         *
         * */
        public Dot(int x, int y, Color color) {
            super(x, y, color);
        }
        /**
         *
         * */
        @Override
        public int getWidth() {
            return DOT_SIZE;
        }
        /**
         *
         * */
        @Override
        public int getHeight() {
            return DOT_SIZE;
        }
        /**
         *
         * */
        @Override
        public void paint(Graphics graphics) {
            super.paint(graphics);
            graphics.fillRect(x - 1, y - 1, getWidth(), getHeight());
        }
    
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc Circle.java
     *
     * */
    
    package com.javapatterns.composite;
    
    
    import java.awt.*;
    
    /**
     *画圆
     * @author geovindu
     * */
    public class Circle extends BaseShape{
    
        public int radius;
        /**
         *
         * */
        public Circle(int x, int y, int radius, Color color) {
            super(x, y, color);
            this.radius = radius;
        }
        /**
         *
         * */
        @Override
        public int getWidth() {
            return radius * 2;
        }
        /**
         *
         * */
        @Override
        public int getHeight() {
            return radius * 2;
        }
        /**
         *
         * */
        public void paint(Graphics graphics) {
            super.paint(graphics);
            graphics.drawOval(x, y, getWidth() - 1, getHeight() - 1);
        }
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc Rectangle.java
     *
     * */
    
    
    package com.javapatterns.composite;
    
    import java.awt.*;
    
    /**
     *画线
     * @author geovindu
     * */
    public class Rectangle extends BaseShape{
    
        public int width;
        public int height;
        /**
         *
         * */
        public Rectangle(int x, int y, int width, int height, Color color) {
            super(x, y, color);
            this.width = width;
            this.height = height;
        }
        /**
         *
         * */
        @Override
        public int getWidth() {
            return width;
        }
        /**
         *
         * */
        @Override
        public int getHeight() {
            return height;
        }
        /**
         *
         * */
        @Override
        public void paint(Graphics graphics) {
            super.paint(graphics);
            graphics.drawRect(x, y, getWidth() - 1, getHeight() - 1);
        }
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc CompoundShape.java
     *
     * */
    
    package com.javapatterns.composite;
    
    import java.awt.*;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    /**
     *
     * @author geovindu
     * */
    public class CompoundShape  extends BaseShape{
    
    
        protected List<Shape> children = new ArrayList<>();
        /**
         *
         * */
        public CompoundShape(Shape... components) {
            super(0, 0, Color.BLACK);
            add(components);
        }
        /**
         *
         * */
        public void add(Shape component) {
            children.add(component);
        }
        /**
         *
         * */
        public void add(Shape... components) {
            children.addAll(Arrays.asList(components));
        }
        /**
         *
         * */
        public void remove(Shape child) {
            children.remove(child);
        }
        /**
         *
         * */
        public void remove(Shape... components) {
            children.removeAll(Arrays.asList(components));
        }
        /**
         *
         * */
        public void clear() {
            children.clear();
        }
        /**
         *
         * */
        @Override
        public int getX() {
            if (children.size() == 0) {
                return 0;
            }
            int x = children.get(0).getX();
            for (Shape child : children) {
                if (child.getX() < x) {
                    x = child.getX();
                }
            }
            return x;
        }
        /**
         *
         * */
        @Override
        public int getY() {
            if (children.size() == 0) {
                return 0;
            }
            int y = children.get(0).getY();
            for (Shape child : children) {
                if (child.getY() < y) {
                    y = child.getY();
                }
            }
            return y;
        }
        /**
         *
         * */
        @Override
        public int getWidth() {
            int maxWidth = 0;
            int x = getX();
            for (Shape child : children) {
                int childsRelativeX = child.getX() - x;
                int childWidth = childsRelativeX + child.getWidth();
                if (childWidth > maxWidth) {
                    maxWidth = childWidth;
                }
            }
            return maxWidth;
        }
        /**
         *
         * */
        @Override
        public int getHeight() {
            int maxHeight = 0;
            int y = getY();
            for (Shape child : children) {
                int childsRelativeY = child.getY() - y;
                int childHeight = childsRelativeY + child.getHeight();
                if (childHeight > maxHeight) {
                    maxHeight = childHeight;
                }
            }
            return maxHeight;
        }
        /**
         *
         * */
        @Override
        public void move(int x, int y) {
            for (Shape child : children) {
                child.move(x, y);
            }
        }
        /**
         *
         * */
        @Override
        public boolean isInsideBounds(int x, int y) {
            for (Shape child : children) {
                if (child.isInsideBounds(x, y)) {
                    return true;
                }
            }
            return false;
        }
        /**
         *
         * */
        @Override
        public void unSelect() {
            super.unSelect();
            for (Shape child : children) {
                child.unSelect();
            }
        }
        /**
         *
         * */
        public boolean selectChildAt(int x, int y) {
            for (Shape child : children) {
                if (child.isInsideBounds(x, y)) {
                    child.select();
                    return true;
                }
            }
            return false;
        }
        /**
         *
         * */
        @Override
        public void paint(Graphics graphics) {
            if (isSelected()) {
                enableSelectionStyle(graphics);
                graphics.drawRect(getX() - 1, getY() - 1, getWidth() + 1, getHeight() + 1);
                disableSelectionStyle(graphics);
            }
    
            for (Shape child : children) {
                child.paint(graphics);
            }
        }
    
    }
    

      

    /**
     * 版权所有 2022 涂聚文有限公司
     * 许可信息查看:
     * 描述:
     * 合成模式 Composite Patterns
     * 历史版本: JDK 14.02
     * 2022-09-12 创建者 Shape
     * 2022-09-12 添加 Lambda
     * 2022-09-12 修改:date
     * 接口类
     * 2022-09-12 修改者:Geovin Du
     * 生成API帮助文档的指令:
     *javadoc - -encoding Utf-8 -d apidoc ImageEditor.java
     *
     * */
    
    
    package com.javapatterns.composite;
    
    import javax.swing.*;
    import javax.swing.border.Border;
    import java.awt.*;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    
    /**
     *图形编辑
     * @author geovindu
     * */
    public class ImageEditor {
    
        private EditorCanvas canvas;
        private CompoundShape allShapes = new CompoundShape();
        /**
         *
         * */
        public ImageEditor() {
            canvas = new EditorCanvas();
        }
        /**
         *
         * */
        public void loadShapes(Shape... shapes) {
            allShapes.clear();
            allShapes.add(shapes);
            canvas.refresh();
        }
        /**
         *
         * */
        private class EditorCanvas extends Canvas {
            JFrame frame;
    
            private static final int PADDING = 10;
    
            EditorCanvas() {
                createFrame();
                refresh();
                addMouseListener(new MouseAdapter() {
                    @Override
                    public void mousePressed(MouseEvent e) {
                        allShapes.unSelect();
                        allShapes.selectChildAt(e.getX(), e.getY());
                        e.getComponent().repaint();
                    }
                });
            }
            /**
             *
             * */
            void createFrame() {
                frame = new JFrame();
                frame.setName("画图测试");
                frame.setTitle("画图测试");
                frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
                frame.setLocationRelativeTo(null);
    
                JPanel contentPanel = new JPanel();
                Border padding = BorderFactory.createEmptyBorder(PADDING, PADDING, PADDING, PADDING);
                contentPanel.setBorder(padding);
                frame.setContentPane(contentPanel);
    
                frame.add(this);
                frame.setVisible(true);
                frame.getContentPane().setBackground(Color.LIGHT_GRAY);
            }
            /**
             *
             * */
            public int getWidth() {
                return allShapes.getX() + allShapes.getWidth() + PADDING;
            }
            /**
             *
             * */
            public int getHeight() {
                return allShapes.getY() + allShapes.getHeight() + PADDING;
            }
            /**
             *
             * */
            void refresh() {
                this.setSize(getWidth(), getHeight());
                frame.pack();
            }
            /**
             *
             * */
            public void paint(Graphics graphics) {
                allShapes.paint(graphics);
            }
        }
    
    }
    

      

    调用测试:

    //合成模式
                ImageEditor editor = new ImageEditor();
                editor.loadShapes(
                        new Circle(10, 10, 10, Color.BLUE),
    
                        new CompoundShape(
                                new Circle(110, 110, 50, Color.RED),
                                new Dot(160, 160, Color.RED)
                        ),
    
                        new CompoundShape(
                                new com.javapatterns.composite.Rectangle(250, 250, 100, 100, Color.GREEN),
                                new Dot(240, 240, Color.GREEN),
                                new Dot(240, 360, Color.GREEN),
                                new Dot(360, 360, Color.GREEN),
                                new Dot(360, 240, Color.GREEN)
                        )
                );
    

      

    输出:

  • 相关阅读:
    Unity3D Shader入门指南(二)
    Unity3D Shader入门指南(一)
    NGUI 减少drawcall规则
    linux系统date命令详解
    使用Installutil安装系统服务方法
    各大视频网站广告屏蔽代码
    C#--无边框窗体实现拖动、最大化、最小化、关闭(转)
    C# 如何在winform窗体自定义一个扁平化控件(转)
    C# winform 界面美化技巧(扁平化设计) (转)
    VC6插件安装--Unable to register this add-in because its DllRegisterServer returns an error (转)
  • 原文地址:https://www.cnblogs.com/geovindu/p/16701865.html
Copyright © 2020-2023  润新知