From 31723396eacc87ec6a2d778d9c746e634d9d1dd7 Mon Sep 17 00:00:00 2001 From: Songyi Huang Date: Tue, 1 Jun 2021 23:40:38 -0700 Subject: [PATCH] add new example model download links; implementing new doudizhu replay probability view --- src/components/MenuBar.js | 55 ++- src/view/ReplayView/DoudizhuReplayView.js | 516 +++++++++++++--------- 2 files changed, 354 insertions(+), 217 deletions(-) diff --git a/src/components/MenuBar.js b/src/components/MenuBar.js index 27c6a33..9a69064 100644 --- a/src/components/MenuBar.js +++ b/src/components/MenuBar.js @@ -115,6 +115,7 @@ function MenuBar(props) { }; const [uploadDialogOpen, setUploadDialogOpen] = React.useState(false); + const [downloadChannelDialogOpen, setDownloadChannelDialogOpen] = React.useState(false); const openUploadDialog = () => { setUploadDialogOpen(true); @@ -133,6 +134,10 @@ function MenuBar(props) { setUploadDialogOpen(false); }; + const handleDownloadChannelDialogClose = () => { + setDownloadChannelDialogOpen(false); + }; + let uploadRef = React.createRef(); const handleSubmitUpload = () => { // check if data to upload is legal @@ -326,12 +331,14 @@ function MenuBar(props) { DQN model {' '} for Leduc Holdem or{' '} - { + setDownloadChannelDialogOpen(true); + }} > DMC model - {' '} + {' '} for Doudizhu to test and learn about model upload functionality. @@ -408,16 +415,46 @@ function MenuBar(props) { Choose Download Channel - - +
+ + +
(提取码: s54s)
+
+ + +
); diff --git a/src/view/ReplayView/DoudizhuReplayView.js b/src/view/ReplayView/DoudizhuReplayView.js index 00ed55c..3bee40b 100644 --- a/src/view/ReplayView/DoudizhuReplayView.js +++ b/src/view/ReplayView/DoudizhuReplayView.js @@ -1,47 +1,46 @@ -import React from 'react'; -import axios from 'axios'; -import '../../assets/gameview.scss'; -import { DoudizhuGameBoard } from '../../components/GameBoard'; -import {removeCards, doubleRaf, deepCopy, computeHandCardsWidth, translateCardData} from "../../utils"; -import { apiUrl } from "../../utils/config"; - -import { Layout, Message, Loading } from 'element-react'; -import Slider from '@material-ui/core/Slider'; import Button from '@material-ui/core/Button'; -import Paper from '@material-ui/core/Paper'; +import Dialog from '@material-ui/core/Dialog'; +import DialogActions from '@material-ui/core/DialogActions'; +import DialogContent from '@material-ui/core/DialogContent'; +import DialogContentText from '@material-ui/core/DialogContentText'; +import DialogTitle from '@material-ui/core/DialogTitle'; import Divider from '@material-ui/core/Divider'; import LinearProgress from '@material-ui/core/LinearProgress'; -import PlayArrowRoundedIcon from '@material-ui/icons/PlayArrowRounded'; +import Paper from '@material-ui/core/Paper'; +import Slider from '@material-ui/core/Slider'; import PauseCircleOutlineRoundedIcon from '@material-ui/icons/PauseCircleOutlineRounded'; +import PlayArrowRoundedIcon from '@material-ui/icons/PlayArrowRounded'; import ReplayRoundedIcon from '@material-ui/icons/ReplayRounded'; // import NotInterestedIcon from '@material-ui/icons/NotInterested'; import SkipNextIcon from '@material-ui/icons/SkipNext'; import SkipPreviousIcon from '@material-ui/icons/SkipPrevious'; -import DialogTitle from "@material-ui/core/DialogTitle"; -import DialogContent from "@material-ui/core/DialogContent"; -import DialogContentText from "@material-ui/core/DialogContentText"; -import DialogActions from "@material-ui/core/DialogActions"; -import Dialog from "@material-ui/core/Dialog"; -import qs from "query-string"; +import axios from 'axios'; +import { Layout, Loading, Message } from 'element-react'; +import qs from 'query-string'; +import React from 'react'; +import '../../assets/gameview.scss'; +import { DoudizhuGameBoard } from '../../components/GameBoard'; +import { computeHandCardsWidth, deepCopy, doubleRaf, removeCards, translateCardData } from '../../utils'; +import { apiUrl } from '../../utils/config'; class DoudizhuReplayView extends React.Component { constructor(props) { super(props); - const mainViewerId = 0; // Id of the player at the bottom of screen + const mainViewerId = 0; // Id of the player at the bottom of screen this.initConsiderationTime = 2000; this.considerationTimeDeduction = 200; this.gameStateTimeout = null; this.moveHistory = []; this.gameStateHistory = []; this.initGameState = { - gameStatus: "ready", // "ready", "playing", "paused", "over" + gameStatus: 'ready', // "ready", "playing", "paused", "over" playerInfo: [], hands: [], latestAction: [[], [], []], mainViewerId: mainViewerId, turn: 0, - toggleFade: "", + toggleFade: '', currentPlayer: null, considerationTime: this.initConsiderationTime, @@ -53,62 +52,67 @@ class DoudizhuReplayView extends React.Component { gameStateLoop: null, gameSpeed: 0, gameEndDialog: false, - gameEndDialogText: "", - fullScreenLoading: false + gameEndDialogText: '', + fullScreenLoading: false, }; } - cardStr2Arr(cardStr){ - return cardStr === "pass" || cardStr === "" ? "pass" : cardStr.split(" "); + cardStr2Arr(cardStr) { + return cardStr === 'pass' || cardStr === '' ? 'pass' : cardStr.split(' '); } - generateNewState(){ + generateNewState() { let gameInfo = deepCopy(this.state.gameInfo); - if(this.state.gameInfo.turn === this.moveHistory.length) return gameInfo; + if (this.state.gameInfo.turn === this.moveHistory.length) return gameInfo; // check if the game state of next turn is already in game state history - if(this.state.gameInfo.turn+1 < this.gameStateHistory.length){ - gameInfo = deepCopy(this.gameStateHistory[this.state.gameInfo.turn+1]); - }else{ + if (this.state.gameInfo.turn + 1 < this.gameStateHistory.length) { + gameInfo = deepCopy(this.gameStateHistory[this.state.gameInfo.turn + 1]); + } else { let newMove = this.moveHistory[this.state.gameInfo.turn]; - if(newMove.playerIdx === this.state.gameInfo.currentPlayer) { - gameInfo.latestAction[newMove.playerIdx] = this.cardStr2Arr(Array.isArray(newMove.move) ? newMove.move.join(" ") : newMove.move); + if (newMove.playerIdx === this.state.gameInfo.currentPlayer) { + gameInfo.latestAction[newMove.playerIdx] = this.cardStr2Arr( + Array.isArray(newMove.move) ? newMove.move.join(' ') : newMove.move, + ); gameInfo.turn++; gameInfo.currentPlayer = (gameInfo.currentPlayer + 1) % 3; // take away played cards from player's hands - const remainedCards = removeCards(gameInfo.latestAction[newMove.playerIdx], gameInfo.hands[newMove.playerIdx]); + const remainedCards = removeCards( + gameInfo.latestAction[newMove.playerIdx], + gameInfo.hands[newMove.playerIdx], + ); if (remainedCards !== false) { gameInfo.hands[newMove.playerIdx] = remainedCards; } else { Message({ message: "Cannot find cards in move from player's hand", - type: "error", - showClose: true + type: 'error', + showClose: true, }); } // check if game ends - if(remainedCards.length === 0){ - doubleRaf(()=>{ - const winner = this.state.gameInfo.playerInfo.find(element => { + if (remainedCards.length === 0) { + doubleRaf(() => { + const winner = this.state.gameInfo.playerInfo.find((element) => { return element.index === newMove.playerIdx; }); - if(winner){ - gameInfo.gameStatus = "over"; + if (winner) { + gameInfo.gameStatus = 'over'; this.setState({ gameInfo: gameInfo }); - if(winner.role === "landlord") - setTimeout(()=>{ - const mes = "Landlord Wins"; - this.setState({gameEndDialog: true, gameEndDialogText: mes}); + if (winner.role === 'landlord') + setTimeout(() => { + const mes = 'Landlord Wins'; + this.setState({ gameEndDialog: true, gameEndDialogText: mes }); }, 200); else - setTimeout(()=>{ - const mes = "Peasants Win"; - this.setState({gameEndDialog: true, gameEndDialogText: mes}); + setTimeout(() => { + const mes = 'Peasants Win'; + this.setState({ gameEndDialog: true, gameEndDialogText: mes }); }, 200); - }else{ + } else { Message({ - message: "Error in finding winner", - type: "error", - showClose: true + message: 'Error in finding winner', + type: 'error', + showClose: true, }); } }); @@ -116,21 +120,21 @@ class DoudizhuReplayView extends React.Component { } gameInfo.considerationTime = this.initConsiderationTime; gameInfo.completedPercent += 100.0 / (this.moveHistory.length - 1); - }else { + } else { Message({ - message: "Mismatched current player index", - type: "error", - showClose: true + message: 'Mismatched current player index', + type: 'error', + showClose: true, }); } // if current state is new to game state history, push it to the game state history array - if(gameInfo.turn === this.gameStateHistory.length){ + if (gameInfo.turn === this.gameStateHistory.length) { this.gameStateHistory.push(gameInfo); - }else{ + } else { Message({ - message: "inconsistent game state history length and turn number", - type: "error", - showClose: true + message: 'inconsistent game state history length and turn number', + type: 'error', + showClose: true, }); } } @@ -138,34 +142,34 @@ class DoudizhuReplayView extends React.Component { } gameStateTimer() { - this.gameStateTimeout = setTimeout(()=>{ + this.gameStateTimeout = setTimeout(() => { let currentConsiderationTime = this.state.gameInfo.considerationTime; - if(currentConsiderationTime > 0) { + if (currentConsiderationTime > 0) { currentConsiderationTime -= this.considerationTimeDeduction * Math.pow(2, this.state.gameSpeed); currentConsiderationTime = currentConsiderationTime < 0 ? 0 : currentConsiderationTime; - if(currentConsiderationTime === 0 && this.state.gameSpeed < 2){ + if (currentConsiderationTime === 0 && this.state.gameSpeed < 2) { let gameInfo = deepCopy(this.state.gameInfo); - gameInfo.toggleFade = "fade-out"; - this.setState({gameInfo: gameInfo}); + gameInfo.toggleFade = 'fade-out'; + this.setState({ gameInfo: gameInfo }); } let gameInfo = deepCopy(this.state.gameInfo); gameInfo.considerationTime = currentConsiderationTime; - this.setState({gameInfo: gameInfo}); + this.setState({ gameInfo: gameInfo }); this.gameStateTimer(); - }else{ + } else { let gameInfo = this.generateNewState(); - if(gameInfo.gameStatus === "over") return; - gameInfo.gameStatus = "playing"; - if(this.state.gameInfo.toggleFade === "fade-out") { - gameInfo.toggleFade = "fade-in"; + if (gameInfo.gameStatus === 'over') return; + gameInfo.gameStatus = 'playing'; + if (this.state.gameInfo.toggleFade === 'fade-out') { + gameInfo.toggleFade = 'fade-in'; } - this.setState({gameInfo: gameInfo}, ()=>{ + this.setState({ gameInfo: gameInfo }, () => { // toggle fade in - if(this.state.gameInfo.toggleFade !== ""){ - setTimeout(()=>{ + if (this.state.gameInfo.toggleFade !== '') { + setTimeout(() => { let gameInfo = deepCopy(this.state.gameInfo); - gameInfo.toggleFade = ""; - this.setState({gameInfo: gameInfo}); + gameInfo.toggleFade = ''; + this.setState({ gameInfo: gameInfo }); }, 200); } }); @@ -178,25 +182,34 @@ class DoudizhuReplayView extends React.Component { const requestUrl = `${apiUrl}/tournament/replay?name=${name}&agent0=${agent0}&agent1=${agent1}&index=${index}`; // start full screen loading - this.setState({fullScreenLoading: true}); - axios.get(requestUrl) - .then(res => { + this.setState({ fullScreenLoading: true }); + axios + .get(requestUrl) + .then((res) => { res = res.data; + + // for test use + if (typeof res === 'string') res = JSON.parse(res.replaceAll("'", '"').replaceAll('None', 'null')); + console.log(res); + // init replay info this.moveHistory = res.moveHistory; let gameInfo = deepCopy(this.initGameState); - gameInfo.gameStatus = "playing"; + gameInfo.gameStatus = 'playing'; gameInfo.playerInfo = res.playerInfo; - gameInfo.hands = res.initHands.map(element => { + gameInfo.hands = res.initHands.map((element) => { return this.cardStr2Arr(element); }); // the first player should be landlord - gameInfo.currentPlayer = res.playerInfo.find(element=>{return element.role === "landlord"}).index; - if(this.gameStateHistory.length === 0){ // fix replay bug + gameInfo.currentPlayer = res.playerInfo.find((element) => { + return element.role === 'landlord'; + }).index; + if (this.gameStateHistory.length === 0) { + // fix replay bug this.gameStateHistory.push(gameInfo); } - this.setState({gameInfo: gameInfo, fullScreenLoading: false}, ()=>{ - if(this.gameStateTimeout){ + this.setState({ gameInfo: gameInfo, fullScreenLoading: false }, () => { + if (this.gameStateTimeout) { window.clearTimeout(this.gameStateTimeout); this.gameStateTimeout = null; } @@ -204,64 +217,116 @@ class DoudizhuReplayView extends React.Component { this.gameStateTimer(); }); }) - .catch(()=>{ - this.setState({fullScreenLoading: false}); + .catch(() => { + this.setState({ fullScreenLoading: false }); Message({ - message: "Error in getting replay data", - type: "error", - showClose: true + message: 'Error in getting replay data', + type: 'error', + showClose: true, }); - }) - }; + }); + } - runNewTurn(){ + runNewTurn() { this.gameStateTimer(); } - pauseReplay(){ - if(this.gameStateTimeout){ + pauseReplay() { + if (this.gameStateTimeout) { window.clearTimeout(this.gameStateTimeout); this.gameStateTimeout = null; } let gameInfo = deepCopy(this.state.gameInfo); - gameInfo.gameStatus = "paused"; + gameInfo.gameStatus = 'paused'; this.setState({ gameInfo: gameInfo }); } - resumeReplay(){ + resumeReplay() { this.gameStateTimer(); let gameInfo = deepCopy(this.state.gameInfo); - gameInfo.gameStatus = "playing"; + gameInfo.gameStatus = 'playing'; this.setState({ gameInfo: gameInfo }); } - changeGameSpeed(newVal){ - this.setState({gameSpeed: newVal}); + changeGameSpeed(newVal) { + this.setState({ gameSpeed: newVal }); } - gameStatusButton(status){ + gameStatusButton(status) { switch (status) { - case "ready": - return ; - case "playing": - return ; - case "paused": - return ; - case "over": - return ; + case 'ready': + return ( + + ); + case 'playing': + return ( + + ); + case 'paused': + return ( + + ); + case 'over': + return ( + + ); default: alert(`undefined game status: ${status}`); } } computeSingleLineHand(cards) { - if(cards === "pass"){ - return
Pass
- }else{ + if (cards === 'pass') { return ( -
-