Find the legal move matching UCI string uci, or -1.
uci
int moveFromUci(String uci) { for (final m in generateLegal()) { if (moveToUci(m) == uci) return m; } return -1; }