libatscc2js-html5-canvas
Version:
The package implements a partial API in ATS for drawing on 2D-canvas.
246 lines (217 loc) • 5.24 kB
JavaScript
/*
******
*
* HX-2014-08:
* for JavaScript code
* translated from ATS
*
******
*/
/*
******
* beg of [canvas2d_cats.js]
******
*/
/* ****** ****** */
function
ats2js_HTML5_canvas_getById
(id)
{
var
canvas =
document.getElementById(id);
if(!canvas)
{
throw "ats2js_HTML5_canvas_getById: canvas is not found";
}
return canvas;
}
/* ****** ****** */
function
ats2js_HTML5_canvas2d_getById
(id)
{
var
canvas =
document.getElementById(id);
if(!canvas)
{
throw "ats2js_HTML5_canvas_getById: canvas is not found";
}
if(!canvas.getContext)
{
throw "ats2js_HTML5_canvas2d_getById: canvas-2d is not supported";
}
return canvas.getContext("2d");
}
/* ****** ****** */
function
ats2js_HTML5_canvas2d_beginPath
(ctx) { ctx.beginPath(); return; }
function
ats2js_HTML5_canvas2d_closePath
(ctx) { ctx.closePath(); return; }
/* ****** ****** */
function
ats2js_HTML5_canvas2d_moveTo
(ctx, x, y) { ctx.moveTo(x, y); return; }
function
ats2js_HTML5_canvas2d_lineTo
(ctx, x, y) { ctx.lineTo(x, y); return; }
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_translate
(ctx, x, y) { ctx.translate(x, y); return; }
//
function
ats2js_HTML5_canvas2d_scale
(ctx, sx, sy) { ctx.scale(sx, sy); return; }
//
function
ats2js_HTML5_canvas2d_rotate
(ctx, rangle) { ctx.rotate(rangle); return; }
//
/* ****** ****** */
function
ats2js_HTML5_canvas2d_rect
(ctx, xul, yul, width, height)
{
ctx.rect(xul, yul, width, height); return;
} /* end of [ats2js_HTML5_canvas2d_rect] */
function
ats2js_HTML5_canvas2d_arc
(ctx, xc, yc, rad, angle_beg, angle_end, CCW)
{
ctx.arc(xc, yc, rad, angle_beg, angle_end, CCW); return;
} /* end of [ats2js_HTML5_canvas2d_arc] */
/* ****** ****** */
function
ats2js_HTML5_canvas2d_clearRect
(ctx, xul, yul, width, height)
{
ctx.clearRect(xul, yul, width, height); return;
} /* end of [ats2js_HTML5_canvas2d_clearRect] */
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_fill(ctx) { ctx.fill(); return; }
function
ats2js_HTML5_canvas2d_stroke(ctx) { ctx.stroke(); return; }
//
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_fillRect
(ctx, xul, yul, width, height)
{
ctx.fillRect(xul, yul, width, height); return;
} /* end of [ats2js_HTML5_canvas2d_fillRect] */
//
function
ats2js_HTML5_canvas2d_strokeRect
(ctx, xul, yul, width, height)
{
ctx.strokeRect(xul, yul, width, height); return;
} /* end of [ats2js_HTML5_canvas2d_strokeRect] */
//
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_fillText
(ctx, text, xstart, ystart)
{
ctx.fillText(text, xstart, ystart); return;
}
function
ats2js_HTML5_canvas2d_fillText2
(ctx, text, xstart, ystart, maxWidth)
{
ctx.fillText2(text, xstart, ystart, maxWidth); return;
}
//
/* ****** ****** */
function
ats2js_HTML5_canvas2d_save(ctx) { ctx.save(); return; }
function
ats2js_HTML5_canvas2d_restore(ctx) { ctx.restore(); return; }
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_get_lineWidth
(ctx) { return ctx.lineWidth; }
function
ats2js_HTML5_canvas2d_set_lineWidth_int
(ctx, lineWidth) { ctx.lineWidth = lineWidth; return; }
function
ats2js_HTML5_canvas2d_set_lineWidth_double
(ctx, lineWidth) { ctx.lineWidth = lineWidth; return; }
//
/* ****** ****** */
function
ats2js_HTML5_canvas2d_set_font_string
(ctx, font) { ctx.font = font; return; }
function
ats2js_HTML5_canvas2d_set_textAlign_string
(ctx, textAlign) { ctx.textAlign = textAlign; return; }
function
ats2js_HTML5_canvas2d_set_textBaseline_string
(ctx, textBaseline) { ctx.textBaseline = textBaseline; return; }
/* ****** ****** */
function
ats2js_HTML5_canvas2d_set_fillStyle_string
(ctx, fillStyle) { ctx.fillStyle = fillStyle; return; }
function
ats2js_HTML5_canvas2d_set_strokeStyle_string
(ctx, strokeStyle) { ctx.strokeStyle = strokeStyle; return; }
/* ****** ****** */
function
ats2js_HTML5_canvas2d_set_shadowColor_string
(ctx, shadowColor) { ctx.shadowColor = shadowColor; return; }
/* ****** ****** */
function
ats2js_HTML5_canvas2d_set_shadowBlur_int
(ctx, shadowBlur) { ctx.shadowBlur = shadowBlur; return; }
function
ats2js_HTML5_canvas2d_set_shadowBlur_string
(ctx, shadowBlur) { ctx.shadowBlur = shadowBlur; return; }
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_set_shadowOffsetX_int
(ctx, X) { ctx.shadowOffsetX = X; return; }
function
ats2js_HTML5_canvas2d_set_shadowOffsetX_double
(ctx, X) { ctx.shadowOffsetX = X; return; }
//
function
ats2js_HTML5_canvas2d_set_shadowOffsetY_int
(ctx, Y) { ctx.shadowOffsetY = Y; return; }
function
ats2js_HTML5_canvas2d_set_shadowOffsetY_double
(ctx, Y) { ctx.shadowOffsetY = Y; return; }
//
/* ****** ****** */
function
ats2js_HTML5_canvas2d_createLinearGradient
(ctx, x0, y0, x1, y1)
{
return ctx.createLinearGradient(x0, y0, x1, y1);
}
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_gradient_addColorStop
(grad, stop, color) { grad.addColorStop(stop, color); return; }
//
/* ****** ****** */
//
function
ats2js_HTML5_canvas2d_set_fillStyle_gradient
(ctx, gradient) { ctx.fillStyle = gradient; return; }
function
ats2js_HTML5_canvas2d_set_strokeStyle_gradient
(ctx, gradient) { ctx.strokeStyle = gradient; return; }
//
/* ****** ****** */
/* end of [canvas2d_cats.js] */