Go语言学习日记【九】监听键盘输入并可通过上下键进行查看历史输入

package main

import (
	"fmt"
	"github.com/eiannone/keyboard"
)


/*
脚本运行系统:linux
按字母键进行命令输入
回车键换行
上下键查看历史命令
其余键无效
*/
func main(){

	keysEvents,err := keyboard.GetKeys(10)

	if err != nil {
		panic(err)
	}
	defer func(){
		_ = keyboard.Close()
	}()

	fmt.Println("Press ESC to quit")
	fmt.Print("请输入命令:")

	var str string
	var CommandSlice []string
	commandIndex := 0

	for {
		event := <- keysEvents
		if event.Err != nil {
			panic(event.Err)
		}
		if "A" <= string(event.Rune)  && string(event.Rune) <= "z" {
			fmt.Print(string(event.Rune))
			str = str + string(event.Rune)
		}else if  event.Key == keyboard.KeyEnter {
			if str != ""{
				saveCommand(str,&CommandSlice)
				commandIndex = len(CommandSlice)
			}
			str = ""
			fmt.Printf("\r\n")
			fmt.Print("请输入命令:")
		}

		if event.Key == keyboard.KeyArrowUp {
			command := getCommand(&commandIndex,CommandSlice,true)
			fmt.Print("\033[2K\r","请输入命令:",command)
		}
		if event.Key == keyboard.KeyArrowDown {
			command := getCommand(&commandIndex,CommandSlice,false)
			fmt.Print("\033[2K\r","请输入命令:",command)

		}

		if event.Key == keyboard.KeyEsc {
			break
		}
	}
}


// 保存输入命令
func saveCommand(str string,commandSlice *[]string) () {
	*commandSlice = append(*commandSlice,str)
	if len(*commandSlice) > 10 {
		*commandSlice = (*commandSlice)[1:]
	}
}


// 提取输入命令
func getCommand(commandIndex *int,commandSlice []string,true bool) (commamd string) {
	if true {
		if *commandIndex > 0 {
			*commandIndex --
		}
	} else {
		if *commandIndex < len(commandSlice) {
			*commandIndex ++
		}
	}
	if *commandIndex < len(commandSlice) {
		return commandSlice[*commandIndex]
	} else {
		return ""
	}
}


 

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值