▸
Free Cell with GUI community | Guest Logged in | FreeCellGUI.com/ V1_10_257 |
To identify card relations, move the mouse or finger over the cards and observe the color of some of the cards change. Green cards are the targets of the card the mouse pointer, or the blue ball for touch devices, is over (MOC) and yellow cards are the cards that can be moved to MOC.
To move a card left click/tap and it will move to a valid target. If the click or taped card does not have a valid target it will not be moved. If there are multiple valid locations, the MOC can move to, then right click or shift + left click or touch card and do not move for .3 seconds, then click or tap the valid target you want to move the selected (blue) cards to. Click here to see a complete explanation of the Graphical User Interface.
On every logical move the position of the board should be improved.
The preceeding assummes that it is possible to visuallize all logical moves which is not possible but logical moves should be visulized to completion where possible. If not possible then you must use your sense on what is a good path to pursue and yield on the guideline to not increase number of free elements and make the moves along the chosen path and repeat.
Always check source card for Home Exchange opportunities after moving cards to home.
If reach no move condition again, repeat preceeding, trying a different first move after UnDoing or UnDoing farther back.
function calcMaxMove(c,f){ var m = 0; for (var j = 1; j <= c; j++) { m += j + f; } m += f + 1; return m; }
c |
f=0 |
f=1 |
f=2 |
f=3 |
f=4 |
---|---|---|---|---|---|
0 |
1 |
2 |
3 |
4 |
5 |
1 |
2 |
4 |
6 |
8 |
10 |
2 |
4 |
7 |
10 |
13 |
16 |
3 |
7 |
11 |
15 |
19 |
23 |
4 |
11 |
16 |
21 |
26 |
31 |
Top | Company Info | Sitemap | Contact | Copyright 2010 FreeCellGUI.com LLC