Fix Omegachess computer play
authorBenjamin Auder <benjamin.auder@somewhere>
Sun, 29 Mar 2020 14:16:24 +0000 (16:16 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Sun, 29 Mar 2020 14:16:24 +0000 (16:16 +0200)
client/src/variants/Omega.js

index fa95f5e..e682671 100644 (file)
@@ -447,4 +447,17 @@ export class OmegaRules extends ChessRules {
       k: 1000
     };
   }
+
+  evalPosition() {
+    let evaluation = 0;
+    for (let i = 0; i < V.size.x; i++) {
+      for (let j = 0; j < V.size.y; j++) {
+        if (![V.EMPTY,V.NOTHING].includes(this.board[i][j])) {
+          const sign = this.getColor(i, j) == "w" ? 1 : -1;
+          evaluation += sign * V.VALUES[this.getPiece(i, j)];
+        }
+      }
+    }
+    return evaluation;
+  }
 };