-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
39 lines (31 loc) · 777 Bytes
/
config.js
File metadata and controls
39 lines (31 loc) · 777 Bytes
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
// To change the starting board please change the value of the variable startingBoard below with one of this value
// alliances
// allienage
// boutonniere
// centrifugeuse
// domination
// duel
// faceaface
// fujiyama
// infiltration
// margueriteallemande
// margueritebelge
// margueritehollandaise
// margueritesuisse
// standard
// star
var startingBoard = "standard";
// Difficulty
var depth = 3;
// Players type (0: Human, 1: AI)
var players = new Array(1, 0);
// W B
var server = "http://bastnt.dyndns.tv/abalone/";
var animationTime = 1000;
// Starting Player
var activePlayer = 2;
// Path of AI to execute
// Color W B
var AI = new Array("./abalone", "./abalone");
// Initial Score
score = new Array(0,0);