Skip to content

Commit f50609f

Browse files
committed
Add dummy mechanism
1 parent 2ad3615 commit f50609f

File tree

15 files changed

+513
-460
lines changed

15 files changed

+513
-460
lines changed

lib/IMP.js

+71-71
Original file line numberDiff line numberDiff line change
@@ -5,78 +5,78 @@
55
* https://opensource.org/licenses/MIT
66
*/
77

8-
export default function IMPs(score1, score2) {
9-
const diff = Math.abs(score1 - score2); //score 1 is the teams score on table 1, score 2 the same teams score on table 2.
10-
var points;
8+
// export default function IMPs(score1, score2) {
9+
// const diff = Math.abs(score1 - score2); //score 1 is the teams score on table 1, score 2 the same teams score on table 2.
10+
// var points;
1111

12-
if (diff < 20) {
13-
return points = [0, 0]; //first number is IMP of the team whose score we entered, score 2 is the other teams IMP=
14-
}
12+
// if (diff < 20) {
13+
// return points = [0, 0]; //first number is IMP of the team whose score we entered, score 2 is the other teams IMP=
14+
// }
1515

16-
else if (diff >= 170 && diff <= 210) {
17-
points= [5, 0];
18-
}
16+
// else if (diff >= 170 && diff <= 210) {
17+
// points= [5, 0];
18+
// }
1919

20-
else if (diff >= 220 && diff <= 260) {
21-
points= [6, 0];
22-
}
23-
else if (diff >= 270 && diff <= 310) {
24-
points= [7, 0];
25-
}
20+
// else if (diff >= 220 && diff <= 260) {
21+
// points= [6, 0];
22+
// }
23+
// else if (diff >= 270 && diff <= 310) {
24+
// points= [7, 0];
25+
// }
2626

27-
else if (diff >= 320 && diff <= 360) {
28-
points= [8, 0];
29-
}
30-
else if (diff >= 370 && diff <= 420) {
31-
points= [9, 0];
32-
}
33-
else if (diff >= 430 && diff <= 490) {
34-
points= [10, 0];
35-
}
36-
else if (diff >= 500 && diff <= 590) {
37-
points= [11, 0];
38-
}
39-
else if (diff >= 600 && diff <= 740) {
40-
points= [12, 0];
41-
}
42-
else if (diff >= 750 && diff <= 890) {
43-
points= [13, 0];
44-
}
45-
else if (diff >= 900 && diff <= 1090) {
46-
points= [14, 0];
47-
}
48-
else if (diff >= 1100 && diff <= 1290) {
49-
points= [15, 0];
50-
}
51-
else if (diff >= 1300 && diff <= 1490) {
52-
points= [16, 0];
53-
}
54-
else if (diff >= 1500 && diff <= 1740) {
55-
points= [17, 0];
56-
}
57-
else if (diff >= 1750 && diff <= 1990) {
58-
points= [18, 0];
59-
}
60-
else if (diff >= 2000 && diff <= 2240) {
61-
points= [19, 0];
62-
}
63-
else if (diff >= 2250 && diff <= 2490) {
64-
points= [20, 0];
65-
}
66-
else if (diff >= 2500 && diff <= 2990) {
67-
points= [21, 0];
68-
}
69-
else if (diff >= 3000 && diff <= 3490) {
70-
points= [22, 0];
71-
}
72-
else if (diff >= 3500 && diff <= 3990) {
73-
points= [23, 0];
74-
}
75-
else{
76-
points= [24, 0]
77-
}
78-
if(score2>score1){
79-
points=points.reverse();
80-
}
81-
return points;
82-
}
27+
// else if (diff >= 320 && diff <= 360) {
28+
// points= [8, 0];
29+
// }
30+
// else if (diff >= 370 && diff <= 420) {
31+
// points= [9, 0];
32+
// }
33+
// else if (diff >= 430 && diff <= 490) {
34+
// points= [10, 0];
35+
// }
36+
// else if (diff >= 500 && diff <= 590) {
37+
// points= [11, 0];
38+
// }
39+
// else if (diff >= 600 && diff <= 740) {
40+
// points= [12, 0];
41+
// }
42+
// else if (diff >= 750 && diff <= 890) {
43+
// points= [13, 0];
44+
// }
45+
// else if (diff >= 900 && diff <= 1090) {
46+
// points= [14, 0];
47+
// }
48+
// else if (diff >= 1100 && diff <= 1290) {
49+
// points= [15, 0];
50+
// }
51+
// else if (diff >= 1300 && diff <= 1490) {
52+
// points= [16, 0];
53+
// }
54+
// else if (diff >= 1500 && diff <= 1740) {
55+
// points= [17, 0];
56+
// }
57+
// else if (diff >= 1750 && diff <= 1990) {
58+
// points= [18, 0];
59+
// }
60+
// else if (diff >= 2000 && diff <= 2240) {
61+
// points= [19, 0];
62+
// }
63+
// else if (diff >= 2250 && diff <= 2490) {
64+
// points= [20, 0];
65+
// }
66+
// else if (diff >= 2500 && diff <= 2990) {
67+
// points= [21, 0];
68+
// }
69+
// else if (diff >= 3000 && diff <= 3490) {
70+
// points= [22, 0];
71+
// }
72+
// else if (diff >= 3500 && diff <= 3990) {
73+
// points= [23, 0];
74+
// }
75+
// else{
76+
// points= [24, 0]
77+
// }
78+
// if(score2>score1){
79+
// points=points.reverse();
80+
// }
81+
// return points;
82+
// }

