-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathgenerate.go
422 lines (382 loc) · 11.9 KB
/
generate.go
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
// Package generate performs slide deck generation
package generate
import (
"fmt"
"io"
"github.com/ajstarks/deck"
)
const (
circlefmt = `<ellipse xp="%.2f" yp="%.2f" wp="%.2f" hr="%.2f" opacity="%.2f" color="%s"/>`
squarefmt = `<rect xp="%.2f" yp="%.2f" wp="%.2f" hr="%.2f" opacity="%.2f" color="%s"/>`
ellipsefmt = `<ellipse xp="%.2f" yp="%.2f" wp="%.2f" hp="%.2f" opacity="%.2f" color="%s"/>`
rectfmt = `<rect xp="%.2f" yp="%.2f" wp="%.2f" hp="%.2f" opacity="%.2f" color="%s"/>`
arcfmt = `<arc xp="%.2f" yp="%.2f" wp="%.2f" hp="%.2f" sp="%.2f" a1="%.2f" a2="%.2f" opacity="%.2f" color="%s"/>`
linefmt = `<line xp1="%.2f" yp1="%.2f" xp2="%.2f" yp2="%.2f" sp="%.2f" opacity="%.2f" color="%s"/>`
curvefmt = `<curve xp1="%.2f" yp1="%.2f" xp2="%.2f" yp2="%.2f" xp3="%.2f" yp3="%.2f" sp="%.2f" opacity="%.2f" color="%s"/>`
polygonfmt = `<polygon xc="%s" yc="%s" opacity="%.2f" color="%s"/>`
textfmt = `<text xp="%.2f" yp="%.2f" sp="%.2f" align="%s" wp="%.2f" font="%s" opacity="%.2f" color="%s" type="%s">%s</text>`
textlinkfmt = `<text xp="%.2f" yp="%.2f" sp="%.2f" align="%s" wp="%.2f" font="%s" opacity="%.2f" color="%s" type="%s" link="%s">%s</text>`
textrotfmt = `<text xp="%.2f" yp="%.2f" sp="%.2f" align="%s" wp="%.2f" font="%s" opacity="%.2f" color="%s" type="%s" link="%s" rotation="%.2f">%s</text>`
imagefmt = `<image xp="%.2f" yp="%.2f" width="%d" height="%d" name="%s" link="%s"/>`
listfmt = `<list type="%s" xp="%.2f" yp="%.2f" sp="%.2f" lp="%.2f" wp="%.2f" font="%s" color="%s">`
lifmt = `<li>%s</li>`
closelist = `</list>`
slidefmt = `<slide>`
slidebg = `<slide bg="%s">`
slidebgfg = `<slide bg="%s" fg="%s">`
closeslide = `</slide>`
deckfmt = `<deck><canvas width="%d" height="%d"/>`
closedeck = `</deck>`
)
// Deck is the generated deck structure.
type Deck struct {
width, height int
dest io.Writer
}
// NewSlides initializes he generated deck structure.
func NewSlides(where io.Writer, w, h int) *Deck {
return &Deck{dest: where, width: w, height: h}
}
// StartDeck begins a slide deck.
func (p *Deck) StartDeck() {
fmt.Fprintf(p.dest, deckfmt, p.width, p.height)
}
// EndDeck ends a slide.
func (p *Deck) EndDeck() {
fmt.Fprintln(p.dest, closedeck)
}
// StartSlide begins a slide.
func (p *Deck) StartSlide(colors ...string) {
switch len(colors) {
case 1:
fmt.Fprintf(p.dest, slidebg, colors[0])
case 2:
fmt.Fprintf(p.dest, slidebgfg, colors[0], colors[1])
default:
fmt.Fprintln(p.dest, slidefmt)
}
}
// EndSlide ends a slide.
func (p *Deck) EndSlide() {
fmt.Fprintln(p.dest, closeslide)
}
// square makes square markup from the rect structure.
func (p *Deck) square(r deck.Rect) {
fmt.Fprintf(p.dest, squarefmt, r.Xp, r.Yp, r.Wp, r.Hr, r.Opacity, r.Color)
}
// circle makes square markup from the ellipse structure.
func (p *Deck) circle(e deck.Ellipse) {
fmt.Fprintf(p.dest, circlefmt, e.Xp, e.Yp, e.Wp, e.Hr, e.Opacity, e.Color)
}
// ellipse makes ellipse markup from the ellipse structure.
func (p *Deck) ellipse(e deck.Ellipse) {
fmt.Fprintf(p.dest, ellipsefmt, e.Xp, e.Yp, e.Wp, e.Hp, e.Opacity, e.Color)
}
// rect makes rect markup rom the rect structure.
func (p *Deck) rect(r deck.Rect) {
fmt.Fprintf(p.dest, rectfmt, r.Xp, r.Yp, r.Wp, r.Hp, r.Opacity, r.Color)
}
// line makes line markup from the deck line structure.
func (p *Deck) line(l deck.Line) {
fmt.Fprintf(p.dest, linefmt, l.Xp1, l.Yp1, l.Xp2, l.Yp2, l.Sp, l.Opacity, l.Color)
}
// curve makes curve markup from the curve structure.
func (p *Deck) curve(c deck.Curve) {
fmt.Fprintf(p.dest, curvefmt, c.Xp1, c.Yp1, c.Xp2, c.Yp2, c.Xp3, c.Yp3, c.Sp, c.Opacity, c.Color)
}
// arc makes arc markup from the arc structure.
func (p *Deck) arc(a deck.Arc) {
fmt.Fprintf(p.dest, arcfmt, a.Xp, a.Yp, a.Wp, a.Hp, a.Sp, a.A1, a.A2, a.Opacity, a.Color)
}
// polygon makes polygon markup from the polygon structure.
func (p *Deck) polygon(poly deck.Polygon) {
fmt.Fprintf(p.dest, polygonfmt, poly.XC, poly.YC, poly.Opacity, poly.Color)
}
// text makes text markup from the deck text structure.
func (p *Deck) text(t deck.Text) {
fmt.Fprintf(p.dest, textfmt, t.Xp, t.Yp, t.Sp, t.Align, t.Wp, t.Font, t.Opacity, t.Color, t.Type, t.Tdata)
}
// textlink makes text markup from the deck text structure, including a link
func (p *Deck) textlink(t deck.Text) {
fmt.Fprintf(p.dest, textlinkfmt, t.Xp, t.Yp, t.Sp, t.Align, t.Wp, t.Font, t.Opacity, t.Color, t.Type, t.Link, t.Tdata)
}
// textrotate makes text markup from the deck text structure, including a link
func (p *Deck) textrotate(t deck.Text) {
fmt.Fprintf(p.dest, textrotfmt, t.Xp, t.Yp, t.Sp, t.Align, t.Wp, t.Font, t.Opacity, t.Color, t.Type, t.Link, t.Rotation, t.Tdata)
}
// image makes image markup from the deck image structure.
func (p *Deck) image(pic deck.Image) {
fmt.Fprintf(p.dest, imagefmt, pic.Xp, pic.Yp, pic.Width, pic.Height, pic.Name, pic.Link)
}
// list makes markup from the list deck structure.
func (p *Deck) list(l deck.List, items []string, ltype, font, color string) {
fmt.Fprintf(p.dest, listfmt, ltype, l.Xp, l.Yp, l.Sp, l.Lp, l.Wp, l.Font, l.Color)
for _, s := range items {
fmt.Fprintf(p.dest, lifmt, s)
}
fmt.Fprintln(p.dest, closelist)
}
// Text places plain text aligned at (x,y), with specified font, size and color. Opacity is optional
func (p *Deck) Text(x, y float64, s, font string, size float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Color = color
t.Tdata = s
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.text(t)
}
// TextMid places centered text aligned at (x,y), with specified font, size and color. Opacity is optional.
func (p *Deck) TextMid(x, y float64, s, font string, size float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Tdata = s
t.Color = color
t.Align = "center"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.text(t)
}
// TextEnd places right-justified text aligned at (x,y), with specified font, size and color. Opacity is optional.
func (p *Deck) TextEnd(x, y float64, s, font string, size float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Tdata = s
t.Color = color
t.Align = "right"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.text(t)
}
// TextBlock makes a block of text aligned at (x,y), wrapped at margin; with specified font, size and color. Opacity is optional.
func (p *Deck) TextBlock(x, y float64, s, font string, size, margin float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Wp = margin
t.Tdata = s
t.Color = color
t.Type = "block"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.text(t)
}
// TextLink places text aligned at (x,y) with a link
func (p *Deck) TextLink(x, y float64, s, link, font string, size float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Tdata = s
t.Color = color
t.Link = link
t.Type = "plain"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.textlink(t)
}
// TextRotate places rotated text
func (p *Deck) TextRotate(x, y float64, s, link, font string, rotation, size float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Font = font
t.Tdata = s
t.Color = color
t.Link = link
t.Rotation = rotation
t.Type = "plain"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.textrotate(t)
}
// Code makes a code block at (x,y), with specified size and color (opacity is optional),
// on a light gray background with the specified margin width.
func (p *Deck) Code(x, y float64, s string, size, margin float64, color string, opacity ...float64) {
t := deck.Text{}
t.Xp = x
t.Yp = y
t.Sp = size
t.Wp = margin
t.Tdata = s
t.Color = color
t.Type = "code"
if len(opacity) > 0 {
t.Opacity = opacity[0]
} else {
t.Opacity = 100
}
p.text(t)
}
// List makes a plain, bullet, or plain list with the specified font, size and color, with optional spacing
func (p *Deck) List(x, y, size, spacing, wrap float64, items []string, ltype, font, color string) {
l := deck.List{}
l.Xp = x
l.Yp = y
l.Sp = size
l.Lp = spacing
l.Wp = wrap
l.Font = font
l.Color = color
p.list(l, items, ltype, font, color)
}
// Square makes a square, centered at (x,y), with width w, at the specified color and optional opacity.
func (p *Deck) Square(x, y, w float64, color string, opacity ...float64) {
r := deck.Rect{}
r.Xp = x
r.Yp = y
r.Wp = w
r.Hr = 100
r.Color = color
if len(opacity) > 0 {
r.Opacity = opacity[0]
} else {
r.Opacity = 100
}
p.square(r)
}
// Circle makes a circle, centered at (x,y) with width w, at the specified color and optional opacity.
func (p *Deck) Circle(x, y, w float64, color string, opacity ...float64) {
e := deck.Ellipse{}
e.Xp = x
e.Yp = y
e.Wp = w
e.Hr = 100
e.Color = color
if len(opacity) > 0 {
e.Opacity = opacity[0]
} else {
e.Opacity = 100
}
p.circle(e)
}
// Rect makes a rectangle, centered at (x,y), with (w,h) dimensions, at the specified color and optional opacity.
func (p *Deck) Rect(x, y, w, h float64, color string, opacity ...float64) {
r := deck.Rect{}
r.Xp = x
r.Yp = y
r.Wp = w
r.Hp = h
r.Color = color
if len(opacity) > 0 {
r.Opacity = opacity[0]
} else {
r.Opacity = 100
}
p.rect(r)
}
// Ellipse makes a ellipse graphic, centered at (x,y), with (w,h) dimensions, at the specified color and optional opacity.
func (p *Deck) Ellipse(x, y, w, h float64, color string, opacity ...float64) {
e := deck.Ellipse{}
e.Xp = x
e.Yp = y
e.Wp = w
e.Hp = h
e.Color = color
if len(opacity) > 0 {
e.Opacity = opacity[0]
} else {
e.Opacity = 100
}
p.ellipse(e)
}
// Line makes a line from (x1,y1) to (x2, y2), with the specified color with optional opacity; thickness is size.
func (p *Deck) Line(x1, y1, x2, y2, size float64, color string, opacity ...float64) {
l := deck.Line{Xp1: x1, Xp2: x2, Yp1: y1, Yp2: y2, Sp: size, Color: color}
if len(opacity) > 0 {
l.Opacity = opacity[0]
} else {
l.Opacity = 100
}
p.line(l)
}
// Arc makes an arc centered at (x,y), with specified color (with optional opacity),
// with dimensions (w,h), between angle a1 and a2 (specified in degrees).
func (p *Deck) Arc(x, y, w, h, size, a1, a2 float64, color string, opacity ...float64) {
a := deck.Arc{A1: a1, A2: a2}
a.Xp = x
a.Yp = y
a.Wp = w
a.Hp = h
a.Sp = size
a.Color = color
if len(opacity) > 0 {
a.Opacity = opacity[0]
} else {
a.Opacity = 100
}
p.arc(a)
}
// Curve makes a Bezier curve between (x1, y2) and (x3, y3), with control points at (x2, y2), thickness is specified by size.
func (p *Deck) Curve(x1, y1, x2, y2, x3, y3, size float64, color string, opacity ...float64) {
c := deck.Curve{Xp1: x1, Xp2: x2, Xp3: x3, Yp1: y1, Yp2: y2, Yp3: y3, Sp: size, Color: color}
if len(opacity) > 0 {
c.Opacity = opacity[0]
} else {
c.Opacity = 100
}
p.curve(c)
}
// Polygon makes a polygon with the specified color (with optional opacity), with coordinates in x and y slices.
func (p *Deck) Polygon(x, y []float64, color string, opacity ...float64) {
xc, yc := Polycoord(x, y)
poly := deck.Polygon{XC: xc, YC: yc, Color: color}
if len(opacity) > 0 {
poly.Opacity = opacity[0]
}
p.polygon(poly)
}
// Polycoord converts slices of coordinates to strings.
func Polycoord(px, py []float64) (string, string) {
var xc, yc string
np := len(px)
if np < 3 || len(py) != np {
return xc, yc
}
for i := 0; i < np-1; i++ {
xc += fmt.Sprintf("%.2f ", px[i])
yc += fmt.Sprintf("%.2f ", py[i])
}
xc += fmt.Sprintf("%.2f", px[np-1])
yc += fmt.Sprintf("%.2f", py[np-1])
return xc, yc
}
// Image places the named image centered at (x, y), with dimensions of (w, h).
func (p *Deck) Image(x, y float64, w, h int, name, link string) {
i := deck.Image{Width: w, Height: h, Name: name}
i.Xp = x
i.Yp = y
i.CommonAttr.Link = link
p.image(i)
}