Documentation
¶
Index ¶
- Variables
- func AutoReleaseCubes() bool
- func GetWindow(lpWindowName string) bool
- func GetWindowImage() (*image.RGBA, error)
- func GetWindowPosition() (x, y int32)
- func MouseLeftClick(delay int, x, y int32) bool
- func ParseCubes()
- func ReleaseCube()
- func ShowCubes()
- func TopWindow() bool
- func WindowClick(x, y int32) bool
Constants ¶
This section is empty.
Variables ¶
View Source
var ( //MarginLeft = 19 MarginLeft = 14 //MarginHeight = 226 MarginHeight = 181 // 延时倍数 // 射手 1 神眼 60 ReleaseRate time.Duration = 60 Block = func() *goimagehash.ImageHash { rgba := image.NewRGBA(image.Rect(0, 0, cubeWidth-cubeFix*2, cubeHeight-cubeFix*2)) for y := 0; y < cubeHeight-cubeFix; y++ { for x := 0; x < cubeWidth-cubeFix; x++ { rgba.Set(x, y, color.RGBA{R: 48, G: 76, B: 112, A: 255}) } } block, _ := goimagehash.PerceptionHash(rgba) return block }() ScreenZoomTimes float32 = 1 // 窗口缩放倍数 // 控制自动连连看 IsPaused = false IsStopped = false )
Functions ¶
func AutoReleaseCubes ¶
func AutoReleaseCubes() bool
func GetWindowImage ¶
func GetWindowPosition ¶
func GetWindowPosition() (x, y int32)
func MouseLeftClick ¶
func ParseCubes ¶
func ParseCubes()
func ReleaseCube ¶
func ReleaseCube()
func WindowClick ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.