contentview_Paint.js 21.3 KB
Newer Older
Motohisa Nakano committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
/// コンテンツ閲覧画面_消しゴム書式オーバーレイ
/// <reference path="../common/js/avweb.js" />

/// <reference path="../common/js/screenLock.js" />

/// <reference path="../common/js/common.js" />

/// <reference path="../common/js/i18n.js" />

/// <reference path="../common/js/jquery-1.8.1.min.js" />

/// <reference path="../common/js/jquery-ui-1.8.23.custom.min.js" />

/// <reference path="../common/js/jquery.toastmessage.js" />

/// <reference path="../common/js/pageViewer.js" />

// works out the X, Y position of the click inside the canvas from the X, Y position on the page
function getPosition(mouseEvent, sigCanvas) {
    var x, y;
    if (mouseEvent.pageX != undefined && mouseEvent.pageY != undefined) {
        x = mouseEvent.pageX;
        y = mouseEvent.pageY;
    } else {
        x = mouseEvent.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
        y = mouseEvent.clientY + document.body.scrollTop + document.documentElement.scrollTop;
    }

    return { X: x - sigCanvas.offsetLeft, Y: y - sigCanvas.offsetTop };
};


function initializeCanvas(targetCanvas) {
    // get references to the canvas element as well as the 2D drawing context
    var sigCanvas = targetCanvas;
    var context = sigCanvas.getContext("2d");
    context.strokeStyle = 'Black';

    // This will be defined on a TOUCH device such as iPad or Android, etc.
    var is_touch_device = 'ontouchstart' in document.documentElement;

    if (is_touch_device) {
        // create a drawer which tracks touch movements
        var drawer = {
            isDrawing: false,
            //            touchstart: function (coors) {
            //                context.beginPath();
            //                context.moveTo(coors.x, coors.y);
            //                this.isDrawing = true;
            //            },
            //            touchmove: function (coors) {
            //                if (this.isDrawing) {
            //                    context.lineTo(coors.x, coors.y);
            //                    context.stroke();
            //                }
            //            },
            //            touchend: function (coors) {
            //                if (this.isDrawing) {
            //                    this.touchmove(coors);
            //                    this.isDrawing = false;
            //                }
            //            }
            touchstart: function (coors) {
                context.beginPath();
                context.moveTo(coors.x, coors.y);
                this.isDrawing = true;
                drawPoint(coors, context);
            },
            touchmove: function (coors) {
                if (this.isDrawing) {
                    drawMove(coors, context);
                }
            },
            touchend: function (coors) {
                if (this.isDrawing) {
                    //this.touchmove(coors);
                    this.isDrawing = false;
                    context.closePath();
                }
            }

        };

        // create a function to pass touch events and coordinates to drawer
        function draw(event) {
            if (event.type == "touchend") {
                drawer[event.type](null);
            }
            else {
                // get the touch coordinates.  Using the first touch in case of multi-touch
                var coors = {
                    x: event.targetTouches[0].pageX,
                    y: event.targetTouches[0].pageY
                };

                // Now we need to get the offset of the canvas location
                var obj = sigCanvas;

                if (obj.offsetParent) {
                    // Every time we find a new object, we add its offsetLeft and offsetTop to curleft and curtop.
                    do {
                        coors.x -= obj.offsetLeft;
                        coors.y -= obj.offsetTop;
                    }
                    // The while loop can be "while (obj = obj.offsetParent)" only, which does return null
                    // when null is passed back, but that creates a warning in some editors (i.e. VS2010).
                    while ((obj = obj.offsetParent) != null);
                }

                // pass the coordinates to the appropriate handler
                drawer[event.type](coors);
            }
        };


        // attach the touchstart, touchmove, touchend event listeners.
        sigCanvas.addEventListener('touchstart', draw, false);
        sigCanvas.addEventListener('touchmove', draw, false);
        sigCanvas.addEventListener('touchend', draw, false);

        // prevent elastic scrolling
        sigCanvas.addEventListener('touchmove', function (event) {
            event.preventDefault();
        }, false);
    }
    
};
function drawMove(coors, context_draw) {
    if (isAddingMarking == true) {

        
            if (markingType == 'eraser') {
                //context.clearRect(coors.x, coors.y, ClientData.erase_size(), ClientData.erase_size());
                context_draw.globalCompositeOperation = 'destination-out';
                context_draw.lineWidth = eraseSize;
                context_draw.lineJoin = 'round';
                context_draw.lineCap = 'round';
                context_draw.lineTo(sx, sy);
                context_draw.stroke();
                context_draw.globalCompositeOperation = 'source-over';
            }
            else if (markingType == 'pen') {
                context_draw.lineCap = "round";
                context_draw.lineJoin = "bevel";
                context_draw.lineWidth = penSize;
                context_draw.strokeStyle = "#" + penColor;
                //context_draw.globalAlpha = 1;	    			
                context_draw.lineTo(coors.x, coors.y);
                context_draw.stroke();
            }
            else if (markingType == 'maker') {
                /*context_draw.clearRect(coors.x , coors.y,makerSize, coors.y - sy);*/
                /*context_draw.globalCompositeOperation = 'destination-out';
                context_draw.lineWidth = makerSize/10;
                context_draw.lineHeight = makerSize/10;
                context_draw.lineJoin = 'bevel';
                context_draw.lineCap = 'butt';
                context_draw.lineTo(coors.x, coors.y);
                context_draw.stroke();
                context_draw.globalCompositeOperation = 'source-over';*/
                //context_draw.globalCompositeOperation = 'destination-out'			    		   					      		
                context_draw.beginPath();

                var halfSize = makerSize / 2;
                var quotSize = makerSize / 4;

                var ptStart = [
									{ x: sx - quotSize, y: sy - halfSize },
									{ x: sx + quotSize, y: sy - halfSize },
									{ x: sx + quotSize, y: sy + halfSize },
									{ x: sx - quotSize, y: sy + halfSize }
							  ];
                var ptEnd = [
											{ x: coors.x - quotSize, y: coors.y - halfSize },
											{ x: coors.x + quotSize, y: coors.y - halfSize },
											{ x: coors.x + quotSize, y: coors.y + halfSize },
											{ x: coors.x - quotSize, y: coors.y + halfSize }
							];
                if (sx > coors.x) {
                    if (sy > coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();
                        // 左上に描画する場合
                        context_draw.moveTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.closePath();
                    } else if (sy < coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);	
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 左下に描画する場合
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.closePath();
                    } else {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 左に描画する場合
                        context_draw.moveTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.closePath();
                    }
                } else if (sx < coors.x) {
                    if (sy > coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';								
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 右上に描画する場合
                        context_draw.moveTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.closePath();
                    } else if (sy < coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 右下に描画する場合
                        context_draw.moveTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.closePath();
                    } else {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 右に描画する場合
                        context_draw.moveTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.closePath();
                    }
                } else {
                    if (sy > coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 上に描画する場合
                        context_draw.moveTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineTo(ptEnd[0].x, ptEnd[0].y);
                        context_draw.lineTo(ptEnd[1].x, ptEnd[1].y);
                        context_draw.closePath();
                    } else if (sy < coors.y) {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 下に描画する場合
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptEnd[2].x, ptEnd[2].y);
                        context_draw.lineTo(ptEnd[3].x, ptEnd[3].y);
                        context_draw.closePath();
                    } else {
                        context_draw.globalCompositeOperation = 'destination-out';
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.lineJoin = 'bevel';
                        context_draw.lineCap = 'butt';
                        context_draw.fillStyle = "#" + makerColor;
                        context_draw.fill();				
                        context_draw.globalCompositeOperation = 'lighter';
                        context_draw.closePath();
                        context_draw.beginPath();

                        // 移動なしの場合
                        context_draw.moveTo(ptStart[0].x, ptStart[0].y);
                        context_draw.lineTo(ptStart[1].x, ptStart[1].y);
                        context_draw.lineTo(ptStart[2].x, ptStart[2].y);
                        context_draw.lineTo(ptStart[3].x, ptStart[3].y);
                        context_draw.closePath();
                    }
                }
                context_draw.lineJoin = 'bevel';
                context_draw.lineCap = 'butt';
                context_draw.globalAlpha = 0.4;   // Opacity 20%
                context_draw.fillStyle = "#" + makerColor;
                context_draw.fill();

                context_draw.globalAlpha = 1;   // Opacity 100%
            }


            /*
            * 描画モードを戻す
            */
            context_draw.globalCompositeOperation = 'source-over';

            // 終点を保存
            sx = coors.x;
            sy = coors.y;


        
    }
};

