Older Programs of Euler Getter
Euler Getter 1
I have implemented the game by using a purely functional programming language, Haskell.
Key operation: arrow keys -- move the cursor in a specified direction space bar -- color the cell pointed by the cursor red or blue. q -- quit r -- restart
You can change the size of the game window by dragging its bottom-right corner.
Euler Getter 2
I have rewritten a program of Euler Getter in Python and Pygame.
The code file of Euler Getter 2
It runs in an environment where Python and Pygame are installed. For instance, type on the shell or terminal like:
python euler_getter_2.py
On Mac, one has to use the 32-bit version of Python, for instance by typing:
arch -i386 python euler_getter_2.py
New features in this version are: AI. Now you can play against a computer. Mouse operation. Anti-Euler Getter. (The reversed-rule version.) Can display the move order. Can retract a move.