-
Notifications
You must be signed in to change notification settings - Fork 84
/
openvg.go
598 lines (539 loc) · 17.7 KB
/
openvg.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
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
// Package openvg is a high-level 2D vector graphics library built on OpenVG
package openvg
/*
#cgo CFLAGS: -I/opt/vc/include -I/opt/vc/include/interface/vmcs_host/linux -I/opt/vc/include/interface/vcos/pthreads
#cgo LDFLAGS: -L/opt/vc/lib -lbrcmGLESv2 -lbrcmEGL -lbcm_host -ljpeg
#include "VG/openvg.h"
#include "VG/vgu.h"
#include "EGL/egl.h"
#include "GLES/gl.h"
#include "fontinfo.h" // font information
#include "shapes.h" // C API
*/
import "C"
import (
"fmt"
"image"
_ "image/gif"
_ "image/jpeg"
_ "image/png"
"os"
"runtime"
"strings"
"unsafe"
)
// RGB defines the red, green, blue triple that makes up colors.
type RGB struct {
Red, Green, Blue uint8
}
// VGfloat defines the basic type for coordinates, dimensions and other values
type VGfloat C.VGfloat
type VGint C.VGint
// Offcolor defines the offset, color and alpha values used in gradients
// the Offset ranges from 0..1, colors as RGB triples, alpha ranges from 0..1
type Offcolor struct {
Offset VGfloat
RGB
Alpha VGfloat
}
// colornames maps SVG color names to RGB triples.
var colornames = map[string]RGB{
"aliceblue": {240, 248, 255},
"antiquewhite": {250, 235, 215},
"aqua": {0, 255, 255},
"aquamarine": {127, 255, 212},
"azure": {240, 255, 255},
"beige": {245, 245, 220},
"bisque": {255, 228, 196},
"black": {0, 0, 0},
"blanchedalmond": {255, 235, 205},
"blue": {0, 0, 255},
"blueviolet": {138, 43, 226},
"brown": {165, 42, 42},
"burlywood": {222, 184, 135},
"cadetblue": {95, 158, 160},
"chartreuse": {127, 255, 0},
"chocolate": {210, 105, 30},
"coral": {255, 127, 80},
"cornflowerblue": {100, 149, 237},
"cornsilk": {255, 248, 220},
"crimson": {220, 20, 60},
"cyan": {0, 255, 255},
"darkblue": {0, 0, 139},
"darkcyan": {0, 139, 139},
"darkgoldenrod": {184, 134, 11},
"darkgray": {169, 169, 169},
"darkgreen": {0, 100, 0},
"darkgrey": {169, 169, 169},
"darkkhaki": {189, 183, 107},
"darkmagenta": {139, 0, 139},
"darkolivegreen": {85, 107, 47},
"darkorange": {255, 140, 0},
"darkorchid": {153, 50, 204},
"darkred": {139, 0, 0},
"darksalmon": {233, 150, 122},
"darkseagreen": {143, 188, 143},
"darkslateblue": {72, 61, 139},
"darkslategray": {47, 79, 79},
"darkslategrey": {47, 79, 79},
"darkturquoise": {0, 206, 209},
"darkviolet": {148, 0, 211},
"deeppink": {255, 20, 147},
"deepskyblue": {0, 191, 255},
"dimgray": {105, 105, 105},
"dimgrey": {105, 105, 105},
"dodgerblue": {30, 144, 255},
"firebrick": {178, 34, 34},
"floralwhite": {255, 250, 240},
"forestgreen": {34, 139, 34},
"fuchsia": {255, 0, 255},
"gainsboro": {220, 220, 220},
"ghostwhite": {248, 248, 255},
"gold": {255, 215, 0},
"goldenrod": {218, 165, 32},
"gray": {128, 128, 128},
"green": {0, 128, 0},
"greenyellow": {173, 255, 47},
"grey": {128, 128, 128},
"honeydew": {240, 255, 240},
"hotpink": {255, 105, 180},
"indianred": {205, 92, 92},
"indigo": {75, 0, 130},
"ivory": {255, 255, 240},
"khaki": {240, 230, 140},
"lavender": {230, 230, 250},
"lavenderblush": {255, 240, 245},
"lawngreen": {124, 252, 0},
"lemonchiffon": {255, 250, 205},
"lightblue": {173, 216, 230},
"lightcoral": {240, 128, 128},
"lightcyan": {224, 255, 255},
"lightgoldenrodyellow": {250, 250, 210},
"lightgray": {211, 211, 211},
"lightgreen": {144, 238, 144},
"lightgrey": {211, 211, 211},
"lightpink": {255, 182, 193},
"lightsalmon": {255, 160, 122},
"lightseagreen": {32, 178, 170},
"lightskyblue": {135, 206, 250},
"lightslategray": {119, 136, 153},
"lightslategrey": {119, 136, 153},
"lightsteelblue": {176, 196, 222},
"lightyellow": {255, 255, 224},
"lime": {0, 255, 0},
"limegreen": {50, 205, 50},
"linen": {250, 240, 230},
"magenta": {255, 0, 255},
"maroon": {128, 0, 0},
"mediumaquamarine": {102, 205, 170},
"mediumblue": {0, 0, 205},
"mediumorchid": {186, 85, 211},
"mediumpurple": {147, 112, 219},
"mediumseagreen": {60, 179, 113},
"mediumslateblue": {123, 104, 238},
"mediumspringgreen": {0, 250, 154},
"mediumturquoise": {72, 209, 204},
"mediumvioletred": {199, 21, 133},
"midnightblue": {25, 25, 112},
"mintcream": {245, 255, 250},
"mistyrose": {255, 228, 225},
"moccasin": {255, 228, 181},
"navajowhite": {255, 222, 173},
"navy": {0, 0, 128},
"oldlace": {253, 245, 230},
"olive": {128, 128, 0},
"olivedrab": {107, 142, 35},
"orange": {255, 165, 0},
"orangered": {255, 69, 0},
"orchid": {218, 112, 214},
"palegoldenrod": {238, 232, 170},
"palegreen": {152, 251, 152},
"paleturquoise": {175, 238, 238},
"palevioletred": {219, 112, 147},
"papayawhip": {255, 239, 213},
"peachpuff": {255, 218, 185},
"peru": {205, 133, 63},
"pink": {255, 192, 203},
"plum": {221, 160, 221},
"powderblue": {176, 224, 230},
"purple": {128, 0, 128},
"red": {255, 0, 0},
"rosybrown": {188, 143, 143},
"royalblue": {65, 105, 225},
"saddlebrown": {139, 69, 19},
"salmon": {250, 128, 114},
"sandybrown": {244, 164, 96},
"seagreen": {46, 139, 87},
"seashell": {255, 245, 238},
"sienna": {160, 82, 45},
"silver": {192, 192, 192},
"skyblue": {135, 206, 235},
"slateblue": {106, 90, 205},
"slategray": {112, 128, 144},
"slategrey": {112, 128, 144},
"snow": {255, 250, 250},
"springgreen": {0, 255, 127},
"steelblue": {70, 130, 180},
"tan": {210, 180, 140},
"teal": {0, 128, 128},
"thistle": {216, 191, 216},
"tomato": {255, 99, 71},
"turquoise": {64, 224, 208},
"violet": {238, 130, 238},
"wheat": {245, 222, 179},
"white": {255, 255, 255},
"whitesmoke": {245, 245, 245},
"yellow": {255, 255, 0},
"yellowgreen": {154, 205, 50},
}
// Init initializes the graphics subsystem
func Init() (int, int) {
runtime.LockOSThread()
var rh, rw C.int
C.init(&rw, &rh)
return int(rw), int(rh)
}
// InitWidowSize initialized the graphics subsystem with specified dimensions
func InitWindowSize(x, y, w, h int) {
C.initWindowSize(C.int(x), C.int(y), C.uint(w), C.uint(h))
}
// WindowClear clears the window to previously set background color
func WindowClear() {
C.WindowClear()
}
// WindowPostion places a window
func WindowPosition(x, y int) {
C.WindowPosition(C.int(x), C.int(y))
}
// WindowOpacity sets the window's opacity
func WindowOpacity(a uint) {
C.WindowOpacity(C.uint(a))
}
// AreaClear clears a given rectangle in window coordinates
func AreaClear(x, y, w, h int) {
C.AreaClear(C.uint(x), C.uint(y), C.uint(w), C.uint(h))
}
// Finish shuts down the graphics subsystem
func Finish() {
C.finish()
runtime.UnlockOSThread()
}
// Background clears the screen with the specified solid background color using RGB triples
func Background(r, g, b uint8) {
C.Background(C.uint(r), C.uint(g), C.uint(b))
}
// BackgroundRGB clears the screen with the specified background color using a RGBA quad
func BackgroundRGB(r, g, b uint8, alpha VGfloat) {
C.BackgroundRGB(C.uint(r), C.uint(g), C.uint(b), C.VGfloat(alpha))
}
// BackgroundColor sets the background color
func BackgroundColor(s string, alpha ...VGfloat) {
c := Colorlookup(s)
if len(alpha) == 0 {
BackgroundRGB(c.Red, c.Green, c.Blue, 1)
} else {
BackgroundRGB(c.Red, c.Green, c.Blue, alpha[0])
}
}
// makestops prepares the color/stop vector
func makeramp(r []Offcolor) (*C.VGfloat, C.int) {
lr := len(r)
nr := lr * 5
cs := make([]C.VGfloat, nr)
j := 0
for i := 0; i < lr; i++ {
cs[j] = C.VGfloat(r[i].Offset)
j++
cs[j] = C.VGfloat(VGfloat(r[i].Red) / 255.0)
j++
cs[j] = C.VGfloat(VGfloat(r[i].Green) / 255.0)
j++
cs[j] = C.VGfloat(VGfloat(r[i].Blue) / 255.0)
j++
cs[j] = C.VGfloat(r[i].Alpha)
j++
}
return &cs[0], C.int(lr)
}
// FillLinearGradient sets up a linear gradient between (x1,y2) and (x2, y2)
// using the specified offsets and colors in ramp
func FillLinearGradient(x1, y1, x2, y2 VGfloat, ramp []Offcolor) {
cr, nr := makeramp(ramp)
C.FillLinearGradient(C.VGfloat(x1), C.VGfloat(y1), C.VGfloat(x2), C.VGfloat(y2), cr, nr)
}
// FillRadialGradient sets up a radial gradient centered at (cx, cy), radius r,
// with a focal point at (fx, fy) using the specified offsets and colors in ramp
func FillRadialGradient(cx, cy, fx, fy, radius VGfloat, ramp []Offcolor) {
cr, nr := makeramp(ramp)
C.FillRadialGradient(C.VGfloat(cx), C.VGfloat(cy), C.VGfloat(fx), C.VGfloat(fy), C.VGfloat(radius), cr, nr)
}
// FillRGB sets the fill color, using RGB triples and alpha values
func FillRGB(r, g, b uint8, alpha VGfloat) {
C.Fill(C.uint(r), C.uint(g), C.uint(b), C.VGfloat(alpha))
}
// StrokeRGB sets the stroke color, using RGB triples
func StrokeRGB(r, g, b uint8, alpha VGfloat) {
C.Stroke(C.uint(r), C.uint(g), C.uint(b), C.VGfloat(alpha))
}
// StrokeWidth sets the stroke width
func StrokeWidth(w VGfloat) {
C.StrokeWidth(C.VGfloat(w))
}
// Colorlookup returns a RGB triple corresponding to the named color,
// or "rgb(r,g,b)" string. On error, return black.
func Colorlookup(s string) RGB {
var rcolor = RGB{0, 0, 0}
color, ok := colornames[s]
if ok {
return color
}
if strings.HasPrefix(s, "rgb(") {
n, err := fmt.Sscanf(s[3:], "(%d,%d,%d)", &rcolor.Red, &rcolor.Green, &rcolor.Blue)
if n != 3 || err != nil {
return RGB{0, 0, 0}
}
return rcolor
}
return rcolor
}
// FillColor sets the fill color using names to specify the color, optionally applying alpha.
func FillColor(s string, alpha ...VGfloat) {
fc := Colorlookup(s)
if len(alpha) == 0 {
FillRGB(fc.Red, fc.Green, fc.Blue, 1)
} else {
FillRGB(fc.Red, fc.Green, fc.Blue, alpha[0])
}
}
// StrokeColor sets the fill color using names to specify the color, optionally applying alpha.
func StrokeColor(s string, alpha ...VGfloat) {
fc := Colorlookup(s)
if len(alpha) == 0 {
StrokeRGB(fc.Red, fc.Green, fc.Blue, 1)
} else {
StrokeRGB(fc.Red, fc.Green, fc.Blue, alpha[0])
}
}
// Start begins a picture
func Start(w, h int, color ...uint8) {
C.Start(C.int(w), C.int(h))
if len(color) == 3 {
Background(color[0], color[1], color[2])
}
}
// StartColor begins the picture with the specified color background
func StartColor(w, h int, color string, alpha ...VGfloat) {
C.Start(C.int(w), C.int(h))
BackgroundColor(color, alpha...)
}
// End ends the picture
func End() {
C.End()
}
// SaveEnd ends the picture, saving the raw raster
func SaveEnd(filename string) {
s := C.CString(filename)
defer C.free(unsafe.Pointer(s))
C.SaveEnd(s)
}
// fakeimage makes a placeholder for a missing image
func fakeimage(x, y VGfloat, w, h int, s string) {
fw := VGfloat(w)
fh := VGfloat(h)
FillColor("lightgray")
Rect(x, y, fw, fh)
StrokeWidth(1)
StrokeColor("gray")
Line(x, y, x+fw, y+fh)
Line(x, y+fh, x+fw, y)
StrokeWidth(0)
FillColor("black")
TextMid(x+(fw/2), y+(fh/2), s, "sans", w/20)
}
// Img places an image object at (x,y)
func Img(x, y VGfloat, im image.Image) {
bounds := im.Bounds()
minx := bounds.Min.X
maxx := bounds.Max.X
miny := bounds.Min.Y
maxy := bounds.Max.Y
data := make([]C.VGubyte, bounds.Dx()*bounds.Dy()*4)
n := 0
var r, g, b, a uint32
for yp := miny; yp < maxy; yp++ {
for xp := minx; xp < maxx; xp++ {
r, g, b, a = im.At(xp, (maxy-1)-yp).RGBA() // OpenVG has origin at lower left, y increasing up
data[n] = C.VGubyte(r >> 8)
n++
data[n] = C.VGubyte(g >> 8)
n++
data[n] = C.VGubyte(b >> 8)
n++
data[n] = C.VGubyte(a >> 8)
n++
}
}
C.makeimage(C.VGfloat(x), C.VGfloat(y), C.int(bounds.Dx()), C.int(bounds.Dy()), &data[0])
}
// Image places the named image at (x,y) with dimensions (w,h)
// the specified derived image dimensions override the native ones.
func Image(x, y VGfloat, w, h int, s string) {
var img image.Image
var derr error
f, err := os.Open(s)
if err != nil {
fakeimage(x, y, w, h, s)
return
}
img, _, derr = image.Decode(f)
defer f.Close()
if derr != nil {
fakeimage(x, y, w, h, s)
return
}
Img(x, y, img)
}
// Line draws a line between two points
func Line(x1, y1, x2, y2 VGfloat) {
C.Line(C.VGfloat(x1), C.VGfloat(y1), C.VGfloat(x2), C.VGfloat(y2))
}
// Rect draws a rectangle at (x,y) with dimesions (w,h)
func Rect(x, y, w, h VGfloat) {
C.Rect(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h))
}
// Roundrect draws a rounded rectangle at (x,y) with dimesions (w,h).
// the corner radii are at (rw, rh)
func Roundrect(x, y, w, h, rw, rh VGfloat) {
C.Roundrect(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h), C.VGfloat(rw), C.VGfloat(rh))
}
// Ellipse draws an ellipse at (x,y) with dimensions (w,h)
func Ellipse(x, y, w, h VGfloat) {
C.Ellipse(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h))
}
// Circle draws a circle centered at (x,y), with diameter d
func Circle(x, y, d VGfloat) {
C.Circle(C.VGfloat(x), C.VGfloat(y), C.VGfloat(d))
}
// Qbezier draws a quadratic bezier curve with extrema (sx, sy) and (ex, ey)
// Control points are at (cx, cy)
func Qbezier(sx, sy, cx, cy, ex, ey VGfloat) {
C.Qbezier(C.VGfloat(sx), C.VGfloat(sy), C.VGfloat(cx), C.VGfloat(cy), C.VGfloat(ex), C.VGfloat(ey))
}
// Cbezier draws a cubic bezier curve with extrema (sx, sy) and (ex, ey).
// Control points at (cx, cy) and (px, py)
func Cbezier(sx, sy, cx, cy, px, py, ex, ey VGfloat) {
C.Cbezier(C.VGfloat(sx), C.VGfloat(sy), C.VGfloat(cx), C.VGfloat(cy), C.VGfloat(px), C.VGfloat(py), C.VGfloat(ex), C.VGfloat(ey))
}
// Arc draws an arc at (x,y) with dimensions (w,h).
// the arc starts at the angle sa, extended to aext
func Arc(x, y, w, h, sa, aext VGfloat) {
C.Arc(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h), C.VGfloat(sa), C.VGfloat(aext))
}
// poly converts coordinate slices
func poly(x, y []VGfloat) (*C.VGfloat, *C.VGfloat, C.VGint) {
size := len(x)
if size != len(y) {
return nil, nil, 0
}
px := make([]C.VGfloat, size)
py := make([]C.VGfloat, size)
for i := 0; i < size; i++ {
px[i] = C.VGfloat(x[i])
py[i] = C.VGfloat(y[i])
}
return &px[0], &py[0], C.VGint(size)
}
// Polygon draws a polygon with coordinate in x,y
func Polygon(x, y []VGfloat) {
px, py, np := poly(x, y)
if np > 0 {
C.Polygon(px, py, np)
}
}
// Polyline draws a polyline with coordinates in x, y
func Polyline(x, y []VGfloat) {
px, py, np := poly(x, y)
if np > 0 {
C.Polyline(px, py, np)
}
}
// selectfont specifies the font by generic name
func selectfont(s string) C.Fontinfo {
switch s {
case "sans":
return C.SansTypeface
case "serif":
return C.SerifTypeface
case "mono":
return C.MonoTypeface
}
return C.SerifTypeface
}
// ClipRect limits the drawing area to specified rectangle
func ClipRect(x, y, w, h int) {
C.ClipRect(C.VGint(x), C.VGint(y), C.VGint(w), C.VGint(h))
}
// ClipEnd stops limiting drawing area to specified rectangle
func ClipEnd() {
C.ClipEnd()
}
// Text draws text whose aligment begins (x,y)
func Text(x, y VGfloat, s string, font string, size int) {
t := C.CString(s)
C.Text(C.VGfloat(x), C.VGfloat(y), t, selectfont(font), C.int(size))
C.free(unsafe.Pointer(t))
}
// TextMid draws text centered at (x,y)
func TextMid(x, y VGfloat, s string, font string, size int) {
t := C.CString(s)
C.TextMid(C.VGfloat(x), C.VGfloat(y), t, selectfont(font), C.int(size))
C.free(unsafe.Pointer(t))
}
// TextEnd draws text end-aligned at (x,y)
func TextEnd(x, y VGfloat, s string, font string, size int) {
t := C.CString(s)
C.TextEnd(C.VGfloat(x), C.VGfloat(y), t, selectfont(font), C.int(size))
C.free(unsafe.Pointer(t))
}
// TextWidth returns the length of text at a specified font and size
func TextWidth(s string, font string, size int) VGfloat {
t := C.CString(s)
defer C.free(unsafe.Pointer(t))
return VGfloat(C.TextWidth(t, selectfont(font), C.int(size)))
}
// TextHeight returns a font's height (ascent)
func TextHeight(font string, size int) VGfloat {
return VGfloat(C.TextHeight(selectfont(font), C.int(size)))
}
// TextDepth returns the distance below the baseline for a specified font
func TextDepth(font string, size int) VGfloat {
return VGfloat(C.TextDepth(selectfont(font), C.int(size)))
}
// Translate translates the coordinate system to (x,y)
func Translate(x, y VGfloat) {
C.Translate(C.VGfloat(x), C.VGfloat(y))
}
// Rotate rotates the coordinate system around the specifed angle
func Rotate(r VGfloat) {
C.Rotate(C.VGfloat(r))
}
// Shear warps the coordinate system by (x,y)
func Shear(x, y VGfloat) {
C.Shear(C.VGfloat(x), C.VGfloat(y))
}
// Scale scales the coordinate system by (x,y)
func Scale(x, y VGfloat) {
C.Scale(C.VGfloat(x), C.VGfloat(y))
}
// SaveTerm saves terminal settings
func SaveTerm() {
C.saveterm()
}
// RestoreTerm retores terminal settings
func RestoreTerm() {
C.restoreterm()
}
// RawTerm sets the terminal to raw mode
func RawTerm() {
C.rawterm()
}