gomu/command.go

462 lines
8.9 KiB
Go
Raw Normal View History

package main
import (
2021-02-26 11:18:58 +08:00
"github.com/issadarkthing/gomu/player"
"github.com/rivo/tview"
"github.com/ztrue/tracerr"
)
type Command struct {
commands map[string]func()
}
func newCommand() Command {
return Command{
commands: make(map[string]func()),
}
}
func (c *Command) define(name string, callBack func()) {
c.commands[name] = callBack
}
func (c Command) getFn(name string) (func(), error) {
fn, ok := c.commands[name]
if !ok {
return nil, tracerr.New("command not found")
}
return fn, nil
}
func (c Command) defineCommands() {
2021-02-14 13:45:43 +08:00
anko := gomu.anko
/* Playlist */
c.define("create_playlist", func() {
name, _ := gomu.pages.GetFrontPage()
if name != "mkdir-popup" {
createPlaylistPopup()
}
})
c.define("delete_playlist", func() {
audioFile := gomu.playlist.getCurrentFile()
2021-03-02 15:40:23 +08:00
if audioFile.isAudioFile {
return
}
err := confirmDeleteAllPopup(audioFile.node)
if err != nil {
errorPopup(err)
}
})
c.define("delete_file", func() {
audioFile := gomu.playlist.getCurrentFile()
// prevent from deleting a directory
if !audioFile.isAudioFile {
return
}
err := gomu.playlist.deleteSong(audioFile)
if err != nil {
logError(err)
}
})
2021-02-04 21:27:17 +08:00
c.define("youtube_search", func() {
2021-02-20 16:21:04 +08:00
ytSearchPopup()
2021-02-04 21:27:17 +08:00
})
c.define("download_audio", func() {
audioFile := gomu.playlist.getCurrentFile()
currNode := gomu.playlist.GetCurrentNode()
if gomu.pages.HasPage("download-input-popup") {
gomu.pages.RemovePage("download-input-popup")
gomu.popups.pop()
return
}
// this ensures it downloads to
// the correct dir
if audioFile.isAudioFile {
downloadMusicPopup(audioFile.parent)
} else {
downloadMusicPopup(currNode)
}
})
c.define("add_queue", func() {
audioFile := gomu.playlist.getCurrentFile()
currNode := gomu.playlist.GetCurrentNode()
if audioFile.isAudioFile {
gomu.queue.enqueue(audioFile)
} else {
currNode.SetExpanded(true)
}
})
c.define("close_node", func() {
audioFile := gomu.playlist.getCurrentFile()
currNode := gomu.playlist.GetCurrentNode()
// if closing node with no children
// close the node's parent
// remove the color of the node
if audioFile.isAudioFile {
parent := audioFile.parent
gomu.playlist.setHighlight(parent)
parent.SetExpanded(false)
}
currNode.Collapse()
})
c.define("bulk_add", func() {
currNode := gomu.playlist.GetCurrentNode()
2021-02-18 10:23:15 +08:00
bulkAdd := anko.GetBool("General.confirm_bulk_add")
if !bulkAdd {
gomu.playlist.addAllToQueue(currNode)
return
}
confirmationPopup(
"Are you sure to add this whole directory into queue?",
func(_ int, label string) {
if label == "yes" {
gomu.playlist.addAllToQueue(currNode)
}
})
})
c.define("refresh", func() {
gomu.playlist.refresh()
})
c.define("rename", func() {
audioFile := gomu.playlist.getCurrentFile()
renamePopup(audioFile)
})
c.define("playlist_search", func() {
files := make([]string, len(gomu.playlist.getAudioFiles()))
for i, file := range gomu.playlist.getAudioFiles() {
files[i] = file.name
}
2021-02-15 13:56:31 +08:00
searchPopup("Search", files, func(text string) {
audio, err := gomu.playlist.findAudioFile(sha1Hex(text))
if err != nil {
logError(err)
}
gomu.playlist.setHighlight(audio.node)
gomu.playlist.refresh()
})
})
c.define("reload_config", func() {
cfg := expandFilePath(*gomu.args.config)
err := execConfig(cfg)
if err != nil {
errorPopup(err)
}
infoPopup("successfully reload config file")
})
/* Queue */
c.define("move_down", func() {
gomu.queue.next()
})
c.define("move_up", func() {
gomu.queue.prev()
})
c.define("delete_item", func() {
gomu.queue.deleteItem(gomu.queue.GetCurrentItem())
})
c.define("clear_queue", func() {
confirmationPopup("Are you sure to clear the queue?",
func(_ int, label string) {
if label == "yes" {
gomu.queue.clearQueue()
}
})
})
c.define("play_selected", func() {
2021-02-03 10:50:01 +08:00
if gomu.queue.GetItemCount() != 0 && gomu.queue.GetCurrentItem() != -1 {
a, err := gomu.queue.deleteItem(gomu.queue.GetCurrentItem())
if err != nil {
logError(err)
}
2021-02-03 10:50:01 +08:00
gomu.queue.pushFront(a)
2021-02-26 11:18:58 +08:00
gomu.player.Skip()
2021-02-03 10:50:01 +08:00
}
})
c.define("toggle_loop", func() {
2021-02-27 16:01:48 +08:00
gomu.queue.isLoop = !gomu.queue.isLoop
2021-02-03 10:50:01 +08:00
gomu.queue.updateTitle()
})
c.define("shuffle_queue", func() {
gomu.queue.shuffle()
})
c.define("queue_search", func() {
queue := gomu.queue
audios := make([]string, 0, len(queue.items))
for _, file := range queue.items {
audios = append(audios, file.name)
}
2021-02-15 13:56:31 +08:00
searchPopup("Songs", audios, func(selected string) {
index := 0
for i, v := range queue.items {
if v.name == selected {
index = i
}
}
queue.SetCurrentItem(index)
})
})
/* Global */
c.define("quit", func() {
2021-02-18 10:23:15 +08:00
confirmOnExit := anko.GetBool("General.confirm_on_exit")
if !confirmOnExit {
err := gomu.quit(gomu.args)
if err != nil {
logError(err)
}
}
exitConfirmation(gomu.args)
})
c.define("toggle_pause", func() {
2021-02-26 11:18:58 +08:00
gomu.player.TogglePause()
})
c.define("volume_up", func() {
2021-02-26 11:18:58 +08:00
v := player.VolToHuman(gomu.player.GetVolume())
if v < 100 {
2021-02-26 11:18:58 +08:00
vol := gomu.player.SetVolume(0.5)
volumePopup(vol)
}
})
c.define("volume_down", func() {
2021-02-26 11:18:58 +08:00
v := player.VolToHuman(gomu.player.GetVolume())
if v > 0 {
2021-02-26 11:18:58 +08:00
vol := gomu.player.SetVolume(-0.5)
volumePopup(vol)
}
})
c.define("skip", func() {
2021-02-26 11:18:58 +08:00
gomu.player.Skip()
})
c.define("toggle_help", func() {
name, _ := gomu.pages.GetFrontPage()
if name == "help-page" {
gomu.pages.RemovePage(name)
gomu.app.SetFocus(gomu.prevPanel.(tview.Primitive))
} else {
helpPopup(gomu.prevPanel)
}
})
c.define("command_search", func() {
names := make([]string, 0, len(c.commands))
for commandName := range c.commands {
names = append(names, commandName)
}
2021-02-15 13:56:31 +08:00
searchPopup("Commands", names, func(selected string) {
for name, fn := range c.commands {
if name == selected {
fn()
}
}
})
})
2021-01-27 01:10:48 +08:00
2021-02-03 10:50:01 +08:00
c.define("forward", func() {
2021-02-26 11:18:58 +08:00
if gomu.player.IsRunning() && !gomu.player.IsPaused() {
2021-02-25 16:46:52 +08:00
position := gomu.playingBar.progress + 10
2021-02-03 10:50:01 +08:00
if position < gomu.playingBar.full {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(position)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = position
2021-02-03 10:50:01 +08:00
}
}
})
c.define("rewind", func() {
2021-02-26 11:18:58 +08:00
if gomu.player.IsRunning() && !gomu.player.IsPaused() {
2021-02-25 16:46:52 +08:00
position := gomu.playingBar.progress - 10
2021-02-03 10:50:01 +08:00
if position-1 > 0 {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(position)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = position
2021-02-03 10:50:01 +08:00
} else {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(0)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = 0
2021-02-03 10:50:01 +08:00
}
}
})
c.define("forward_fast", func() {
2021-02-26 11:18:58 +08:00
if gomu.player.IsRunning() && !gomu.player.IsPaused() {
2021-02-25 16:46:52 +08:00
position := gomu.playingBar.progress + 60
2021-02-03 10:50:01 +08:00
if position < gomu.playingBar.full {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(position)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = position
2021-02-03 10:50:01 +08:00
}
}
})
c.define("rewind_fast", func() {
2021-02-26 11:18:58 +08:00
if gomu.player.IsRunning() && !gomu.player.IsPaused() {
2021-02-25 16:46:52 +08:00
position := gomu.playingBar.progress - 60
2021-02-03 10:50:01 +08:00
if position-1 > 0 {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(position)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = position
2021-02-03 10:50:01 +08:00
} else {
2021-02-26 11:18:58 +08:00
err := gomu.player.Seek(0)
2021-02-08 01:06:21 +08:00
if err != nil {
logError(err)
}
2021-02-25 16:46:52 +08:00
gomu.playingBar.progress = 0
2021-02-03 10:50:01 +08:00
}
}
})
c.define("yank", func() {
err := gomu.playlist.yank()
if err != nil {
logError(err)
}
2021-02-03 10:50:01 +08:00
})
c.define("paste", func() {
err := gomu.playlist.paste()
if err != nil {
logError(err)
}
})
2021-02-16 13:37:59 +08:00
c.define("repl", func() {
replPopup()
})
2021-02-19 14:28:55 +08:00
c.define("edit_tags", func() {
audioFile := gomu.playlist.getCurrentFile()
2021-03-03 16:56:41 +08:00
err := tagPopup(audioFile)
if err != nil {
errorPopup(err)
}
})
2021-02-19 14:28:55 +08:00
c.define("switch_lyric", func() {
gomu.playingBar.switchLyrics()
2021-02-19 14:28:55 +08:00
})
2021-02-23 10:24:23 +08:00
c.define("fetch_lyric", func() {
audioFile := gomu.playlist.getCurrentFile()
2021-03-09 01:48:01 +08:00
lang := "en"
2021-02-23 10:24:23 +08:00
if audioFile.isAudioFile {
go func() {
gomu.app.QueueUpdateDraw(func() {
2021-03-09 01:48:01 +08:00
err := lyricPopup(lang, audioFile)
if err != nil {
errorPopup(err)
2021-02-27 23:11:17 +08:00
gomu.app.Draw()
}
})
}()
}
})
c.define("fetch_lyric_cn2", func() {
2021-02-27 23:11:17 +08:00
audioFile := gomu.playlist.getCurrentFile()
2021-03-09 01:48:01 +08:00
lang := "zh-CN"
if audioFile.isAudioFile {
go func() {
gomu.app.QueueUpdateDraw(func() {
2021-03-09 01:48:01 +08:00
err := lyricPopup(lang, audioFile)
2021-02-27 23:11:17 +08:00
if err != nil {
errorPopup(err)
gomu.app.Draw()
}
})
2021-02-23 10:24:23 +08:00
}()
}
})
c.define("lyric_delay_increase", func() {
err := gomu.playingBar.delayLyric(500)
if err != nil {
2021-02-28 23:19:42 +08:00
errorPopup(err)
gomu.app.Draw()
}
})
c.define("lyric_delay_decrease", func() {
err := gomu.playingBar.delayLyric(-500)
if err != nil {
2021-02-28 23:19:42 +08:00
errorPopup(err)
gomu.app.Draw()
}
})
2021-03-15 13:26:51 +08:00
c.define("show_colors", func() {
cp := colorsPopup()
gomu.pages.AddPage("show-color-popup", center(cp, 95, 40), true, true)
gomu.popups.push(cp)
})
for name, cmd := range c.commands {
2021-02-14 14:35:36 +08:00
err := gomu.anko.Define(name, cmd)
if err != nil {
2021-02-14 13:45:43 +08:00
logError(err)
}
}
2021-02-19 14:45:20 +08:00
}