准备好为您的 Mac 构建一个很酷的市政厅时钟应用程序了吗?伟大的!我们将创建一个位于菜单栏中的应用程序,每 15 分钟发出一次提示音,甚至可以计算时间。让我们一步步分解,我将解释代码的每一部分,以便您能够理解发生了什么。
我们的市政厅时钟应用程序将:
首先,让我们设置我们的项目:
mkdir CityHallClock cd CityHallClock
go mod init cityhallclock
go get github.com/getlantern/systray go get github.com/faiface/beep
现在,让我们创建 main.go 文件并浏览每个函数:
package main import ( "bytes" "log" "os" "path/filepath" "time" "github.com/faiface/beep" "github.com/faiface/beep/mp3" "github.com/faiface/beep/speaker" "github.com/getlantern/systray" ) var ( audioBuffer *beep.Buffer ) func main() { initAudio() systray.Run(onReady, onExit) } // ... (other functions will go here)
让我们分解一下每个功能:
func main() { initAudio() systray.Run(onReady, onExit) }
这是我们的应用程序启动的地方。它做了两件重要的事情:
func initAudio() { execPath, err := os.Executable() if err != nil { log.Fatal(err) } resourcesPath := filepath.Join(filepath.Dir(execPath), "..", "Resources") chimeFile := filepath.Join(resourcesPath, "chime.mp3") f, err := os.Open(chimeFile) if err != nil { log.Fatal(err) } defer f.Close() streamer, format, err := mp3.Decode(f) if err != nil { log.Fatal(err) } defer streamer.Close() audioBuffer = beep.NewBuffer(format) audioBuffer.Append(streamer) err = speaker.Init(format.SampleRate, format.SampleRate.N(time.Second/10)) if err != nil { log.Fatal(err) } }
此函数设置我们的音频:
如果出现任何问题(例如找不到声音文件),它将记录错误并退出。
func onReady() { systray.SetIcon(getIcon()) systray.SetTitle("City Hall Clock") systray.SetTooltip("City Hall Clock") mQuit := systray.AddMenuItem("Quit", "Quit the app") go func() {该函数设置我们的菜单栏图标:
- 设置图标(使用 getIcon())。
- 设置标题和工具提示。
- 在菜单中添加“退出”选项。
- 单击“退出”选项时开始侦听。
- 开始运行我们的时钟(在一个单独的 goroutine 中,这样它就不会阻塞)。
4.onExit()函数
func onExit() { // Cleanup tasks go here }当应用程序退出时调用此函数。我们在这里不做任何事情,但您可以根据需要添加清理任务。
5.runClock()函数
func runClock() { ticker := time.NewTicker(time.Minute) defer ticker.Stop() for { select { case t :=这是我们时钟的“心脏”:
- 它创建了一个每分钟“滴答”的股票代码。
- 在无限循环中,它每分钟检查一次时间。
- 如果是整点或一刻钟,则会触发铃声。
6. chime()函数
func chime(t time.Time) { hour := t.Hour() minute := t.Minute() var chimeTimes int if minute == 0 { chimeTimes = hour % 12 if chimeTimes == 0 { chimeTimes = 12 } } else { chimeTimes = 1 } for i := 0; i此功能播放我们的铃声:
- 它计算出鸣响多少次(每刻钟一次,或整点的小时数)。
- 然后它会多次播放铃声,并在铃声之间短暂停顿。
7. getIcon()函数
func getIcon() []byte { execPath, err := os.Executable() if err != nil { log.Fatal(err) } iconPath := filepath.Join(filepath.Dir(execPath), "..", "Resources", "icon.png") // Read the icon file icon, err := os.ReadFile(iconPath) if err != nil { log.Fatal(err) } return icon }该函数获取我们的菜单栏图标:
- 它找到我们的应用程序正在运行的位置。
- 在资源目录中找到图标文件。
- 读取图标文件并返回其内容。
创建 macOS 应用程序包
为了使我们的应用程序成为真正的 macOS 公民,我们需要创建一个应用程序包。这涉及创建一个 Info.plist 文件:
CFBundleExecutable CityHallClock CFBundleIconFile AppIcon CFBundleIdentifier com.yourcompany.cityhallclock CFBundleName City Hall Clock CFBundlePackageType APPL CFBundleShortVersionString 1.0 CFBundleVersion 1 LSMinimumSystemVersion 10.12 LSUIElement NSHighResolutionCapable 将其另存为项目目录中的 Info.plist。
添加自定义图标
我们需要两个图标:
- 菜单栏图标:创建一个 22x22 像素的 PNG,命名为 icon.png。
- 应用程序图标:创建.icns文件:
- 使图像大小为 16x16 到 1024x1024 像素。
- 将它们保存在 AppIcon.iconset 中,名称如 icon_16x16.png。
- 运行:iconutil -c icns AppIcon.iconset
建筑和包装
让我们创建一个构建脚本(build.sh):
#!/bin/bash # Build the Go application go build -o CityHallClock # Create the app bundle structure mkdir -p CityHallClock.app/Contents/MacOS mkdir -p CityHallClock.app/Contents/Resources # Move the executable to the app bundle mv CityHallClock CityHallClock.app/Contents/MacOS/ # Copy the Info.plist cp Info.plist CityHallClock.app/Contents/ # Copy the chime sound to Resources cp chime.mp3 CityHallClock.app/Contents/Resources/ # Copy the menu bar icon cp icon.png CityHallClock.app/Contents/Resources/ # Copy the application icon cp AppIcon.icns CityHallClock.app/Contents/Resources/ echo "Application bundle created: CityHallClock.app"使用 chmod x build.sh 使其可执行,然后使用 ./build.sh 运行它。
结论
这就是你得到的!您已经为 macOS 构建了功能齐全的市政厅时钟应用程序。您已了解:
请随意扩展这一点。也许添加自定义铃声或不同铃声间隔的首选项。天空是极限!
您可以在这里找到完整的源代码 https://github.com/rezmoss/citychime
快乐编码,享受你的新时钟!
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3