194 lines
5.0 KiB
JavaScript
194 lines
5.0 KiB
JavaScript
"use strict";
|
|
/*** ESSENTIALS ***/
|
|
|
|
function sizeAndPos() {
|
|
|
|
var data = c.getImageData(0,0, $c.width(), $c.height());
|
|
var w = $(window).width(),
|
|
h = $(window).height();
|
|
$c.attr('width', w * window.devicePixelRatio);
|
|
$c.attr('height',(h - 53) * window.devicePixelRatio);
|
|
$c.css({
|
|
'width' : w,
|
|
'height' : h - 53
|
|
});
|
|
c.clearRect(0,0, width(), height());
|
|
c.putImageData(data, 0, 0);
|
|
}
|
|
|
|
function relative(x,y) {
|
|
return {
|
|
x : x*window.devicePixelRatio,
|
|
y : (y - 53) * window.devicePixelRatio
|
|
}
|
|
}
|
|
|
|
function threshold(x1, y1, x2, y2, threshold) {
|
|
var tr = threshold || 5;
|
|
if( x1 <= x2 + tr && x1 >= x2 - tr && y1 <= y2 + tr && y1 >= y2 - tr ) return true;
|
|
return false;
|
|
}
|
|
|
|
function line(x1, y1, x2, y2, opts, overlay) {
|
|
opts = opts || {};
|
|
var c = window.c;
|
|
if( overlay ) var c = window.o;
|
|
c.beginPath();
|
|
c.lineCap = opts.lineCap || settings.lineCap;
|
|
c.lineJoin = opts.lineJoin || settings.lineJoin;
|
|
c.strokeStyle = opts.color || settings.color;
|
|
c.fillStyle = opts.color || settings.color;
|
|
c.lineWidth = ( opts.lineWidth || settings.lineWidth ) / 10;
|
|
c.moveTo(x1, y1);
|
|
c.lineTo(x2, y2);
|
|
if( !opts.noStroke ) c.stroke();
|
|
if( opts.fill ) c.fill();
|
|
}
|
|
|
|
function erase(x1, y1, x2, y2, overlay) {
|
|
var c = window.c;
|
|
if( overlay ) var c = window.o;
|
|
c.clearRect(x1, y1, x2 - x1, y2 - y1);
|
|
}
|
|
|
|
function undo() {
|
|
var history = window.points.history;
|
|
if( history.last > 1 ) {
|
|
var step = history[history.last-1];
|
|
c.putImageData(step.data, 0, 0);
|
|
window.points = step.points.slice(0);
|
|
window.points.history = history;
|
|
window.points.history.last = history.last-1;
|
|
} else {
|
|
c.clearRect(0,0, width(), height());
|
|
window.points = [];
|
|
window.points.history = history;
|
|
window.points.history.last = 0;
|
|
}
|
|
|
|
}
|
|
|
|
function redo() {
|
|
var history = window.points.history;
|
|
if( history.last < history.length-1 ) {
|
|
var step = history[history.last+1];
|
|
c.putImageData(step.data, 0, 0);
|
|
window.points = step.points.slice(0);
|
|
window.points.history = history;
|
|
window.points.history.last = history.last+1;
|
|
}
|
|
}
|
|
|
|
function width() {
|
|
return +$c.attr('width');
|
|
}
|
|
|
|
function height() {
|
|
return +$c.attr('height');
|
|
}
|
|
|
|
function dataToBlob(data) {
|
|
var binary = atob(data.split(',')[1]), array = [];
|
|
var type = data.split(',')[0].split(':')[1].split(';')[0];
|
|
for(var i = 0; i < binary.length; i++) array.push(binary.charCodeAt(i));
|
|
return new Blob([new Uint8Array(array)], {type: type});
|
|
}
|
|
|
|
|
|
/*** END ***/
|
|
|
|
function startPoint(x, y) {
|
|
|
|
// If no previous point exists, make the first one.
|
|
if( !points.length ) points.push({x: x, y: y, type: '', start: {x: x, y: y}});
|
|
|
|
var old = points[points.length-1],
|
|
start = old.start,
|
|
current = {
|
|
x : x,
|
|
y : y,
|
|
start : old.start || {x: x, y: y},
|
|
type : settings.type
|
|
}
|
|
if( old.type !== 'line' && current.type == 'line' ) {
|
|
window.o.beginPath();
|
|
window.o.fillStyle = 'red';
|
|
window.o.arc(x,y, 3, 0, 2*Math.PI);
|
|
window.o.fill();
|
|
}
|
|
|
|
if( old.type == 'line' ) {
|
|
if( points[points.indexOf(old)-1].type !== 'line' ) erase(old.x-5, old.y-5, old.x+5, old.y+5, true);
|
|
line(old.x, old.y, x, y);
|
|
}
|
|
|
|
if( points.length > 1 && ((start && threshold(start.x, start.y, x, y)) || threshold(old.x, old.y, x, y, 2)) ) {
|
|
window.active = false;
|
|
points[points.length-1].type = '';
|
|
points[points.length-1].start = undefined;
|
|
return;
|
|
}
|
|
points.push(current);
|
|
}
|
|
|
|
function drawPoint(x,y) {
|
|
var capture = points[points.length-1];
|
|
|
|
switch(capture.type) {
|
|
case 'pen': {
|
|
line(capture.x, capture.y, x, y);
|
|
|
|
var current = {
|
|
x : x,
|
|
y : y,
|
|
start : capture.start,
|
|
type : capture.type
|
|
}
|
|
|
|
points.push(current);
|
|
break;
|
|
}
|
|
case 'sketch': {
|
|
line(capture.x, capture.y, x, y);
|
|
var current = {
|
|
x : x,
|
|
y : y,
|
|
start : capture.start,
|
|
type : capture.type
|
|
}
|
|
points.push(current);
|
|
|
|
for( var i = 0, len = points.length-1; i < len; i++ ) {
|
|
if(threshold(points[i].x, points[i].y, current.x, current.y, settings.connectTelorance)) {
|
|
var x = points[i].x - current.x,
|
|
y = points[i].y - current.y;
|
|
|
|
line(points[i].x - x*0.2, points[i].y - y*0.2, current.x + x*0.2, current.y + y*0.2, {strokeStyle: 'rgba(0,0,0,0.4)', lineWidth: settings.lineWidth/20})
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case 'fur': {
|
|
line(capture.x, capture.y, x, y);
|
|
var current = {
|
|
x : x,
|
|
y : y,
|
|
start : capture.start,
|
|
type : capture.type
|
|
}
|
|
points.push(current);
|
|
|
|
for( var i = 0, len = points.length-1; i < len; i++ ) {
|
|
if(threshold(points[i].x, points[i].y, current.x, current.y, settings.connectTelorance)) {
|
|
var x = points[i].x - current.x,
|
|
y = points[i].y - current.y;
|
|
var l = settings.furLength / 100 || 0.2;
|
|
line(points[i].x + x*l, points[i].y + y*l, current.x - x*l, current.y - y*l, {strokeStyle: 'rgba(0,0,0,0.4)', lineWidth: settings.lineWidth/2})
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|