ubi.com    Forums  Hop To Forum Categories  Chessmaster  Hop To Forums  Chessmaster 10th Edition    FRC on Chessmaster?

Moderators: KHollister
Go
New
Find
Notify
Tools
Reply
  
  Login/Join 
Posted
Does Chessmaster 10thed. support Fischer random chess,i.e.chess 960 play?If so I would definitely purchase it for my XBox.Thanx in advance for answers. Smile
 
Posts: 2 | Registered: Wed October 10 2007Reply With QuoteEdit or Delete MessageReport This Post
Picture of Damezzi
Posted Hide Post
The pc version doesn't. But I think chessmaster 11 will.
 
Posts: 42 | Registered: Tue August 14 2007Reply With QuoteEdit or Delete MessageReport This Post
Posted Hide Post
That's too bad...they really should put it in the next Chessmaster as it seems to be the most popular of all the chess variants-also the most fun,IMO.Thanks for answering my question. Smile
 
Posts: 2 | Registered: Wed October 10 2007Reply With QuoteEdit or Delete MessageReport This Post
Posted Hide Post
A little piece of code that copies a random position in the clipboard. Just save the code in a test.html file with notepad, execute and paste the result in CM in forsythe notation.
It works in IE only.

(C) Marco1900 light GPL license.

<html>
<head>
<script type="text/javascript">
var i;
var base;
var permuted = "";
var b1=-1;
var b2=-1;
document.write( "<Input name=text1 size=50 > </Input>" );
document.write( "<button onclick=clic() name=go > Go </button>" );

function clic() {

while(1==1) {
b1=-1;
b2=-1;
base = "rnbqkbnr";
permuted = "";

for(i=0; i<8; i++) {
var c = draw();
if(c.charAt(0)=='b') {
if( b1==-1 ) b1=i; else b2=i;
}
permuted += c;
}
if((b2-b1)%2==1) break;
}

permuted+=("/pppppppp/8/8/8/8/PPPPPPPP/"+permuted.toUpperCase() + " w " );
window.clipboardData.setData("Text", permuted);
document.getElementById("text1").setAttribute("value", permuted);
}

function draw( ) {
var len = base.length
var choice = Math.floor(Math.random()*len);
if(choice==len) choice=len-1;
var ret=base.substring(choice, choice+1);
base = base.substring(0,choice)+base.substring(choice+1,8);
return ret;
}
</script>
</head>

<body>
</body>
</html>

This message has been edited. Last edited by: marco1900,
 
Posts: 185 | Registered: Fri November 18 2005Reply With QuoteEdit or Delete MessageReport This Post
Picture of Damezzi
Posted Hide Post
But it won't be able to handle castling... or?
 
Posts: 42 | Registered: Tue August 14 2007Reply With QuoteEdit or Delete MessageReport This Post
Posted Hide Post
It seems that the castling rule is stil in discussion among the FRC community. Anyway, I don't like this rule : it's uselessly complicated and the fact that the king must be between the two rooks limits the variant.
I've made a correction in the script so that the bishops are necessarily on different colours though.
 
Posts: 185 | Registered: Fri November 18 2005Reply With QuoteEdit or Delete MessageReport This Post
Posted Hide Post
According to http://www.chessclub.com/helpcenter/tips/wild.html my version would be "wild 2", limited shuffle. full shuffle would be "wild 4".
Fischer would be a special rule for castling.
(???).
 
Posts: 185 | Registered: Fri November 18 2005Reply With QuoteEdit or Delete MessageReport This Post
 Previous Topic | Next Topic powered by eve community  
 

ubi.com    Forums  Hop To Forum Categories  Chessmaster  Hop To Forums  Chessmaster 10th Edition    FRC on Chessmaster?

Terms of Use