function drawPoint(coors, context_draw) {
    /* set value sx,sy */
    sx = coors.x;
    sy = coors.y;

    if (isAddingMarking == true) {
        /* begin draw*/
        isClearDrawing = false;

        if (markingType == 'eraser') {
            context_draw.globalCompositeOperation = 'destination-out';
            context_draw.lineWidth = eraseSize;
            context_draw.lineJoin = 'round';
            context_draw.lineCap = 'round';
            context_draw.lineTo(coors.x + 0.001, coors.y + 0.001);
            context_draw.stroke();
            context_draw.globalCompositeOperation = 'source-over';
        }
        else if (markingType == 'pen') {
            /* set flag */
            isDrawing = true;

            context_draw.lineCap = "round";
            context_draw.lineWidth = penSize;
            context_draw.strokeStyle = "#" + penColor;
            context_draw.lineTo(coors.x + 0.001, coors.y + 0.001);
            context_draw.stroke();
        }
        else if (markingType == 'maker') {
            /* set flag */
            isDrawing = true;

            context_draw.globalCompositeOperation = 'destination-out';
            context_draw.lineWidth = makerSize ;
            context_draw.lineHeight = makerSize;
            context_draw.lineTo(coors.x , coors.y + 0.001);		
            context_draw.lineCap = 'square';
            context_draw.strokeStyle = "#" + makerColor;
            context_draw.stroke();				
            context_draw.globalCompositeOperation = 'lighter';

            context_draw.lineCap = "square";
            context_draw.lineWidth = makerSize;
            context_draw.lineHeight = makerSize;
            context_draw.globalAlpha = 0.4;
            context_draw.strokeStyle = "#" + makerColor;
            context_draw.lineTo(coors.x, coors.y + 0.001);
            context_draw.stroke();
            context_draw.globalAlpha = 1;
        }

        
    }
};