2017-11-09 14:47:06 -05:00
|
|
|
function Guide()
|
|
|
|
{
|
2017-11-12 21:25:29 -05:00
|
|
|
this.el = document.createElement("canvas");
|
2017-11-09 14:47:06 -05:00
|
|
|
this.el.id = "guide";
|
2017-11-12 22:54:56 -05:00
|
|
|
this.el.width = 640;
|
|
|
|
this.el.height = 640;
|
|
|
|
this.el.style.width = "320px";
|
|
|
|
this.el.style.height = "320px";
|
2018-05-10 04:01:31 -04:00
|
|
|
this.show_extras = true;
|
2017-11-12 22:54:56 -05:00
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
var scale = 2;
|
|
|
|
|
2017-11-09 14:47:06 -05:00
|
|
|
this.start = function()
|
2017-11-21 17:58:07 -05:00
|
|
|
{
|
|
|
|
this.clear();
|
2018-05-07 18:59:38 -04:00
|
|
|
this.refresh();
|
2017-11-21 17:58:07 -05:00
|
|
|
}
|
2018-05-09 18:04:02 -04:00
|
|
|
|
|
|
|
this.refresh = function()
|
|
|
|
{
|
|
|
|
this.clear();
|
|
|
|
this.draw_markers()
|
|
|
|
this.draw_vertices()
|
|
|
|
this.draw_handles()
|
|
|
|
this.draw_paths()
|
|
|
|
this.draw_overlays()
|
|
|
|
this.draw_translation();
|
|
|
|
this.draw_cursor();
|
2018-05-10 03:49:41 -04:00
|
|
|
this.draw_preview();
|
2018-05-09 18:04:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
this.clear = function()
|
|
|
|
{
|
|
|
|
this.el.getContext('2d').clearRect(0, 0, this.el.width*scale, this.el.height*scale);
|
|
|
|
}
|
2017-11-21 17:58:07 -05:00
|
|
|
|
2018-01-12 15:00:53 -05:00
|
|
|
this.toggle = function()
|
|
|
|
{
|
2018-05-10 04:01:31 -04:00
|
|
|
this.show_extras = this.show_extras ? false : true;
|
|
|
|
this.refresh()
|
2018-01-12 15:00:53 -05:00
|
|
|
}
|
|
|
|
|
2017-11-21 17:58:07 -05:00
|
|
|
this.resize = function(size)
|
|
|
|
{
|
2018-05-08 05:05:19 -04:00
|
|
|
var offset = 30
|
2018-05-09 17:18:30 -04:00
|
|
|
this.el.width = (size.width+offset)*scale;
|
|
|
|
this.el.height = (size.height+offset)*scale;
|
2018-05-08 05:05:19 -04:00
|
|
|
this.el.style.width = (size.width+offset)+"px";
|
|
|
|
this.el.style.height = (size.height+offset)+"px";
|
2017-11-21 17:58:07 -05:00
|
|
|
|
2018-05-07 18:59:38 -04:00
|
|
|
this.refresh();
|
2017-11-21 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_overlays = function()
|
2017-11-12 16:47:34 -05:00
|
|
|
{
|
2018-05-10 04:01:31 -04:00
|
|
|
if(!this.show_extras){ return; }
|
|
|
|
|
2018-02-05 20:23:25 -05:00
|
|
|
for(segment_id in dotgrid.tool.layer()){
|
|
|
|
var segment = dotgrid.tool.layer()[segment_id];
|
2018-05-09 03:23:06 -04:00
|
|
|
for(vertex_id in segment.vertices){
|
|
|
|
var vertex = segment.vertices[vertex_id];
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_vertex(vertex,3);
|
2018-02-05 20:23:25 -05:00
|
|
|
}
|
|
|
|
}
|
2018-05-09 18:04:02 -04:00
|
|
|
}
|
2018-02-05 20:23:25 -05:00
|
|
|
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_handles = function()
|
|
|
|
{
|
2018-05-10 04:01:31 -04:00
|
|
|
if(!this.show_extras){ return; }
|
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
for(segment_id in dotgrid.tool.layer()){
|
|
|
|
var segment = dotgrid.tool.layer()[segment_id];
|
|
|
|
for(vertex_id in segment.vertices){
|
|
|
|
var vertex = segment.vertices[vertex_id];
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_handle(vertex);
|
2018-05-09 17:18:30 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-09 18:04:02 -04:00
|
|
|
}
|
2018-05-09 17:18:30 -04:00
|
|
|
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_vertices = function()
|
|
|
|
{
|
|
|
|
for(id in dotgrid.tool.vertices){
|
|
|
|
this.draw_vertex(dotgrid.tool.vertices[id]);
|
2017-11-09 14:47:06 -05:00
|
|
|
}
|
2018-05-09 18:04:02 -04:00
|
|
|
}
|
2018-05-07 19:32:00 -04:00
|
|
|
|
2018-05-09 18:04:02 -04:00
|
|
|
this.draw_markers = function()
|
|
|
|
{
|
2018-05-10 04:01:31 -04:00
|
|
|
if(!this.show_extras){ return; }
|
|
|
|
|
2018-05-09 18:04:02 -04:00
|
|
|
for (var x = dotgrid.grid_x; x >= 0; x--) {
|
|
|
|
for (var y = dotgrid.grid_y; y >= 0; y--) {
|
|
|
|
var pos_x = parseInt(x * dotgrid.grid_width) + dotgrid.grid_width ;
|
|
|
|
var pos_y = parseInt(y * dotgrid.grid_height) + dotgrid.grid_height ;
|
|
|
|
var is_step = x % dotgrid.block_x == 0 && y % dotgrid.block_y == 0;
|
|
|
|
var radius = is_step ? 2.5 : 1.5;
|
|
|
|
this.draw_marker({x:pos_x,y:pos_y},radius,is_step);
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 14:47:06 -05:00
|
|
|
}
|
2017-11-12 21:25:29 -05:00
|
|
|
|
2018-02-05 18:39:25 -05:00
|
|
|
this.draw_vertex = function(pos, radius = 5)
|
|
|
|
{
|
|
|
|
var ctx = this.el.getContext('2d');
|
|
|
|
ctx.beginPath();
|
2018-05-07 18:47:09 -04:00
|
|
|
ctx.lineWidth = 2;
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.arc((pos.x * scale)+30, (pos.y * scale)+30, radius, 0, 2 * Math.PI, false);
|
2018-02-05 22:27:48 -05:00
|
|
|
ctx.fillStyle = dotgrid.theme.active.f_med;
|
2018-02-05 18:39:25 -05:00
|
|
|
ctx.fill();
|
|
|
|
ctx.closePath();
|
|
|
|
}
|
|
|
|
|
2017-11-12 21:25:29 -05:00
|
|
|
this.draw_marker = function(pos,radius = 1,step)
|
|
|
|
{
|
|
|
|
var ctx = this.el.getContext('2d');
|
|
|
|
ctx.beginPath();
|
2018-05-07 18:47:09 -04:00
|
|
|
ctx.lineWidth = 2;
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.arc(pos.x * scale, pos.y * scale, radius, 0, 2 * Math.PI, false);
|
2017-11-12 22:54:56 -05:00
|
|
|
ctx.fillStyle = step ? dotgrid.theme.active.f_med : dotgrid.theme.active.f_low;
|
2017-11-12 21:25:29 -05:00
|
|
|
ctx.fill();
|
2017-11-12 22:54:56 -05:00
|
|
|
ctx.closePath();
|
|
|
|
}
|
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
this.draw_paths = function()
|
|
|
|
{
|
2018-05-09 17:56:55 -04:00
|
|
|
var path = new Generator(dotgrid.tool.layer()).toString({x:15,y:15},scale)
|
|
|
|
var style = dotgrid.tool.style()
|
|
|
|
|
|
|
|
this.draw_path(path,style)
|
2018-05-09 17:18:30 -04:00
|
|
|
}
|
|
|
|
|
2018-05-09 17:56:55 -04:00
|
|
|
this.draw_path = function(path,style)
|
2018-05-09 17:18:30 -04:00
|
|
|
{
|
|
|
|
var ctx = this.el.getContext('2d');
|
2018-05-09 17:56:55 -04:00
|
|
|
var p = new Path2D(path);
|
2018-05-09 17:18:30 -04:00
|
|
|
|
2018-05-10 03:49:41 -04:00
|
|
|
ctx.setLineDash([0,0]);
|
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.strokeStyle = style.color;
|
|
|
|
ctx.lineWidth = style.thickness * scale;
|
|
|
|
ctx.lineCap = style.strokeLinecap;
|
|
|
|
ctx.lineJoin = style.strokeLinejoin;
|
2018-05-10 03:49:41 -04:00
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
if(style.fill && style.fill != "none"){
|
|
|
|
ctx.fillStyle = style.color
|
|
|
|
ctx.fill(p);
|
|
|
|
}
|
2018-05-10 03:49:41 -04:00
|
|
|
if(style.strokeLineDash){
|
|
|
|
ctx.setLineDash(style.strokeLineDash);
|
|
|
|
}
|
|
|
|
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.stroke(p);
|
|
|
|
}
|
|
|
|
|
2018-05-07 18:47:09 -04:00
|
|
|
this.draw_handle = function(pos,radius = 15)
|
2017-11-12 22:54:56 -05:00
|
|
|
{
|
2018-05-07 18:47:09 -04:00
|
|
|
var ctx = this.el.getContext('2d');
|
2017-11-12 22:54:56 -05:00
|
|
|
ctx.beginPath();
|
2018-05-10 03:49:41 -04:00
|
|
|
ctx.setLineDash([0,0]);
|
2018-05-07 18:47:09 -04:00
|
|
|
ctx.lineWidth = 3;
|
|
|
|
ctx.lineCap="round";
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.arc((pos.x * scale)+30, (pos.y * scale)+30, radius, 0, 2 * Math.PI, false);
|
2018-05-08 17:33:17 -04:00
|
|
|
ctx.strokeStyle = pos_is_equal(pos,dotgrid.cursor.pos) ? dotgrid.theme.active.b_inv : dotgrid.theme.active.f_low;
|
2018-05-07 18:47:09 -04:00
|
|
|
ctx.stroke();
|
2017-11-12 22:54:56 -05:00
|
|
|
ctx.closePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.draw_translation = function()
|
2018-05-09 18:04:02 -04:00
|
|
|
{
|
|
|
|
if(!dotgrid.cursor.translation){ return; }
|
2017-11-12 22:54:56 -05:00
|
|
|
// From
|
2018-05-07 18:47:09 -04:00
|
|
|
var ctx = this.el.getContext('2d');
|
2018-05-07 19:32:00 -04:00
|
|
|
var from = dotgrid.cursor.translation.from;
|
|
|
|
var to = dotgrid.cursor.translation.to;
|
2017-11-12 22:54:56 -05:00
|
|
|
|
2017-11-13 20:28:06 -05:00
|
|
|
if(to.x<=0) {
|
|
|
|
ctx.beginPath();
|
2018-05-10 03:49:41 -04:00
|
|
|
ctx.setLineDash([0,0]);
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.moveTo((from.x * -scale)+30,(from.y * scale)+30);
|
|
|
|
ctx.lineTo((to.x * -scale)+30,(to.y * scale)+30);
|
2017-11-13 20:28:06 -05:00
|
|
|
ctx.lineCap="round";
|
|
|
|
ctx.lineWidth = 5;
|
2018-01-31 15:32:47 -05:00
|
|
|
ctx.strokeStyle = dotgrid.theme.active.b_inv;
|
2017-11-13 20:28:06 -05:00
|
|
|
ctx.stroke();
|
|
|
|
ctx.closePath();
|
|
|
|
}
|
2017-11-12 21:25:29 -05:00
|
|
|
}
|
2018-05-07 19:32:00 -04:00
|
|
|
|
2018-05-07 19:35:27 -04:00
|
|
|
this.draw_cursor = function(pos = dotgrid.cursor.pos,radius = 10)
|
2018-05-07 19:32:00 -04:00
|
|
|
{
|
|
|
|
var ctx = this.el.getContext('2d');
|
|
|
|
ctx.beginPath();
|
2018-05-10 03:49:41 -04:00
|
|
|
ctx.setLineDash([0,0]);
|
2018-05-07 19:32:00 -04:00
|
|
|
ctx.lineWidth = 3;
|
|
|
|
ctx.lineCap="round";
|
2018-05-09 17:18:30 -04:00
|
|
|
ctx.arc(Math.abs(pos.x * -scale)+30, Math.abs(pos.y * scale)+30, radius, 0, 2 * Math.PI, false);
|
2018-05-07 19:32:00 -04:00
|
|
|
ctx.strokeStyle = dotgrid.theme.active.f_med;
|
|
|
|
ctx.stroke();
|
|
|
|
ctx.closePath();
|
|
|
|
}
|
2018-05-08 17:33:17 -04:00
|
|
|
|
2018-05-10 03:49:41 -04:00
|
|
|
this.draw_preview = function()
|
|
|
|
{
|
|
|
|
var operation = dotgrid.cursor.operation
|
|
|
|
|
|
|
|
if(!dotgrid.tool.can_cast(operation)){ return; }
|
|
|
|
if(operation == "close"){ return; }
|
|
|
|
|
|
|
|
var path = new Generator([{vertices:dotgrid.tool.vertices,type:operation}]).toString({x:15,y:15},2)
|
|
|
|
var style = {
|
2018-05-10 03:53:09 -04:00
|
|
|
color:dotgrid.theme.active.f_med,
|
2018-05-10 03:49:41 -04:00
|
|
|
thickness:2,
|
|
|
|
strokeLinecap:"round",
|
|
|
|
strokeLinejoin:"round",
|
|
|
|
strokeLineDash:[5, 15]
|
|
|
|
}
|
|
|
|
|
|
|
|
this.draw_path(path,style)
|
|
|
|
}
|
|
|
|
|
2018-05-08 17:33:17 -04:00
|
|
|
function pos_is_equal(a,b){ return a && b && Math.abs(a.x) == Math.abs(b.x) && Math.abs(a.y) == Math.abs(b.y) }
|
2018-05-09 03:23:06 -04:00
|
|
|
}
|