gomp/main.go
aditya-K2 1572a460b0 Making a config package for Generating keymappings
Following changes have been made:
    1. Moving the getMusicDirectory() to config package
    2. Moving the config.go to config package
    3. Generating a Function Map that will be used for Generating keymappings in main.go
    4. Using the config packge in main.go
    5. First we are reading the user configuration values with
       config.ReadConfig() and then we are reading the mappings with
       config.ReadMappings() with the help of Function Map that is
       generated.
2021-11-11 21:57:01 +05:30

277 lines
5.0 KiB
Go

package main
import (
"fmt"
"log"
"strconv"
"time"
"github.com/aditya-K2/goMP/config"
"github.com/fhs/gompd/mpd"
"github.com/gdamore/tcell/v2"
"github.com/spf13/viper"
)
var Volume int64
var Random bool
var Repeat bool
var InsidePlaylist bool = true
func main() {
config.ReadConfig()
// Connect to MPD server
conn, err := mpd.Dial("tcp", "localhost:"+viper.GetString("MPD_PORT"))
if err != nil {
log.Fatalln(err)
}
defer conn.Close()
r := newRenderer()
c, _ := conn.CurrentSong()
if len(c) != 0 {
r.Start(viper.GetString("MUSIC_DIRECTORY") + c["file"])
} else {
r.Start("stop")
}
UI := newApplication(*conn, r)
fileMap, err := conn.GetFiles()
dirTree := generateDirectoryTree(fileMap)
UpdatePlaylist(*conn, UI.expandedView)
_v, _ := conn.Status()
Volume, _ = strconv.ParseInt(_v["volume"], 10, 64)
Random, _ = strconv.ParseBool(_v["random"])
Repeat, _ = strconv.ParseBool(_v["repeat"])
UI.expandedView.SetDrawFunc(func(s tcell.Screen, x, y, width, height int) (int, int, int, int) {
if InsidePlaylist {
UpdatePlaylist(*conn, UI.expandedView)
} else {
Update(*conn, dirTree.children, UI.expandedView)
}
return UI.expandedView.GetInnerRect()
})
var kMap = map[string]func(){
"showChildrenContent": func() {
r, _ := UI.expandedView.GetSelection()
if !InsidePlaylist {
if len(dirTree.children[r].children) == 0 {
id, _ := conn.AddId(dirTree.children[r].absolutePath, -1)
conn.PlayId(id)
} else {
Update(*conn, dirTree.children[r].children, UI.expandedView)
dirTree = &dirTree.children[r]
}
} else {
conn.Play(r)
}
},
"togglePlayBack": func() {
togglePlayBack(*conn)
},
"showParentContent": func() {
if !InsidePlaylist {
if dirTree.parent != nil {
Update(*conn, dirTree.parent.children, UI.expandedView)
dirTree = dirTree.parent
}
}
},
"nextSong": func() {
conn.Next()
},
"clearPlaylist": func() {
conn.Clear()
if InsidePlaylist {
UpdatePlaylist(*conn, UI.expandedView)
}
},
"previousSong": func() {
conn.Previous()
},
"addToPlaylist": func() {
if !InsidePlaylist {
r, _ := UI.expandedView.GetSelection()
conn.Add(dirTree.children[r].absolutePath)
}
},
"toggleRandom": func() {
err := conn.Random(!Random)
if err == nil {
Random = !Random
}
},
"toggleRepeat": func() {
err := conn.Repeat(!Repeat)
if err == nil {
Repeat = !Repeat
}
},
"decreaseVolume": func() {
if Volume <= 0 {
Volume = 0
} else {
Volume -= 10
}
conn.SetVolume(int(Volume))
},
"increaseVolume": func() {
if Volume >= 100 {
Volume = 100
} else {
Volume += 10
}
conn.SetVolume(int(Volume))
},
"navigateToFiles": func() {
InsidePlaylist = false
UI.Navbar.Select(1, 0)
Update(*conn, dirTree.children, UI.expandedView)
},
"navigateToPlaylist": func() {
InsidePlaylist = true
UI.Navbar.Select(0, 0)
UpdatePlaylist(*conn, UI.expandedView)
},
"navigateToMostPlayed": func() {
InsidePlaylist = false
UI.Navbar.Select(2, 0)
},
"quit": func() {
UI.App.Stop()
},
"stop": func() {
conn.Stop()
},
"updateDB": func() {
_, err = conn.Update("")
if err != nil {
panic(err)
}
},
"deleteSongFromPlaylist": func() {
if InsidePlaylist {
r, _ := UI.expandedView.GetSelection()
conn.Delete(r, -1)
}
},
}
config.ReadMappings(kMap)
UI.expandedView.SetInputCapture(func(e *tcell.EventKey) *tcell.EventKey {
switch e.Rune() {
case 108: // L : Key
{
kMap["showChildrenContent"]()
return nil
}
case 112: // P : Key
{
kMap["togglePlayBack"]()
return nil
}
case 104: // H : Key
{
kMap["showParentContent"]()
return nil
}
case 110: // N : Key
{
kMap["nextSong"]()
return nil
}
case 99: // C : Key
{
kMap["clearPlaylist"]()
return nil
}
case 78: // Shift - N : Key
{
kMap["previousSong"]()
return nil
}
case 97: // A : Key
{
kMap["addToPlaylist"]()
return nil
}
case 122: // Z : Key
{
kMap["toggleRandom"]()
return nil
}
case 114: // R : Key
{
kMap["toggleRepeat"]()
return nil
}
case 45: // Minus : Key
{
kMap["decreaseVolume"]()
return nil
}
case 61: // Plus : Key
{
kMap["increaseVolume"]()
return nil
}
case 50: // 2 : Key
{
kMap["navigateToFiles"]()
return nil
}
case 49: // 1 : Key
{
kMap["navigateToPlaylist"]()
return nil
}
case 51: // 3 : Key
{
kMap["navigateToMostPlayed"]()
return nil
}
case 113: // q : Key
{
kMap["quit"]()
return nil
}
case 115: // s: key
{
kMap["stop"]()
return nil
}
case 117: // u : key
{
kMap["updateDB"]()
return nil
}
case 100: // d : key
{
kMap["deleteSongFromPlaylist"]()
return nil
}
default:
{
fmt.Println(e.Rune())
return e
}
}
})
go func() {
for {
UI.App.Draw()
time.Sleep(time.Second)
}
}()
if err := UI.App.Run(); err != nil {
panic(err)
}
}