forked from nmrugg/stockfish.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_load_engine.js
More file actions
88 lines (81 loc) · 2.09 KB
/
test_load_engine.js
File metadata and controls
88 lines (81 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
var load_engine = require("./load_engine");
//var stockfish = load_engine();
var stockfish = load_engine("stockfish");
stockfish.send("uci", function ()
{
stockfish.send("isready");
stockfish.send("d", function (str)
{
console.log(str);
stockfish.send("eval", function (str)
{
console.log(str);
stockfish.send("go depth 7", function ongo(str)
{
console.log("Stockfish says best move: " + str.match(/bestmove (\S+)/)[1]);
stockfish.send("quit");
}, function thinking(str)
{
console.log("thinking: " + str);
});
});
});
});
/*
var fruit = load_engine("fruit");
fruit.send("uci");
fruit.send("go depth 7", function ongo(str)
{
console.log("Fruit says best move: " + str.match(/bestmove (\S+)/)[1]);
fruit.send("quit");
}, function thinking(str)
{
//console.log("thinking: " + str);
});
stockfish.send("uci", function ()
{
stockfish.send("isready");
stockfish.send("d", function (str)
{
//console.log(str);
stockfish.send("eval", function (str)
{
//console.log(str);
stockfish.send("go depth 7", function ongo(str)
{
console.log("Stockfish says best move: " + str.match(/bestmove (\S+)/)[1]);
stockfish.send("quit");
}, function thinking(str)
{
//console.log("thinking: " + str);
});
});
});
});
*/
/*
stockfish.send("bench", function (str)
{
console.log(str);
//process.exit();
//stockfish.send("uci");
stockfish.send("d", function ond(d)
{
console.log(d);
//process.exit();
});
stockfish.send("go depth 3", function ongo(str)
{
console.log("found best move: " + str);
process.exit();
}, function thinking(str)
{
console.log("thinking: " + str);
});
});
//stockfish.send("uci");
stockfish.stream = function stream_all(data)
{
console.log("stream: \"" + data + "\"");
}
*/