Speedo是一个轻巧的Speedrun分式计时器。
我对Linux的本机拆分计时器选项不满意。在浏览器中运行分式计时器是一种选择,但由于CPU的强化程度,在游戏过程中引起了打ic。我还希望记录比平均分配计时器更多的信息,以开发工具以帮助速度运行练习。
Speedo将游戏设置和数据存储在ELISP PLIST中。这使得通过编程性阅读和互动变得容易。一个示例数据库:
( :title " TITLE "
:category " CATEGORY "
:segments (( :name " One " )
( :name " Two " )
( :name " Three " ))
:attempts
; ; a run (complete attempt)
(( :start " 2020-01-01 00:00 "
:segments (( :name " One " :duration " 1:00.33 " )
( :name " Two " :duration " 1:33.45 " )
( :name " Three " :duration " 2:41 " )))
; ; an incomplete attempt
( :start " 2020-01-01 00:00 "
:segments (( :name " One " :duration " 1:00.24 " )
( :name " Two " :duration " 2:33.08 "
:mistakes ( " 2:03.35 " )))
:reset " 3:25.75 " ))
:config
; ; game specific customizations
(( setq speedo-buffer " *My Buffer Title* " )))