What I’m trying to do is simulate a simple paper, rock, scissors game within a page, where one player selects r/p/s with radio buttons, submits his choice, and player 2 does the same.
I have no doubt there are multiple problems to this code, but I see really weird stuff returned whenever I try and run the function that resolves the rock/paper/scissors. I always get a true on the:
else if (player1Choice("Rock") && player2Choice("Scissors")) {
$("resultOutput").value = "Player 1s Rock beats Player 2s Scissors";
}
I get this back as my result every time. I’ve stared at the function so long I’m probably just blind to an obvious resolution at this point.
// create our $() shortcut function for easily retrieving elements by id
var $ = function(id) {
return document.getElementById(id);
}
//function executed on page load
window.onload = function() {
//clear any previous values
document.forms[0].reset();
//store value from player1Weapon radio choice with the player1Choice function
$("player1Submit").onclick = player1Choice;
//store value from player1Weapon radio choice with the player2Choice function
$("player2Submit").onclick = player2Choice;
//assign the fight button to run the fightCrunch function to determine the winner
$("fight").onclick = fightCrunch;
}
var player1Choice = function(x){
var a = "Paper";
var b = "Rock";
var c = "Scissors";
//the html has several radio buttons with id's of "player1Paper", etc. the $ function is to get the id name, and then I'm doing if, else ifs to see which on is checked.
if ($("player1Paper").checked) {
return a;
}
else if ($("player1Rock").checked) {
return b;
}
else if ($("player1Scissors").checked) {
return c;
}
else {
alert("Player 1, you need to pick a crude instrument of violence first");
}
};
var player2Choice = function(y){
var d = "Paper";
var e = "Rock";
var f = "Scissors";
//var d = $("player2Paper").value;
//var e = $("player2Rock").value;
//var f = $("player2Scissors").value;
if ($("player2Paper").checked) {
return d;
}
else if ($("player2Rock").checked) {
return e;
}
else if ($("player2Scissors").checked) {
return f;
}
else {
alert("Player 2, you need to pick a crude instrument of violence first");
}
};
var fightCrunch = function(){
//The next few lines are commented out because the if gets hung up on this part, this always comes back as true no matter what I do with the previous functions.
//if (player1Choice || player2Choice == undefined) {
//alert("Both players need to select and submit a weapon of choice before a winner is determined");
//}
if (player1Choice && player2Choice == "Rock") {
$("resultOutput").value = "Both players chose Rock, which results in a stalemate";
}
else if (player1Choice && player2Choice == "Paper") {
$("resultOutput").value = "Both players chose Paper, which results in a stalemate";
}
else if (player1Choice && player2Choice == "Scissors") {
$("resultOutput").value = "Both players chose Scissors, which results in a stalemate";
}
else if (player1Choice("Rock") && player2Choice("Scissors")) {
$("resultOutput").value = "Player 1s Rock beats Player 2s Scissors";
}
else if (player1Choice("Rock") && player2Choice("Paper")) {
$("resultOutput").value = "Player 2s Paper beats Player 1s Rock";
}
else if (player1Choice("Paper") && player2Choice("Rock")) {
$("resultOutput").value = "Player 1s Paper beats Player 2s Rock";
}
else if (player1Choice("Paper") && player2Choice("Scissors")) {
$("resultOutput").value = "Player 2s Scissors beats Player 1s Paper";
}
else if (player2Choice("Paper").value && player1Choice("Scissors")) {
$("resultOutput").value = "Player 1s Scissors beats Player 2s Paper";
}
else if (player2Choice("Rock").value && player1Choice("Scissors")) {
$("resultOutput").value = "Player 2s Rock beats Player 1s Scissors";
}
else {
alert("something is wrong here");
}
}
Your code has quite a few problems. But the problem you are asking about stems from the way you are doing comparison.
You cannot do this:
What that meant is essentially:
Instead, you want to write it this way (but it will still not work because of many other errors):
Not only do you have less comparison operations, you also save many lines of code!
Do note that you have additional typos in the last 2 comparisons where you added “.value” erroneously.
On top of that, you might want to note that the functions
player1Choiceandplayer2Choiceare not variables. You have specified for them to be event handlers for click events. The values they return go no where and will not be received by thefightcrunchfunction.I do not really want to spoil your fun with making this program, but if you do give up, you can see corrected and functional code here (it is tabbed to the right in case you do not want to see it):
Good luck!
Edit: Using return and global variables