lib/VP.js

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
/* Copyright 2020 Daniel Bohm & Patrik Perger and the Bridge Hackathon Contributors
2-
*
3-
* Use of this source code is governed by an MIT-style
4-
* license that can be found in the LICENSE file or at
5-
* https://opensource.org/licenses/MIT
6-
*/
1+
// /* Copyright 2020 Daniel Bohm & Patrik Perger and the Bridge Hackathon Contributors
2+
// *
3+
// * Use of this source code is governed by an MIT-style
4+
// * license that can be found in the LICENSE file or at
5+
// * https://opensource.org/licenses/MIT
6+
// */
77

8-
export default function vp(M, no_boards) { //M=margin, no_boards= number of boards
8+
// export default function vp(M, no_boards) { //M=margin, no_boards= number of boards
99

10-
const B = 15 * (Math.pow(no_boards, 0.5));
11-
const Tau = (Math.pow(5, 0.5) - 1) / 2;
12-
VPW = 10 + 10 * ((1 - Math.pow(Tau, (3 * M / B))) / (1 - Math.pow(Tau, 3))); //source: https://www.bridgebase.com/forums/topic/55389-wbf-vp-scale-changes/page__p__667202#entry667202
13-
if (VPW > 20) {
14-
VPW = 20;
15-
}
16-
VPL = 20 - VPW;
17-
18-
return[VPW.toFixed(2),VPL.toFixed(2)] //VPW=VP of winner, VPL= VP of loser
19-
}
10+
// const B = 15 * (Math.pow(no_boards, 0.5));
11+
// const Tau = (Math.pow(5, 0.5) - 1) / 2;
12+
// VPW = 10 + 10 * ((1 - Math.pow(Tau, (3 * M / B))) / (1 - Math.pow(Tau, 3))); //source: https://www.bridgebase.com/forums/topic/55389-wbf-vp-scale-changes/page__p__667202#entry667202
13+
// if (VPW > 20) {
14+
// VPW = 20;
15+
// }
16+
// VPL = 20 - VPW;
17+
18+
// return[VPW.toFixed(2),VPL.toFixed(2)] //VPW=VP of winner, VPL= VP of loser
19+
// }
2020

2121

