kaorahi / lizgoban

Leela Zero & KataGo visualizer
GNU General Public License v3.0
169 stars 28 forks source link

disable blur option? #86

Open raylu opened 1 year ago

raylu commented 1 year ago

0.8 is introducing blurred ownership. is it possible to disable that?

kaorahi commented 1 year ago

Yes, as a hidden feature at present.

If you are using the released binary LizGoban 0.8.0-pre1.exe:

  1. Copy sample/built_in/config.json to the same folder as LizGoban 0.8.0-pre1.exe.
  2. Edit config.json to insert the line "endstate_blur": 0, as follows.
  3. (Re)start lizgoban.

config.json should look like this:

{
    "endstate_blur": 0,
    "max_cached_engines": 2,
    ...
}

The default value of endstate_blur is 0.5 (= half grid).

The parameter endstate_blur is undocumented and I am not sure if I should officially support it. (In general, projects tend to become buggy later on if they introduce too many combinations of options/preferences/customisations.)