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* " )))