forked from skanaar/nomnoml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
skanaar.svg.js
170 lines (161 loc) · 4.99 KB
/
skanaar.svg.js
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
var skanaar = skanaar || {}
skanaar.Svg = function (globalStyle){
var initialState = { x: 0, y: 0, stroke: 'none', fill: 'none', textAlign: 'left' }
var states = [initialState]
var elements = []
function Element(name, attr, content) {
attr.style = attr.style || ''
return {
name: name,
attr: attr,
content: content || undefined,
stroke: function (){
this.attr.style += 'stroke:'+lastDefined('stroke')+';fill:none;';
return this
},
fill: function (){
this.attr.style += 'stroke:none; fill:'+lastDefined('fill')+';';
return this
},
fillAndStroke: function (){
this.attr.style += 'stroke:'+lastDefined('stroke')+';fill:'+lastDefined('fill')+';';
return this
}
}
}
function State(dx, dy){
return { x: dx, y: dy, stroke: null, fill: null, textAlign: null }
}
function trans(coord, axis){
states.forEach(function (t){ coord += t[axis] })
return coord
}
function tX(coord){ return Math.round(10*trans(coord, 'x'))/10 }
function tY(coord){ return Math.round(10*trans(coord, 'y'))/10 }
function lastDefined(property){
for(var i=states.length-1; i>=0; i--)
if (states[i][property])
return states[i][property]
return undefined
}
function last(list){ return list[list.length-1] }
function tracePath(path, offset, s){
s = s === undefined ? 1 : s
offset = offset || {x:0, y:0}
var d = path.map(function (e, i){
return (i ? 'L' : 'M') + tX(offset.x + s*e.x) + ' ' + tY(offset.y + s*e.y)
}).join(' ')
return newElement('path', { d: d })
}
function newElement(type, attr, content) {
var element = Element(type, attr, content)
elements.push(element)
return element
}
return {
width: function (){ return elements.width },
height: function (){ return elements.height },
background: function (/*r, g, b*/){},
clear: function (){},
circle: function (x, y, r){
var attr = (arguments.length === 2) ?
{r: y, cx: tX(x.x), cy: tY(x.y)} :
{r: r, cx: tX(x), cy: tY(y)}
var element = Element('circle', attr)
elements.push(element)
return element
},
ellipse: function (center, w, h /*, start, stop*/){
return newElement('ellipse',
{ cx: tX(center.x), cy: tY(center.y), rx: w/2, ry: h/2 })
},
arc: function (x, y, r /*, start, stop*/){
return newElement('ellipse',
{ cx: tX(x), cy: tY(y), rx: r, ry: r })
},
roundRect: function (x, y, w, h, r){
return newElement('rect',
{ x: tX(x), y: tY(y), rx: r, ry: r, height: h, width: w })
},
rect: function (x, y, w, h){
return newElement('rect',
{ x: tX(x), y: tY(y), height: h, width: w })
},
path: tracePath,
circuit: function (path, offset, s){
var element = tracePath(path, offset, s)
element.attr.d += ' Z'
return element
},
font: function (font){
last(states).font = font;
},
strokeStyle: function (stroke){
last(states).stroke = stroke
},
fillStyle: function (fill){
last(states).fill = fill
},
arcTo: function (x1, y1, x2, y2){
last(elements).attr.d += ('L'+tX(x1)+' '+tY(y1)+' L'+tX(x2)+' '+tY(y2)+' ')
},
beginPath: function (){
return newElement('path', {d:''})
},
fillText: function (text, x, y){
if (lastDefined('textAlign') === 'center')
x -= this.measureText(text).width/2
return newElement('text', { x: tX(x), y: tY(y) }, text)
},
lineCap: function (cap){ globalStyle += ';stroke-linecap:'+cap },
lineJoin: function (join){ globalStyle += ';stroke-linejoin:'+join },
lineTo: function (x, y){
last(elements).attr.d += ('L' + tX(x) + ' ' + tY(y) + ' ')
},
lineWidth: function (w){ globalStyle += ';stroke-width:'+w},
measureText: function (s){
return { width: s.length * 8.5 }
},
moveTo: function (x, y){
last(elements).attr.d += ('M' + tX(x) + ' ' + tY(y) + ' ')
},
restore: function (){
states.pop()
},
save: function (){
states.push(State(0, 0))
},
scale: function (){},
setLineDash: function (){},
stroke: function (){
last(elements).stroke()
},
textAlign: function (a){
last(states).textAlign = a
},
translate: function (dx, dy){
last(states).x += dx
last(states).y += dy
},
serialize: function (_attributes){
var attrs = _attributes || {};
attrs.version = attrs.version || '1.1';
attrs.baseProfile = attrs.baseProfile || 'full';
attrs.width = attrs.width || '100%';
attrs.height = attrs.height || '100%';
attrs.xmlns = attrs.xmlns || 'http://www.w3.org/2000/svg';
attrs['xmlns:xlink'] = attrs['xmlns:xlink'] || 'http://www.w3.org/1999/xlink';
attrs['xmlns:ev'] = attrs['xmlns:ev'] || 'http://www.w3.org/2001/xml-events';
attrs.style = attrs.style || lastDefined('font') + ';' + globalStyle;
function toAttr(obj){
function toKeyValue(key){ return key + '="' + obj[key] + '"' }
return Object.keys(obj).map(toKeyValue).join(' ')
}
function toHtml(e){
return '<'+e.name+' '+toAttr(e.attr)+'>'+(e.content || '')+'</'+e.name+'>'
}
var innerSvg = elements.map(toHtml).join('\n')
return toHtml(Element('svg', attrs, innerSvg))
}
}
};