; this is default counter template for Minesweeper Arbiter 0.47 ; format is easy: ; * left part of line before "|" is the indicator caption ; * right part is a single formula ; * if line is started with "#" then the formula part ; would be added like text to the formula part of ; previous indicator ; * if line is started with "@" then the formula part ; would be added like a formula result to the formula part of ; previous indicator ; * you can write up to 50 formulas. no sense to flood cpu more ; * empty lines ignored ; * lines that start with ";" are ignored ; * lines that have wrong syntax are ignored too ; ---------- ; *** header of template file *** ; author: Dmitriy ; template name: "default template" ; language: English ; version: 0.03 ; ; *** begin of templates *** ; ;;; time Time |TIMEREAL{2} ;;; estimate Real est. |TIMEESTREAL Mod est. |TIMEREAL * BBBV / (BBBVDONE + 1) ;;; board difficulty measures and correspoding speed ; 3bv and Done 3bv in one indicator 3BV Done|BBBVDONE #| ( @|(100*BBBVDONE/BBBV) #|%) 3BV|BBBV #|@ @|BBBVDONE/TIMEREAL{3} 3BVO|BBBV + (OPENINGS - 1)*2 #|@ @|(BBBV + (OPENINGS - 1)*2)/TIMEESTREAL{3} OBV|OBV #|@ @|OBV/TIMEESTREAL{3} ZiNi|GZINI #|@ @|GZINI/TIMEESTREAL{3} Human ZiNi|HZINI #|@ @|HZINI/TIMEESTREAL{3} Openings|OPENINGSDONE #|/ @|OPENINGS Islands| ISLANDS ;;; clicks Left-cl|LCLK #|@ @|LCLK/TIMEREAL{3} Total-cl|LCLK+RCLK+DCLK #|@ @|(LCLK+RCLK+DCLK)/TIMEREAL{3} Total-eff-cl|TOTALEFF-MISFLAGS-UNFLAGS-MISUNFLAGS #|@ @|(TOTALEFF-MISFLAGS-UNFLAGS-MISUNFLAGS)/TIMEREAL{3} ;;; efficiency measures IOE|BBBVDONE/TOTALCLK{3} Est IOE|BBBVDONE/(TOTALCLK-1){3} ThroughPut|BBBVDONE/(TOTALEFF-MISFLAGS-UNFLAGS-MISUNFLAGS){3} Correctness|(TOTALEFF-MISFLAGS-UNFLAGS-MISUNFLAGS)/TOTALCLK{3} optIOE|BBBV/GZINI{3} H-optIOE|BBBV/HZINI{3} Flags|FLAGSUSED ;;; magic indices ; they're supposed to measure quality of the game RQP|RQP{3} IOS|IOS{3} BAT|TIMEESTREAL*AVGOBV/OBV ;;; ranks of current game ; number of game of this mode Time rank|RANKTIME 3BV/s rank|RANKBBBVS ; *** end of template file *** ;**************************************