mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-22 00:36:30 -05:00
Now allowing for 6 or 7 dice per roll as well.
This commit is contained in:
parent
5217e56615
commit
1e33d1a81e
1 changed files with 13 additions and 2 deletions
15
main.js
15
main.js
|
@ -4,6 +4,11 @@
|
||||||
|
|
||||||
var Diceware = {};
|
var Diceware = {};
|
||||||
|
|
||||||
|
//
|
||||||
|
// How many dice per roll?
|
||||||
|
//
|
||||||
|
Diceware.num_dice_per_roll = 5;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return true if we have a function that returns cryptographically random
|
* Return true if we have a function that returns cryptographically random
|
||||||
|
@ -372,7 +377,7 @@ Diceware.rollDiceHandler = function(e) {
|
||||||
// Make our dice rolls
|
// Make our dice rolls
|
||||||
//
|
//
|
||||||
var num_dice = jQuery(".dice_button.active").html();
|
var num_dice = jQuery(".dice_button.active").html();
|
||||||
var num_passwords = Number(Math.pow(6, (5 * num_dice)));
|
var num_passwords = Number(Math.pow(6, (Diceware.num_dice_per_roll * num_dice)));
|
||||||
var passphrase = new Array();
|
var passphrase = new Array();
|
||||||
|
|
||||||
var rolls = new Array();
|
var rolls = new Array();
|
||||||
|
@ -382,7 +387,7 @@ Diceware.rollDiceHandler = function(e) {
|
||||||
//
|
//
|
||||||
// Roll 5 dice for 7,776 words.
|
// Roll 5 dice for 7,776 words.
|
||||||
//
|
//
|
||||||
roll.dice = Diceware.rollDice(5);
|
roll.dice = Diceware.rollDice(Diceware.num_dice_per_roll);
|
||||||
roll.word = Diceware.get_word(wordlist, roll.dice.value);
|
roll.word = Diceware.get_word(wordlist, roll.dice.value);
|
||||||
rolls.push(roll);
|
rolls.push(roll);
|
||||||
passphrase.push(roll.word);
|
passphrase.push(roll.word);
|
||||||
|
@ -496,6 +501,8 @@ Diceware.extractGetData = function(get_data) {
|
||||||
*/
|
*/
|
||||||
Diceware.go = function() {
|
Diceware.go = function() {
|
||||||
|
|
||||||
|
console.log("Thanks for checking out my code! You can find the Git repo at https://github.com/dmuth/diceware");
|
||||||
|
|
||||||
//
|
//
|
||||||
// Handler to mark the clicked number of dice button as active.
|
// Handler to mark the clicked number of dice button as active.
|
||||||
//
|
//
|
||||||
|
@ -526,9 +533,12 @@ Diceware.go = function() {
|
||||||
if (get_data["dice"]) {
|
if (get_data["dice"]) {
|
||||||
if (get_data["dice"] >= 5 && get_data["dice"] <= 7) {
|
if (get_data["dice"] >= 5 && get_data["dice"] <= 7) {
|
||||||
dice = get_data["dice"];
|
dice = get_data["dice"];
|
||||||
|
Diceware.num_dice_per_roll = dice;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log("Rolling " + Diceware.num_dice_per_roll + " dice per roll");
|
||||||
|
|
||||||
var js = "./wordlist/wordlist-" + dice + "-dice.js";
|
var js = "./wordlist/wordlist-" + dice + "-dice.js";
|
||||||
console.log("Looks like we're loading '" + js + "'!");
|
console.log("Looks like we're loading '" + js + "'!");
|
||||||
|
|
||||||
|
@ -556,6 +566,7 @@ Diceware.go = function() {
|
||||||
var id="#button-dice-" + num;
|
var id="#button-dice-" + num;
|
||||||
jQuery(id).click();
|
jQuery(id).click();
|
||||||
|
|
||||||
|
console.log("Debug mode enabled, auto-rolling " + num + " times!");
|
||||||
jQuery("#roll_dice").click();
|
jQuery("#roll_dice").click();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue