From a830fa73b3cb9d1b3ffcbcde35928284d7f969a2 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 6 Aug 2023 11:58:06 +0200 Subject: [PATCH] gobot:: ko rule checking --- rogueviz/gobot.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rogueviz/gobot.cpp b/rogueviz/gobot.cpp index e310e9ca..eda55028 100644 --- a/rogueviz/gobot.cpp +++ b/rogueviz/gobot.cpp @@ -361,6 +361,16 @@ void try_to_play(string s, int who) { if(current.taken[i] == 1-who && count_breath(i) == 0) dead_group(i); } + + int steps = 0; + for(int it=isize(history)-1; it>=0; it--) { + steps++; + if(history[it].taken == current.taken) { + go_message("This position repeated " + its(steps) + " moves back. Say 'undo' to cancel this move"); + } + if(history[it].captures[0] == 0 && history[it].captures[1] == 0) + break; + } if(count_breath(pos) == 0) { current.taken[pos] = Free;