lib/moves/bid.js

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
import { SPECIAL_BIDS } from '../SpecialBids.js';
2+
import { arePartners, POSITIONS } from '../positions.js';
3+
import { _ } from 'lodash';
4+
5+
const getDeclarer = function (bidding) {
6+
const lastRegularBid = _.findLast(bidding, (bid) => {
7+
return !!bid.suit;
8+
});
9+
return _.get(lastRegularBid, 'position', null);
10+
};
11+
12+
const getDummy = function (declarerPosition) {
13+
if (!declarerPosition) return null;
14+
return _.keys(POSITIONS).find(p => {
15+
return arePartners(p, declarerPosition);
16+
})
17+
};
218

319
export const bid = function (G, ctx, bid) {
4-
console.log("bid", bid);
520
let contract = Object.assign({}, G.contract);
621
switch (bid.bid) {
722
case SPECIAL_BIDS.PASS:
@@ -14,7 +29,11 @@ export const bid = function (G, ctx, bid) {
1429
break;
1530
default:
1631
contract = bid;
32+
1733
break;
1834
};
19-
return { ...G, bidding: [...G.bidding, bid], contract };
35+
const declarer = getDeclarer([...G.bidding, bid]);
36+
const dummy = getDummy(declarer);
37+
console.log("bid", bid);
38+
return { ...G, bidding: [...G.bidding, bid], dummy, declarer, contract };
2039
};

lib/moves/getTrickWinner.js

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export const getTrickWinner = ({ trick, trump }) => {
1919
});
2020
return power_a === power_b ? b.card.value - a.card.value : power_b - power_a
2121
});
22-
console.log(sorted);
2322
return sorted[0].position;
2423
};
2524

lib/moves/playCard.js

