mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 14:20:43 -05:00
feat: tictactoe frontend
This commit is contained in:
parent
1fcb68f4e4
commit
a01c1a8e87
2 changed files with 49 additions and 0 deletions
0
tictactoe/index.html
Normal file
0
tictactoe/index.html
Normal file
49
tictactoe/tictactoe.js
Normal file
49
tictactoe/tictactoe.js
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
// TODO
|
||||||
|
/*
|
||||||
|
Simple TTT game.
|
||||||
|
|
||||||
|
User chooses R,P,S and then the computers answer should be randomly generated
|
||||||
|
from those 3 options
|
||||||
|
|
||||||
|
method to compare users answer vs computers
|
||||||
|
rock > scissors && rock < paper
|
||||||
|
scissors > paper && scissors < rock
|
||||||
|
pape > rock && paper < scissors
|
||||||
|
repeat if user_ans == computer_ans
|
||||||
|
|
||||||
|
|
||||||
|
if either player wins log output
|
||||||
|
else if its a tie , it should prompt the user to pick a new answer
|
||||||
|
until a winner is picked
|
||||||
|
*/
|
||||||
|
|
||||||
|
let rpc = ["rock", "paper", "scissors"]
|
||||||
|
|
||||||
|
let usersChoice = () => {
|
||||||
|
let userChoice = prompt("Rock, Paper, or Scissors? ");
|
||||||
|
return userChoice.toLocaleLowerCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
let getCPUChoice = () => {
|
||||||
|
// Generate a random number between 0 and 2
|
||||||
|
let choice = Math.floor(Math.random() * 3);
|
||||||
|
|
||||||
|
return rpc[choice];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getResults(playerSelection, cpuSelection) {
|
||||||
|
if (playerSelection === cpuSelection) {
|
||||||
|
return "tie";
|
||||||
|
} else if (playerSelection == "rock" && cpuSelection == "scissors" ||
|
||||||
|
playerSelection == "paper" && cpuSelection == "rock" ||
|
||||||
|
playerSelection == "scissors" && cpuSelection == "paper") {
|
||||||
|
return `You Win! ${playerSelection} beats ${cpuSelection}`;
|
||||||
|
} else {
|
||||||
|
return `You Lose! ${cpuSelection} beats ${playerSelection}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uc = usersChoice();
|
||||||
|
cpc = getCPUChoice();
|
||||||
|
console.log(uc, cpc);
|
||||||
|
console.log(getResults(uc, cpc));
|
Loading…
Reference in a new issue