Skip to content
Snippets Groups Projects
VectorPart.java 2.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • Thomas Oster's avatar
    Thomas Oster committed
    /**
     * This file is part of VisiCut.
    
     * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de>
    
    Thomas Oster's avatar
    Thomas Oster committed
     * RWTH Aachen University - 52062 Aachen, Germany
    
    Thomas Oster's avatar
    Thomas Oster committed
     *     VisiCut 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.
    
    Thomas Oster's avatar
    Thomas Oster committed
     *    VisiCut 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.
    
    Thomas Oster's avatar
    Thomas Oster committed
     *     You should have received a copy of the GNU Lesser General Public License
     *     along with VisiCut.  If not, see <http://www.gnu.org/licenses/>.
     **/
    package com.t_oster.liblasercut;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     *
     * @author Thomas Oster <thomas.oster@rwth-aachen.de>
     */
    
    Thomas Oster's avatar
    Thomas Oster committed
    {
    
      private LaserProperty currentCuttingProperty;
      private int maxX;
      private int maxY;
      private int minX;
      private int minY;
    
      private double resolution = 500;
    
    Thomas Oster's avatar
    Thomas Oster committed
      private List<VectorCommand> commands;
    
    
      public VectorPart(LaserProperty initialProperty, double resolution)
    
    Thomas Oster's avatar
    Thomas Oster committed
        if (initialProperty == null)
        {
          throw new IllegalArgumentException("Initial Property must not be null");
        }
    
        this.resolution = resolution;
    
    Thomas Oster's avatar
    Thomas Oster committed
        commands = new LinkedList<VectorCommand>();
    
    Thomas Oster's avatar
    Thomas Oster committed
        this.currentCuttingProperty = initialProperty;
        commands.add(new VectorCommand(VectorCommand.CmdType.SETPROPERTY, initialProperty));
    
      @Override
      public double getDPI()
      {
        return resolution;
      }
    
    Thomas Oster's avatar
    Thomas Oster committed
      public LaserProperty getCurrentCuttingProperty()
      {
        return currentCuttingProperty;
      }
    
    
    Thomas Oster's avatar
    Thomas Oster committed
      public void setProperty(LaserProperty cp)
    
    Thomas Oster's avatar
    Thomas Oster committed
        this.currentCuttingProperty = cp;
        commands.add(new VectorCommand(VectorCommand.CmdType.SETPROPERTY, cp));
    
    Thomas Oster's avatar
    Thomas Oster committed
      }
    
      public VectorCommand[] getCommandList()
      {
        return commands.toArray(new VectorCommand[0]);
      }
    
      private void checkMin(int x, int y)
      {
        if (x < minX)
        {
          minX = x;
        }
        if (y < minY)
        {
          minY = y;
        }
      }
    
      private void checkMax(int x, int y)
      {
        if (x > maxX)
        {
          maxX = x;
        }
        if (y > maxY)
        {
          maxY = y;
        }
      }
    
      public void moveto(int x, int y)
      {
        commands.add(new VectorCommand(VectorCommand.CmdType.MOVETO, x, y));
        checkMin(x, y);
        checkMax(x, y);
      }
    
      public void lineto(int x, int y)
      {
        commands.add(new VectorCommand(VectorCommand.CmdType.LINETO, x, y));
        checkMin(x, y);
        checkMax(x, y);
      }