-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.gs
65 lines (53 loc) · 1.8 KB
/
game.gs
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
var _ = LodashGS.load();
var actionTiles = [];
var dones = [];
var players = [];
let tiles = [];
let writeCache = [];
let gameBoard = {
tracks: {
hindrance1: [],
hindrance2: [],
hindrance3: [],
hindrance4: [],
hindrance5: [],
dukkha: 0,
sukkha: 0
}
};
let tileSelection, sheetName;
let maxRow = 150;
let numPlayers = 4;
let actionNo = 0;
let roundNo = 0;
const { logSheet, logsheetID, logsheetName } = createDumpster();
var spreadSheet = SpreadsheetApp.getActiveSpreadsheet();
let allShuffled = shuffleCardIndexes(maxRow);
let iset = [];
for(let i=0;i<24;i++) iset.push(i);
function doGet(){
tiles = initActionTiles();
let resultTiles = chooseTiles(tiles);
players = initPlayers(resultTiles);
let toGoFields = movableFields(tiles, players, []);
for(roundNo=0; roundNo<4; roundNo++){
players = initPlayerDecks(_.pullAt(allShuffled, iset), tiles);
applyActiontiles();
while((players[0].deck.length > 0 && players[0].stats.q > 1) ||
(players[1].deck.length > 0 && players[1].stats.q > 1) ||
(players[2].deck.length > 0 && players[2].stats.q > 1) ||
(players[3].deck.length > 0 && players[3].stats.q > 1) ){
if((actionNo % numPlayers) == 0)
logSheet.insertRowsAfter(logSheet.getMaxRows(), 1);
playACard(actionNo % numPlayers);
trashCards(actionNo % numPlayers);
actionNo++;
if(players[0].passed && players[1].passed && players[2].passed && players[3].passed){
break;
}
console.log('p0:> ' + players[0].deck.length + '::' + players[0].stats.q +' p1:> ' + players[1].deck.length + '::' + players[1].stats.q+' p2:> ' + players[2].deck.length + '::' + players[2].stats.q+' p3:> ' + players[3].deck.length + '::' + players[3].stats.q);
}
gameCleanup();
}
console.log(players);
}