+25-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
11
import { _ } from 'lodash';
22
import { getTrickWinner } from './getTrickWinner.js';
3-
3+
import { playerIdToPosition } from '../positions.js';
44
export const playCard = (G, ctx, card) => {
55
//TODO check if card is allowed to play
6+
const currentCard = { card, position: ctx.currentPlayer };
67

78
//for some reason [...G.tricks] tdoesnt work here .... somthing with proxy i guess
89
let tricks = JSON.parse(JSON.stringify(G.tricks));
910
let hands = JSON.parse(JSON.stringify(G.hands));
11+
let winner = '';
12+
let lastTrick = _.last(tricks);
13+
let next = null;
14+
15+
let wasDummyPlaying = G.isDummyPlaying;
16+
let isDummyPlaying = false;
17+
18+
let position = playerIdToPosition(next);
19+
if (position === G.dummy) {
20+
isDummyPlaying = true;
21+
}
1022
hands = _.keys(hands).reduce((result, hand) => {
1123
result[hand] = hands[hand].filter((c) => {
1224
return !(c.suit === card.suit && c.value === card.value)
1325
});
1426
return result;
1527
}, {});
16-
console.log("hands", hands);
17-
let winner = '';
18-
const lastTrick = _.last(tricks);
19-
const currentCard = { card, position: ctx.currentPlayer };
28+
2029
if (lastTrick.cards.length === 4) {
2130
tricks = [...tricks, { cards: [currentCard] }];
2231
} else {
@@ -26,7 +35,17 @@ export const playCard = (G, ctx, card) => {
2635
tricks = [...tricks, lastTrick]
2736
};
2837

29-
return { ...G, tricks, hands };
38+
lastTrick = _.last(tricks);
39+
if (lastTrick.cards.length < 4) {
40+
next = (ctx.playOrderPos + 1) % ctx.numPlayers;
41+
} else {
42+
next = Number(lastTrick.winner);
43+
};
44+
position = playerIdToPosition(next);
45+
if (position === G.dummy) {
46+
isDummyPlaying = true;
47+
}
48+
return { ...G, tricks, hands, isDummyPlaying, wasDummyPlaying };
3049
};
3150

3251

lib/phases.js

+19-7
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ import { _ } from "lodash";
44
import { SPECIAL_BIDS } from "./SpecialBids.js";
55
import { getLastNotPassBid } from "./bidding.js";
66
import { TurnOrder } from 'boardgame.io/core';
7-
import { positionKey } from "/imports/lib/positions.js";
7+
import { positionKey, playerIdToPosition, positionToPlayerId } from "./positions.js";
88
export const PHASE_BIDDING = "PHASE_BIDDING";
99
export const PHASE_DECLARE = "PHASE_DECLARE";
1010

1111

1212
const getFirstLeadPosition = function (G) {
13+
console.log("F", G.bidding);
1314
return (positionKey[_.last(G.bidding).position] + 2) % 4;
1415
};
1516

@@ -19,15 +20,15 @@ export const phases = {
1920
moveLimit: 1,
2021
order: {
2122
first: (G, ctx) => {
22-
return positionKey[G.dealer]
23+
return positionToPlayerId(G.dealer);
2324
},
2425
next: (G, ctx) => (ctx.playOrderPos + 1) % ctx.numPlayers,
2526
playOrder: (G, ctx) => ['0', '1', '2', '3']
2627
},
2728
},
2829
moves: { bid },
2930
endIf: (G) => {
30-
return (
31+
const shouldFinish =
3132
//four passes
3233
(G.bidding.length === 4 &&
3334
_.every(
@@ -39,7 +40,7 @@ export const phases = {
3940
_.takeRight(G.bidding, 3),
4041
(e) => e.bid === SPECIAL_BIDS.PASS
4142
))
42-
);
43+
return shouldFinish;
4344
},
4445
start: true,
4546
next: PHASE_DECLARE,
@@ -52,19 +53,30 @@ export const phases = {
5253
// This is called at the beginning of the phase.
5354
first: (G, ctx) => {
5455
const a = getFirstLeadPosition(G);
55-
return 0;
56+
console.log("FIRST LEAD", a);
57+
return getFirstLeadPosition(G);
5658
},
5759

5860
// Get the next value of playOrderPos.
5961
// This is called at the end of each turn.
6062
// The phase ends if this returns undefined.
6163
next: (G, ctx) => {
6264
const lastTrick = _.last(G.tricks);
65+
let next = null;
6366
if (lastTrick.cards.length < 4) {
64-
return (ctx.playOrderPos + 1) % ctx.numPlayers;
67+
console.log('Gchecking in next', G.wasDummyPlaying, ctx.playOrderPos);
68+
next = (ctx.playOrderPos + (G.wasDummyPlaying ? 3 : 1)) % ctx.numPlayers;
6569
} else {
66-
return Number(lastTrick.winner);
70+
next = Number(lastTrick.winner);
71+
};
72+
const position = playerIdToPosition(next);
73+
console.log("position", position, G.dummy);
74+
if (position === G.dummy) {
75+
console.log("NEXT TO PLAY", positionToPlayerId(G.declarer));
76+
return positionToPlayerId(G.declarer);
6777
}
78+
console.log("NEXT", next);
79+
return next;
6880
},
6981

7082

lib/positions.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ export const playerIdToPosition = (playerId) => {
5353
})
5454
};
5555

56-
export const positionToTablePosition = (position, playerPotion) => {
56+
export const positionToTablePosition = (position, playerPosition) => {
5757
const getPositionIndex = pos => _.findIndex(_.keys(POSITIONS), p => {
5858
return p === pos;
5959
});
6060
const playerPositionIndex = getPositionIndex(playerPosition);
6161
const positionIndex = getPositionIndex(position);
62-
return _.keys(TABLE_POSITIONS)[(4 + playerPositionIndex - positionIndex) % 4];
62+
return _.keys(TABLE_POSITIONS)[(4 + positionIndex - playerPositionIndex) % 4];
6363
};
6464

6565
export const tablePositionToPosition = (position, playerPosition) => {

0 commit comments

Comments
 (0)