SimpleDots.java
package npw;

import painter.SPainter;
import shapes.SCircle;

import javax.swing.*;
import java.awt.*;
import java.util.Scanner;

public class SimpleDots {
    private void paintTheImage(){
        // Get the input information
        int radius = getNumber("circle radius");
        int side = getNumber("Circle 2 length");
        String color = getColor("color");

        // Establish the painter
        SPainter painter = new SPainter("Hirst Squares", radius*2+50, radius*2+50);
        painter.setBrushWidth(3);
        SCircle circle = new SCircle(radius);
        SCircle square = new SCircle(side);

        // Paint the squares
        paintCircleOfSquares(painter, circle, square, color);
    }

    private void paintCircleOfSquares(SPainter painter, SCircle circle, SCircle square,String color){
        // Position the painter to begin drawing the rows
        painter.mfd(circle.radius());
        painter.tr();
        // Paint the circle of squares
        double moved = 0;
        while (moved < circle.diameter()) {
            double chord = chordLength(circle.radius() - moved, circle);
            int squares = squaresOnLineCount(chord, square.diameter());
            paintRow(painter, square, squares, color);
            nextRow(painter, square.diameter());
            moved = moved + square.diameter();
        }
        // Make the method invariant with respect to painter position
        painter.tl();
        painter.mfd(circle.radius());
    }

    // Move to the next row
    private void nextRow(SPainter painter, double rowHeight){
        painter.tr();
        painter.mfd(rowHeight);
        painter.tl();
    }

    // Assumes the painter is at the center of the row to paint, facing right.
    private void paintRow(SPainter painter, SCircle square, int squaresToPaint, String color){
        // Move backward 1/2 of the length we're painting to get ready to paint the row.
        double centerOffset = ( (squaresToPaint * square.diameter()) / 2) - square.diameter()/2;
        painter.mbk(centerOffset);

        // Paint the row of squares.
        int painted = 0;
        while (painted < squaresToPaint){
            paintOneSquare(painter, square, color);
            painter.mfd(square.diameter());
            painted = painted + 1;
        }

        // Make the method invariant with respect to painter position.
        painter.mbk(centerOffset + square.diameter());
    }

    private void paintOneSquare(SPainter micro, SCircle circle,String color) {
        circle.s2();
        if(color.equalsIgnoreCase("red"))
        {
            micro.setColor(Color.RED);
        }
        else if (color.equalsIgnoreCase("blue"))
        {
            micro.setColor(Color.BLUE);
        }
        else if(color.equalsIgnoreCase("green"))
        {
            micro.setColor(Color.GREEN);
        }
        else {
            micro.setColor(Color.BLACK);
        }

        micro.paint(circle);

        circle.x2();

    }

    private static int squaresOnLineCount(double lineLength, double sideLength){
        int squares = ( (int)Math.ceil( ( lineLength - sideLength ) / sideLength ) + 1);
        return squares;
    }

    private double chordLength(double yOffset, SCircle circle){
        double xLength = Math.sqrt(Math.pow(circle.radius(), 2) - Math.pow(yOffset, 2));
        double chordLength = xLength * 2;
        return chordLength;
    }

    private static int getNumber(String prompt) {
        String nss = JOptionPane.showInputDialog(null,prompt+"?");
        Scanner scanner = new Scanner(nss);
        return scanner.nextInt();
    }

    private static String getColor(String prompt) {
        String nss = JOptionPane.showInputDialog(null,prompt+"?");
        Scanner scanner = new Scanner(nss);
        return scanner.next();

    }


    public SimpleDots() {
        paintTheImage();
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new SimpleDots();
            }
        });
    }
}