imagemagick-async
Version:
An API for Image Magick commands.
305 lines (261 loc) • 7.01 kB
JavaScript
let Path = require('path');
let PathParts = __dirname.split(Path.sep);
let index = PathParts.indexOf('imagemagick-async');
let RootDir = PathParts.slice(0, index + 1).join(Path.sep);
let Err = require(Path.join(RootDir, 'error.js'));
let Filepath = require(Path.join(RootDir, 'filepath.js')).Filepath;
let Coordinates = require(Path.join(Filepath.InputsDir(), 'coordinates.js')).Coordinates;
let HelperFunctions = require(Path.join(Filepath.ShapesDir(), 'helperfunctions.js'));
let PathPrimitive = require(Path.join(Filepath.PrimitivesDir(), 'path.js')).Path;
let PrimitivesBaseClass = require(Path.join(Filepath.PrimitivesDir(), 'primitivesbaseclass.js')).PrimitivesBaseClass;
//-------------------------------
class Polygon extends PrimitivesBaseClass {
constructor(builder) {
super(builder);
}
/**
* @override
*/
static get Builder() {
class Builder {
constructor() {
this.name = 'Polygon';
this.args = {};
}
/**
* @param {number} n The number of sides on the polygon.
*/
sides(n) {
this.args.sides = n;
return this;
}
/**
* @param {Coordinates} coordinates The center of the polygon.
*/
center(coordinates) {
this.args.center = coordinates;
return this;
}
/**
* @param {Coordinates} coordinates A vertex belonging to the polygon. Determines the distance from center for all other vertices.
*/
vertex(coordinates) {
this.args.vertex = coordinates;
return this;
}
/**
* @param {Color} color The color of the outline that makes up the polygon. (Optional)
*/
strokeColor(color) {
this.args.strokeColor = color;
return this;
}
/**
* @param {number} n Width of the outline that makes up the polygon. Larger values produce thicker lines. (Optional)
*/
strokeWidth(n) {
this.args.strokeWidth = n;
return this;
}
/**
* @param {Color} color The color that will fill the polygon. (Optional)
*/
fillColor(color) {
this.args.fillColor = color;
return this;
}
/**
* @param {Offset} offset
*/
offset(offset) {
this.args.offset = offset;
return this;
}
build() {
return new Polygon(this);
}
}
return new Builder();
}
/**
* @override
*/
Args() {
// Compute offset center
let ocx = this.args.center.args.x;
let ocy = this.args.center.args.y;
if (this.args.offset) {
ocx += this.args.offset.args.x;
ocy += this.args.offset.args.y;
}
let offsetCenter = Coordinates.Builder
.x(ocx)
.y(ocy)
.build();
// Compute offset vertex
let ovx = this.args.vertex.args.x;
let ovy = this.args.vertex.args.y;
if (this.args.offset) {
ovx += this.args.offset.args.x;
ovy += this.args.offset.args.y;
}
let offsetVertex = Coordinates.Builder
.x(ovx)
.y(ovy)
.build();
// Rotate points
let degrees = 360 / this.args.sides;
let vertices = [offsetVertex];
for (let i = 0; i < this.args.sides - 1; ++i) {
let currDegrees = degrees * (i + 1);
let rotatedPoint = HelperFunctions.GetRotatedPoint(offsetCenter, offsetVertex, currDegrees);
vertices.push(rotatedPoint);
}
// Build path
let path = PathPrimitive.Builder
.points(vertices)
.strokeColor(this.args.strokeColor)
.strokeWidth(this.args.strokeWidth)
.fillColor(this.args.fillColor)
.isClosed(true)
.build();
return path.Args();
}
/**
* @override
*/
Errors() {
let params = Polygon.Parameters();
let errors = [];
let prefix = 'POLYGON_SHAPE_ERROR';
// Check required args
let sidesErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Sides')
.condition(
new Err.NumberCondition.Builder(this.args.sides)
.isInteger(true)
.min(params.sides.min)
.build()
)
.build()
.String();
if (sidesErr)
errors.push(sidesErr);
let centerErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Center')
.condition(
new Err.ObjectCondition.Builder(this.args.center)
.typeName('Coordinates')
.checkForErrors(true)
.build()
)
.build()
.String();
if (centerErr)
errors.push(centerErr);
let vertexErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Vertex')
.condition(
new Err.ObjectCondition.Builder(this.args.vertex)
.typeName('Coordinates')
.checkForErrors(true)
.build()
)
.build()
.String();
if (vertexErr)
errors.push(vertexErr);
// Check optional args
if (this.args.strokeColor) {
let strokeColorErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Stroke color')
.condition(
new Err.ObjectCondition.Builder(this.args.strokeColor)
.typeName('Color')
.checkForErrors(true)
.build()
)
.build()
.String();
if (strokeColorErr)
errors.push(strokeColorErr);
}
if (this.args.strokeWidth) {
let strokeWidthErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Stroke width')
.condition(
new Err.NumberCondition.Builder(this.args.strokeWidth)
.isInteger(true)
.min(params.sides.min)
.build()
)
.build()
.String();
if (strokeWidthErr)
errors.push(strokeWidthErr);
}
if (this.args.fillColor) {
let fillColorErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Fill color')
.condition(
new Err.ObjectCondition.Builder(this.args.fillColor)
.typeName('Color')
.checkForErrors(true)
.build()
)
.build()
.String();
if (fillColorErr)
errors.push(fillColorErr);
}
return errors;
}
/**
* @override
*/
static Parameters() {
return {
sides: {
type: 'number',
subtype: 'integer',
min: 3,
required: true
},
center: {
type: 'Inputs.Coordinates',
required: true
},
vertex: {
type: 'Inputs.Coordinates',
required: true
},
strokeColor: {
type: 'Inputs.Color',
required: false
},
strokeWidth: {
type: 'number',
subtype: 'integer',
min: 1,
required: false
},
fillColor: {
type: 'Inputs.Color',
required: false
},
offset: {
type: 'Inputs.Offset',
required: false
}
};
}
}
//-----------------------
// EXPORTS
exports.Polygon = Polygon;