2019-03-13 23:57:03 +00:00
package main
import (
2023-08-28 14:33:01 +00:00
"encoding/json"
"os"
"path/filepath"
2019-03-13 23:57:03 +00:00
"github.com/getlantern/systray"
2023-08-28 14:33:01 +00:00
"github.com/go-vgo/robotgo"
"github.com/kirsle/configdir"
2019-03-28 00:40:22 +00:00
"github.com/prashantgupta24/automatic-mouse-mover/assets/icon"
2019-03-20 19:44:51 +00:00
"github.com/prashantgupta24/automatic-mouse-mover/pkg/mousemover"
2023-08-28 14:33:01 +00:00
log "github.com/sirupsen/logrus"
2019-03-13 23:57:03 +00:00
)
2023-08-28 14:33:01 +00:00
type AppSettings struct {
Icon string ` json:"icon" `
}
var configPath = configdir . LocalConfig ( "amm" )
var configFile = filepath . Join ( configPath , "settings.json" )
2019-03-13 23:57:03 +00:00
func main ( ) {
systray . Run ( onReady , onExit )
}
2023-08-28 14:33:01 +00:00
func setIcon ( iconName string , configFile string ) {
switch {
case iconName == "mouse" :
systray . SetIcon ( icon . Data )
case iconName == "cloud" :
systray . SetIcon ( icon . CloudIcon )
case iconName == "man" :
systray . SetIcon ( icon . ManIcon )
case iconName == "geometric" :
systray . SetIcon ( icon . GeometricIcon )
default :
systray . SetIcon ( icon . Data )
}
if configFile != "" {
var settings AppSettings
settings = AppSettings { iconName }
fh , _ := os . Create ( configFile )
defer fh . Close ( )
encoder := json . NewEncoder ( fh )
encoder . Encode ( settings )
}
}
2019-03-13 23:57:03 +00:00
func onReady ( ) {
go func ( ) {
2023-08-28 14:33:01 +00:00
err := configdir . MakePath ( configPath )
if err != nil {
panic ( err )
}
var settings AppSettings
settings = AppSettings { "mouse" }
if _ , err = os . Stat ( configFile ) ; os . IsNotExist ( err ) {
fh , err := os . Create ( configFile )
if err != nil {
panic ( err )
}
defer fh . Close ( )
encoder := json . NewEncoder ( fh )
encoder . Encode ( settings )
} else {
fh , err := os . Open ( configFile )
if err != nil {
panic ( err )
}
defer fh . Close ( )
decoder := json . NewDecoder ( fh )
decoder . Decode ( & settings )
}
setIcon ( settings . Icon , "" )
2021-08-19 19:01:27 +00:00
about := systray . AddMenuItem ( "About AMM" , "Information about the app" )
systray . AddSeparator ( )
2019-03-13 23:57:03 +00:00
ammStart := systray . AddMenuItem ( "Start" , "start the app" )
2019-03-20 19:44:51 +00:00
ammStop := systray . AddMenuItem ( "Stop" , "stop the app" )
2023-08-28 14:33:01 +00:00
icons := systray . AddMenuItem ( "Icons" , "icon of the app" )
mouse := icons . AddSubMenuItem ( "Mouse" , "Mouse icon" )
mouse . SetIcon ( icon . Data )
cloud := icons . AddSubMenuItem ( "Cloud" , "Cloud icon" )
cloud . SetIcon ( icon . CloudIcon )
man := icons . AddSubMenuItem ( "Man" , "Man icon" )
man . SetIcon ( icon . ManIcon )
geometric := icons . AddSubMenuItem ( "Geometric" , "Geometric" )
geometric . SetIcon ( icon . GeometricIcon )
2019-03-28 19:52:25 +00:00
ammStop . Disable ( )
2019-03-13 23:57:03 +00:00
systray . AddSeparator ( )
mQuit := systray . AddMenuItem ( "Quit" , "Quit the whole app" )
// Sets the icon of a menu item. Only available on Mac.
//mQuit.SetIcon(icon.Data)
2019-03-20 19:44:51 +00:00
mouseMover := mousemover . GetInstance ( )
2021-08-19 19:01:27 +00:00
mouseMover . Start ( )
ammStart . Disable ( )
ammStop . Enable ( )
2019-03-13 23:57:03 +00:00
for {
select {
case <- ammStart . ClickedCh :
2019-03-28 19:52:25 +00:00
log . Infof ( "starting the app" )
2019-03-20 19:44:51 +00:00
mouseMover . Start ( )
2019-03-28 19:52:25 +00:00
ammStart . Disable ( )
ammStop . Enable ( )
2019-03-13 23:57:03 +00:00
//notify.SendMessage("starting the app")
2019-03-20 19:44:51 +00:00
case <- ammStop . ClickedCh :
2019-03-28 19:52:25 +00:00
log . Infof ( "stopping the app" )
ammStart . Enable ( )
ammStop . Disable ( )
2019-03-20 19:44:51 +00:00
mouseMover . Quit ( )
2019-03-13 23:57:03 +00:00
case <- mQuit . ClickedCh :
2019-03-28 19:52:25 +00:00
log . Infof ( "Requesting quit" )
2019-03-20 19:44:51 +00:00
mouseMover . Quit ( )
2019-03-13 23:57:03 +00:00
systray . Quit ( )
return
2023-08-28 14:33:01 +00:00
case <- mouse . ClickedCh :
setIcon ( "mouse" , configFile )
case <- cloud . ClickedCh :
setIcon ( "cloud" , configFile )
case <- man . ClickedCh :
setIcon ( "man" , configFile )
case <- geometric . ClickedCh :
setIcon ( "geometric" , configFile )
2021-08-19 19:01:27 +00:00
case <- about . ClickedCh :
log . Infof ( "Requesting about" )
2023-10-13 22:10:04 +00:00
robotgo . Alert ( "Automatic-mouse-mover app v1.3.0" , "Developed by Prashant Gupta. \n\nMore info at: https://github.com/prashantgupta24/automatic-mouse-mover" , "OK" , "" )
2019-03-13 23:57:03 +00:00
}
}
} ( )
}
func onExit ( ) {
// clean up here
2019-03-28 19:52:25 +00:00
log . Infof ( "Finished quitting" )
2019-03-13 23:57:03 +00:00
}