Queer European MD passionate about IT

main.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "os"
  6. "time"
  7. "github.com/go-vgo/robotgo"
  8. "gopkg.in/yaml.v3"
  9. )
  10. type Point struct {
  11. X int
  12. Y int
  13. }
  14. func (p Point) String() string {
  15. return fmt.Sprintf("(%v, %v)", p.X, p.Y)
  16. }
  17. func (p Point) Click() {
  18. robotgo.Move(p.X, p.Y)
  19. robotgo.Click("left", false)
  20. }
  21. type PointGroup struct {
  22. Name string
  23. Points []Point
  24. }
  25. type SavedGroups struct {
  26. Groups []PointGroup
  27. }
  28. func getSavedGroups(yamlFile string) *SavedGroups {
  29. s := SavedGroups{}
  30. inputFile, err := os.ReadFile(yamlFile)
  31. if err == nil { // No yaml file found
  32. err = yaml.Unmarshal(inputFile, &s)
  33. if err != nil {
  34. log.Fatalf("%v - Exiting", err)
  35. }
  36. }
  37. return &s
  38. }
  39. func addSavedGroup(s *SavedGroups) {
  40. g := PointGroup{}
  41. var name string
  42. var points int
  43. for {
  44. name = ""
  45. fmt.Print("If you want to add a new group of locations, enter a name. Press enter to skip. ")
  46. fmt.Scanln(&name)
  47. if name == "" {
  48. break
  49. }
  50. fmt.Printf("How many positions are there in group %v? ", name)
  51. _, err := fmt.Scanln(&points)
  52. if err != nil {
  53. fmt.Println("I haven't understood, try again...")
  54. var discard string
  55. fmt.Scanln(&discard)
  56. continue
  57. }
  58. for i := 0; i < points; i++ {
  59. fmt.Printf("Please move your mouse into position %v of %v (group %v)\n", i+1, points, name)
  60. time.Sleep(2 * time.Second)
  61. x, y := robotgo.GetMousePos()
  62. fmt.Printf("Added point (x=%v, y=%v) to %v\n", x, y, name)
  63. p := Point{X: x, Y: y}
  64. g.Points = append(g.Points, p)
  65. }
  66. g.Name = name
  67. s.Groups = append(s.Groups, g)
  68. }
  69. }
  70. func storeSavedGroups(s *SavedGroups, yamlFile string) {
  71. d, err := yaml.Marshal(s)
  72. if err != nil {
  73. log.Fatalf("error: %v", err)
  74. }
  75. err = os.WriteFile(yamlFile, d, 0644)
  76. if err != nil {
  77. log.Fatalf("error: %v", err)
  78. }
  79. //fmt.Printf("--- d dump:\n%s\n\n", string(d))
  80. }
  81. func main() {
  82. yamlFile := "SavedGroups.yaml"
  83. s := getSavedGroups(yamlFile)
  84. addSavedGroup(s)
  85. storeSavedGroups(s, yamlFile)
  86. for index, g := range s.Groups {
  87. fmt.Printf("- Press %v to select %v\n", index+1, g.Name)
  88. }
  89. var choice int
  90. for choice < 1 {
  91. fmt.Print("Your selection: ")
  92. _, err := fmt.Scanln(&choice)
  93. if err != nil {
  94. fmt.Println("I haven't understood, try again...")
  95. var discard string
  96. fmt.Scanln(&discard)
  97. continue
  98. }
  99. }
  100. selection := s.Groups[choice-1]
  101. fmt.Printf("You selected %v. I'll be clicking in the following positions:\n", selection.Name)
  102. for index, p := range selection.Points {
  103. fmt.Printf("%v - %v\n", index+1, p)
  104. }
  105. for {
  106. for _, p := range selection.Points {
  107. p.Click()
  108. time.Sleep(100 * time.Millisecond)
  109. }
  110. time.Sleep(500 * time.Millisecond)
  111. }
  112. }