/*
* This file is part of dicepwgen
*
* Copyright (C) 2015 T.v.Dein.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
* You can contact me by mail: .
*/
#include "tossing.h"
unsigned char *toss(int count, int dicenum) {
/*
toss dices. if the global humandice is enabled (option -t),
then ask the human to toss dices and enter the numbers interactively.
otherwise generate tosses from /dev/random.
*/
FILE *RAND;
int i;
int pos = 0;
uint8_t onedice;
unsigned char *tosses = NULL;
unsigned char *rand = NULL;
size_t len;
ssize_t linelen;
if(humantoss) {
char *line = NULL;
char digit[2];
digit[1] = '\0';
RETRY:
fprintf(stdout, "dice %d - enter 5 digits, each between 1-6: ", dicenum+1);
linelen = getline(&line, &len, stdin);
tosses = malloc((size_t)count);
if(linelen < 6) {
fprintf(stderr, "error: please enter 5 digits!\n");
goto RETRY;
}
for(i=0; i 6) {
fprintf(stderr, "error: please enter only digits between 1 and 6!\n");
goto RETRY;
}
tosses[i] = onedice;
}
free(line);
}
else {
rand = malloc(RLEN);
if((RAND = fopen("/dev/urandom", "rb")) == NULL) {
perror("Could not open /dev/urandom");
exit(1);
}
if(fread(rand, RLEN, 1, RAND) != 1) {
perror("Could not read from /dev/urandom");
exit(1);
}
fclose(RAND);
tosses = malloc((size_t)count);
for(i=0; i= 1 && onedice <= 6) {
tosses[pos] = onedice;
pos++;
}
else
continue;
if(pos == count)
break;
}
free(rand);
}
debug("random rolled dices: %d %d %d %d %d",
tosses[0], tosses[1], tosses[2], tosses[3], tosses[4]);
return tosses;
}
int rand_lim(int limit) {
/*
return a random number in the range [0..limit)
*/
int divisor = RAND_MAX/limit;
int retval;
do {
retval = rand() / divisor;
} while (retval == limit);
return retval;
}