-
Notifications
You must be signed in to change notification settings - Fork 26
/
gocupi.go
720 lines (595 loc) · 18.9 KB
/
gocupi.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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
package main
import (
"errors"
"flag"
"fmt"
. "github.com/brandonagr/gocupi/polargraph"
"github.com/qpliu/qrencode-go/qrencode"
"math"
"sort"
"strconv"
"strings"
)
// set flag usage variable so that entire help will be output
func init() {
flag.Usage = PrintGenericHelp
}
// main
func main() {
Settings.Read()
pauseOnPenUp := flag.Bool("pause", false, "Pause when pen is raised (requires keyboard input)")
toImageFlag := flag.Bool("toimage", false, "Output result to an image file instead of to the stepper")
toFileFlag := flag.Bool("tofile", false, "Output steps to a text file")
toChartFlag := flag.Bool("tochart", false, "Output a chart of the movement and velocity")
countFlag := flag.Bool("count", false, "Outputs the time it would take to draw")
speedSlowFactor := flag.Float64("slowfactor", 1.0, "Divide max speed by this number")
flipXFlag := flag.Bool("flipx", false, "Flip the drawing left to right")
flipYFlag := flag.Bool("flipy", false, "Flip the drawing top to bottom")
flag.Parse()
if *speedSlowFactor < 1.0 {
panic("slowfactor must be greater than 1")
}
// apply slow factor to max speed
Settings.MaxSpeed_MM_S /= *speedSlowFactor
Settings.Acceleration_Seconds *= *speedSlowFactor
Settings.Acceleration_MM_S2 /= *speedSlowFactor
args := flag.Args()
if len(args) < 1 {
PrintGenericHelp()
return
}
plotCoords := make(chan Coordinate, 1024)
var err error
var params []float64
switch args[0] {
case "help":
if len(args) != 2 {
PrintGenericHelp()
} else {
PrintCommandHelp(args[1])
}
return
case "test":
plotCoords <- Coordinate{X: 0, Y: 0}
plotCoords <- Coordinate{X: 10, Y: 0}
plotCoords <- Coordinate{X: 10.1, Y: 0}
plotCoords <- Coordinate{X: 10.1, Y: 10}
plotCoords <- Coordinate{X: 10.1, Y: 10, PenUp: true}
plotCoords <- Coordinate{X: 20.1, Y: 10, PenUp: true}
plotCoords <- Coordinate{X: 20.1, Y: 15}
plotCoords <- Coordinate{X: 20.1, Y: 15, PenUp: true}
plotCoords <- Coordinate{X: 0, Y: 0, PenUp: true}
close(plotCoords)
case "circle":
if params, err = GetArgsAsFloats(args[1:], 3, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("circle")
return
}
circleSetup := SlidingCircle{
Radius: params[0],
CircleDisplacement: params[1],
NumbCircles: int(params[2]),
}
fmt.Println("Generating sliding circle")
go GenerateSlidingCircle(circleSetup, plotCoords)
case "crosshatch":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("crosshatch")
return
}
crossHatchSetup := CrossHatch{
Size: params[0],
Dist: params[1],
}
fmt.Println("Generating crosshatch path")
data := LoadImage(args[3])
go GenerateCrossHatch(crossHatchSetup, data, plotCoords)
originalPlotCoords := plotCoords
plotCoords = make(chan Coordinate, 1024)
go RemoveExtraPenUpMovements(originalPlotCoords, plotCoords)
case "gcode":
if len(args) < 3 {
fmt.Println("ERROR: ", fmt.Sprint("Expected 2 parameters and saw ", len(args)-1))
fmt.Println()
PrintCommandHelp("gcode")
return
}
scale, _ := strconv.ParseFloat(args[1], 64)
if scale == 0 {
scale = 1
}
fmt.Println("Generating Gcode path")
data := ParseGcodeFile(args[2])
go GenerateGcodePath(data, scale, plotCoords)
case "grid":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("grid")
return
}
gridSetup := Grid{
Width: params[0],
Cells: params[1],
}
fmt.Println("Generating grid")
go GenerateGrid(gridSetup, plotCoords)
case "hilbert":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("hilbert")
return
}
hilbertSetup := HilbertCurve{
Size: params[0],
Degree: int(params[1]),
}
fmt.Println("Generating hilbert curve")
go GenerateHilbertCurve(hilbertSetup, plotCoords)
case "imagearc":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("imagearc")
return
}
arcSetup := Arc{
Size: params[0],
ArcDist: params[1],
}
fmt.Println("Generating image arc path")
data := LoadImage(args[3])
data = GaussianImage(data)
go GenerateArc(arcSetup, data, plotCoords)
case "meanderStipple":
if params, err = GetArgsAsFloats(args[1:], 4, false); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("meanderStipple")
return
}
//rad1:= params[0]
//rad2:= params[1]
size := params[0]
narrowness := params[1]
radMulty := params[2]
cutOff := params[3]
fmt.Println("Reading stipples from voronoi_stipller")
circles := ParseSvgFileCircle(args[5])
//fmt.Println("parsed data:",data)
fmt.Println("Generating meander")
/*
//used for test
circles := make([]Circle, 0)
c1:=Circle{Coordinate{X: 100,Y: 100},10.0}
c2:=Circle{Coordinate{X: 600,Y: 200,PenUp:true},70.0}
c3:=Circle{Coordinate{X: 500,Y: 550},30.0}
c4:=Circle{Coordinate{X: 400,Y: 350},5.0}
circles= append(circles,c1,c2,c3,c4)
//go TestGenerateMeander(circles,size,narrowness,radMulty,cutOff, plotCoords)
*/
go GenerateMeander(circles, size, narrowness, radMulty, cutOff, plotCoords)
//go DrawMeander(circles,size,narrowness,plotCoords)
//defer close(plotCoords)
case "imageraster":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("imageraster")
return
}
rasterSetup := Raster{
Size: params[0],
PenWidth: params[1],
}
fmt.Println("Generating image raster path")
data := LoadImage(args[3])
go GenerateRaster(rasterSetup, data, plotCoords)
case "lissa":
if params, err = GetArgsAsFloats(args[1:], 3, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("lissa")
return
}
posFunc := func(t float64) Coordinate {
return Coordinate{
X: params[0] * math.Cos(params[1]*t+math.Pi/2.0),
Y: params[0] * math.Sin(params[2]*t),
}
}
fmt.Println("Generating Lissajous curve")
go GenerateParametric(posFunc, plotCoords)
case "line":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("line")
return
}
lineSetup := BouncingLine{
Angle: params[0],
TotalDistance: params[1],
}
fmt.Println("Generating line")
go GenerateBouncingLine(lineSetup, plotCoords)
case "move":
PerformMouseTracking()
return
case "parabolic":
if params, err = GetArgsAsFloats(args[1:], 3, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("parabolic")
return
}
parabolicSetup := Parabolic{
Radius: params[0],
PolygonEdgeCount: params[1],
Lines: params[2],
}
fmt.Println("Generating parabolic graph")
go GenerateParabolic(parabolicSetup, plotCoords)
case "setup":
if params, err = GetArgsAsFloats(args[1:], 3, false); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("setup")
return
}
if params[0] != 0 {
Settings.SpoolHorizontalDistance_MM = params[0]
} else {
fmt.Println("Using existing SpoolHorizontalDistance_MM of", Settings.SpoolHorizontalDistance_MM)
}
if params[1] != 0 {
Settings.StartingLeftDist_MM = params[1]
} else {
fmt.Println("Using existing StartingLeftDist_MM of", Settings.StartingLeftDist_MM)
}
if params[2] != 0 {
Settings.StartingRightDist_MM = params[2]
} else {
fmt.Println("Using existing StartingRightDist_MM of", Settings.StartingRightDist_MM)
}
if Settings.SpoolHorizontalDistance_MM > (Settings.StartingLeftDist_MM + Settings.StartingRightDist_MM) {
fmt.Println("ERROR: Attempted to specify a setup where the two string distances are less than the distance between idlers")
return
}
Settings.CalculateDerivedFields()
polarSystem := PolarSystemFromSettings()
polarPos := PolarCoordinate{LeftDist: Settings.StartingLeftDist_MM, RightDist: Settings.StartingRightDist_MM}
pos := polarPos.ToCoord(polarSystem)
if pos.X < Settings.DrawingSurfaceMinX_MM || pos.X > Settings.DrawingSurfaceMaxX_MM || pos.Y < Settings.DrawingSurfaceMinY_MM || pos.Y > Settings.DrawingSurfaceMaxY_MM {
fmt.Println("ERROR: The specified settings result in a pen position that exceeds the DrawingSurfaceMin/Max as defined in gocupi_config.xml")
fmt.Printf("Initial X,Y position of pen would have been %.3f, %.3f", pos.X, pos.Y)
fmt.Println()
} else {
fmt.Printf("Initial X,Y position of pen is %.3f, %.3f", pos.X, pos.Y)
fmt.Println()
Settings.Write()
}
return
case "spiral":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("spiral")
return
}
spiralSetup := Spiral{
RadiusBegin: params[0],
RadiusEnd: 0.01,
RadiusDeltaPerRev: params[1],
}
fmt.Println("Generating spiral")
go GenerateSpiral(spiralSetup, plotCoords)
case "spiro":
if params, err = GetArgsAsFloats(args[1:], 3, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("spiro")
return
}
bigR := params[0]
littleR := params[1]
pen := params[2]
posFunc := func(t float64) Coordinate {
return Coordinate{
X: (bigR-littleR)*math.Cos(t) + pen*math.Cos(((bigR-littleR)/littleR)*t),
Y: (bigR-littleR)*math.Sin(t) - pen*math.Sin(((bigR-littleR)/littleR)*t),
}
}
fmt.Println("Generating spiro")
go GenerateParametric(posFunc, plotCoords)
case "spool":
if len(args) == 3 {
leftSpool := strings.ToLower(args[1]) == "l"
if params, err = GetArgsAsFloats(args[2:], 1, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("spool")
return
}
MoveSpool(leftSpool, params[0])
} else {
InteractiveMoveSpool()
}
return
case "svg":
if len(args) < 3 {
fmt.Println("ERROR: ", fmt.Sprint("Expected at least 2 parameters and saw ", len(args)-1))
fmt.Println()
PrintCommandHelp("svg")
return
}
size, _ := strconv.ParseFloat(args[1], 64)
if size == 0 {
size = 1
}
svgType := "top"
if len(args) > 3 {
svgType = strings.ToLower(args[3])
}
fmt.Println("Generating svg path")
data := ParseSvgFile(args[2])
switch svgType {
case "top":
go GenerateSvgTopPath(data, size, plotCoords)
case "box":
go GenerateSvgBoxPath(data, size, plotCoords)
case "center":
go GenerateSvgCenterPath(data, size, plotCoords)
default:
fmt.Println("Expected top or box as the svg type, and saw", svgType)
return
}
case "text":
if len(args) != 3 {
fmt.Println("ERROR: ", fmt.Sprint("Expected at least 2 parameters and saw ", len(args)-1))
fmt.Println()
PrintCommandHelp("text")
return
}
height, _ := strconv.ParseFloat(args[1], 64)
if height == 0 {
height = 40
}
fmt.Println("Generating text path")
go GenerateTextPath(args[2], height, plotCoords)
case "qr":
if params, err = GetArgsAsFloats(args[1:], 2, true); err != nil {
fmt.Println("ERROR: ", err)
fmt.Println()
PrintCommandHelp("qr")
return
}
rasterSetup := Raster{
Size: params[0],
PenWidth: params[1],
}
fmt.Println("Generating qr raster path for ", args[3])
data, err := qrencode.Encode(args[3], qrencode.ECLevelQ)
if err != nil {
panic(err)
}
imageData := data.ImageWithMargin(1, 0)
go GenerateRaster(rasterSetup, imageData, plotCoords)
default:
PrintGenericHelp()
return
}
if *flipXFlag || *flipYFlag {
originalPlotCoords := plotCoords
plotCoords = make(chan Coordinate, 1024)
go FlipPlotCoords(*flipXFlag, *flipYFlag, originalPlotCoords, plotCoords)
}
if *toImageFlag {
fmt.Println("Outputting to image")
DrawToImage("output.png", plotCoords)
return
}
// output the max speed and acceleration
fmt.Println()
fmt.Printf("MaxSpeed: %.3f mm/s Accel: %.3f mm/s^2", Settings.MaxSpeed_MM_S, Settings.Acceleration_MM_S2)
fmt.Println()
stepData := make(chan int8, 1024)
go GenerateSteps(plotCoords, stepData)
switch {
case *countFlag:
CountSteps(stepData)
case *toFileFlag:
WriteStepsToFile(stepData)
case *toChartFlag:
WriteStepsToChart(stepData)
default:
WriteStepsToSerial(stepData, *pauseOnPenUp)
}
}
func FlipPlotCoords(flipX, flipY bool, coords <-chan Coordinate, flippedCoords chan<- Coordinate) {
defer close(flippedCoords)
for coord := range coords {
if flipX {
coord.X = -coord.X
}
if flipY {
coord.Y = -coord.Y
}
flippedCoords <- coord
}
}
// Remove unnecessary pen up movements, since PenUp for a line segment is determined by the PenUp of the end of the line, need to do special remember previous coord logic
func RemoveExtraPenUpMovements(coords <-chan Coordinate, cleanedCoords chan<- Coordinate) {
defer close(cleanedCoords)
previous := Coordinate{PenUp: false}
skipping := false
for coord := range coords {
if previous.PenUp && coord.PenUp {
skipping = true
previous = coord
} else {
if skipping {
cleanedCoords <- previous
skipping = false
}
cleanedCoords <- coord
}
previous = coord
}
}
// Parse a series of numbers as floats
func GetArgsAsFloats(args []string, expectedCount int, preventZero bool) ([]float64, error) {
if len(args) < expectedCount {
return nil, errors.New(fmt.Sprint("Expected at least ", expectedCount, " numeric parameters and only saw ", len(args)))
}
numbers := make([]float64, expectedCount)
var err error
for argIndex := 0; argIndex < expectedCount; argIndex++ {
if numbers[argIndex], err = strconv.ParseFloat(args[argIndex], 64); err != nil {
return nil, errors.New(fmt.Sprint("Unable to parse ", args[argIndex], " as a float: ", err))
}
if preventZero && numbers[argIndex] == 0 {
return nil, errors.New(fmt.Sprint("0 is not a valid value for parameter ", argIndex))
}
}
return numbers, nil
}
// output the help for a specific command
func PrintCommandHelp(command string) {
helpText, ok := CommandHelp[command]
if !ok {
fmt.Println("Unrecognized command: " + command)
PrintGenericHelp()
}
fmt.Println(helpText)
fmt.Println()
}
// output help summary
func PrintGenericHelp() {
fmt.Println(`
General Usage: (flags) COMMAND PARAMETERS...
All distance numbers are in millimeters
All angles are in radians
Flags:
-pause, pause when pen is raised (requires keyboard input)
-toimage, outputs data to an image of what the render should look like
-tochart, outputs a graph of velocity and position
-tofile, outputs step data to a file
-count, outputs number of steps and render time
-slowfactor=#, slow down rendering by #x, 2x, 4x slower etc
-flipx, flip the generated image left to right
-flipy, flip the generated image top to bottom
Commands:`)
// output list of possible commands
var keys []string
for k := range CommandHelp {
keys = append(keys, k)
}
sort.Strings(keys)
first := true
for _, k := range keys {
if !first {
fmt.Print(", ")
} else {
first = false
}
fmt.Print(k)
}
fmt.Println()
fmt.Println("help COMMAND to view help for a specific command")
fmt.Println()
}
var CommandHelp = map[string]string{
`meanderStipple`: `Draw a tsp where linethickness ist done by meander
meanderStipple s n radmulty cutOff path
s - size
n - narrowness of the meander
radmulty - multiplie the radius of each circle/tsp city
cutOff - radius smaler than cutOff will be drawn as single line
path - Path to stipple file generated by voronoi_stipple and Chained Lin-Kernighan`,
`circle`: `Draw a number of corkscrew kind of sliding circle pattern.
circle R d n
R - radius of circle
d - displacement per revolution
n - number of circles`,
`crosshatch`: `Render an image using a crosshatch pattern.
crosshatch s d "path"
s - size of long axis
d - distance between each crosshatch line
path - path to image file`,
`gcode`: `Render a given gcode file, only a subset of valid gcode is recognized.
gcode s "path"
s - scale
path - path to the gcode file`,
`grid`: `Draw a grid, starting in the upper left.
grid s c
s - size of square grid
c - number of cells in grid`,
`hilbert`: `Draw a hilbert space filling curve.
hilbert s d
s - size of square
d - degree of hilbert curve, 2 to 6`,
`imagearc`: `Draw an image using an arc pattern and drawing a thicker line to represent darker parts of the image.
imagearc s a "path"
s - size of long axis
a - distance between each arc`,
`imageraster`: `Draw an image using horizontal line pattern and drawing thicker lines to represent darker parts of the image.
imageraster s p "path"
s - size of long axis
p - pen thickness / distance between rows`,
`lissa`: `Draw a lissajous curve, drawing stops when the pen arrives back at the starting position.
lissa s a b
s - size of drawing
a - first factor
b - second factor`,
`line`: `Draw a straight line at the given angle and distance from the current position.
line a d
a - initial angle to start drawing
d - distance in meters for line`,
`move`: `Enter a mouse based interactive movement mode, allows you to position the pen to start a new drawing or to manually move the pen to a known calibration position.`,
`parabolic`: `Draw a series of parabolic curves (curves made out of a series of straight lines).
parabolic R c l
R - radius of shape
c - count of polygon edges
l - number of lines per edges`,
`setup`: `Enter the initial setup measurements of the system. Updates the config xml file.
Enter 0 for a parameter that you don't want to update, so you can update just distance between the idlers by doing 'setup 500 0 0'.
setup D L R
D - distance between the idlers
L - length of left string from left idler to pen tip
R - length of right string from right idler to pen tip`,
`spiral`: `Draw a spiral.
spiral R d
R - initial outter radius
d - radius delta per revolution`,
`spiro`: `Draw a spirograph type image, drawing stops when the pen arrives back at the starting position.
spiro R r p
R - first circle radius
r - second circle radius
p - pen distance`,
`spool`: `Directly control spool movement, useful for initial setup. If you ommit the L/R d parameters then you enter an interactive mode where you can repeatedly type the options to enter several spool commands in a row.
spool [L|R] d
L|R - designing either the left or right spool
d - distance to extend line, negative numbers retract`,
`svg`: `Draw an svg file. Must be made up of only straight lines, curves are not currently supported in the svg parser.
svg s "path" t
s - size of long axis
path - path to svg file
t - type of drawing, either top or box
top (default) - best for TSP single loop drawings, pen starts on loop at top
box - pen starts in upper left corner, drawing boundary extents first`,
`text`: `Draw a given text string, font is based on the hershey simplex font.
text h "string"
h - letter height
string - text to print`,
`qr`: `Draw a QR code.
qr s p "string"
s - size of square
p - pen thickness, determines how much it fills in solid squares
string - the text that will be encoded`,
}