Skip to content

Commit 133771d

Browse files
committed
Initial commit of the old rolldice source to github.
0 parents  commit 133771d

10 files changed

+987
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/rolldice.o
2+
/main.o
3+
/rolldice
4+
/rolldice.6.gz

COPYING

+340
Large diffs are not rendered by default.

CREDITS

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
John Anderson - For making me write the program in the first place, after I
2+
told him I needed a project to work with C, and then
3+
complained about there not being any good free dice rolling
4+
programs...
5+
6+
[email protected] - For helping me see that my limits were wrong,
7+
and that MAXSHORT was the way ;)
8+
9+
[email protected] - For looking at my code and giving me suggestions for better
10+
random number generation (the only suggestion taken, so far,
11+
is the addition of /dev/(u)random... watch this space for
12+
news! :)
13+
14+
Adam Northern - For aiding and abetting with the above "credit", now
15+
changed due to a change of heart on part of the
16+
upstream programmer (me :)
17+
18+
[email protected] - For helping with the changelog entry for v1.2 which
19+
is, again, changed :)

Changelog

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
v1.11 - 01 Feb 2010
2+
- Only updating URLs/email addresses. No bugfixes in this revision,
3+
though I'll get around to soon.
4+
5+
v1.10 - 25 Nov 2001
6+
- Forgot to add a couple of entries to the changelogs, I see. Added them
7+
back in.
8+
- Truthfully, eventually I should rewrite this code completely, as I did
9+
originally write it before I really knew how one should write code like
10+
this. Perhaps over the winter break.
11+
- This version fixes the problem of urandom always being opened, thanks
12+
to initializing the (u)random file before reading in the command line
13+
options. Fixed that, plus replaced my option parsing code with a use
14+
of getopt_long().
15+
16+
v1.9 - 10 Mar 2001
17+
- Never checked result of parse_string for unsuccessful parses. Fixed.
18+
19+
v1.8 - 17 Oct 1999
20+
- Segfaulted when one didn't specify how many dice to roll (should default
21+
to one). Fixed.
22+
23+
v1.7 - 28 Mar 1999
24+
- Changed dice string parser code, now more to my liking :)
25+
- Added ability to use multiple dice strings
26+
27+
v1.6 - 27 Mar 1999
28+
- Added ability to drop a number of lowest die rolls and made reading
29+
from /dev/urandom the default. In fact, there is no longer a method
30+
that uses the rand() function. If adding this feature back is needed,
31+
then just contact me and I'll work it back in.
32+
33+
v1.5 - 10 Mar 1999
34+
- Added ability to print out each individual die roll and added the long
35+
version of each of the options
36+
37+
v1.4 - 12 Feb 1999
38+
- Added ability to use "d#" type constructions and "d%" for percentages
39+
40+
v1.3 - 27 Jan 1999
41+
- Fixed documentation, both in getting rid of childish flames and in
42+
correcting the dates in the changelog (and anywhere else they might
43+
be wrong :)
44+
45+
v1.2 - 27 Jan 1999
46+
- added /dev/(u)random code
47+
48+
v1.1 - 20 Jan 1999
49+
- Fixed bug involving overflowing and underflowingi because of
50+
too large or negative dice attributes
51+
52+
v1.0 - 19 Jan 1999
53+
- Released rolldice

Makefile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Edited for Debian GNU/Linux
2+
DESTDIR =
3+
BIN = $(DESTDIR)/usr/games
4+
MAN = $(DESTDIR)/usr/share/man/man6
5+
CC = gcc
6+
OBJFILES = main.o rolldice.o
7+
LIBS = -lm
8+
INCLUDES = rolldice.h
9+
10+
all: rolldice
11+
12+
rolldice: $(OBJFILES)
13+
$(CC) $(OBJFILES) -g -o rolldice $(LIBS)
14+
15+
main.o: main.c $(INCLUDES)
16+
$(CC) -g -c main.c
17+
18+
rolldice.o: rolldice.c $(INCLUDES)
19+
$(CC) -g -c rolldice.c
20+
21+
install: $(EXECFILES)
22+
install -d $(BIN) $(MAN)
23+
install ./rolldice $(BIN)
24+
strip $(BIN)/rolldice
25+
gzip -9 -c rolldice.6 > rolldice.6.gz
26+
install -m644 rolldice.6.gz $(MAN)
27+
28+
clean:
29+
rm -f ./rolldice $(OBJFILES) rolldice.6.gz

README

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
rolldice is just a simple program that rolls an amount of virtual dice of
2+
any size. Well, technically, all the attributes of the dice can't exceed
3+
MAXSHORT, but I think it suffices for any normal FRPG.
4+
5+
rolldice is a simple program, trying to uphold the UNIX philosophy of doing
6+
one thing, and doing that thing well. However, this is not a claim that
7+
rolldice cannot be improved, only that I am satisfied with it, as of right
8+
now... of course, any improvements will be accepted gladly!
9+
10+
1999.1.27
11+
12+
I've had a request to add /dev/(u)random as random number input, and so
13+
I've added the capability to use the random number devices as random input.
14+
The -u option gives you /dev/urandom, and the -r /dev/random.
15+
16+
1999.2.12
17+
18+
I know I've been a little late in adding some new features, and I apologize,
19+
but I'm sure you understand, college and all... anyway, there are two new
20+
features in this version of rolldice: A default for the number of dice to
21+
roll (so that strings like "d6" are possible now), and the ability to use
22+
"d%" as a percentage roll (rolls d100). You can also use strings like
23+
"#d%" to roll # percentage dice at once.
24+
25+
1999.3.10
26+
27+
New in this release is the ability to print out each separate die roll.
28+
When using this feature, you get the following output:
29+
30+
[sstrickl@midkemia]:~$ rolldice -s 3d6
31+
Roll #1: 2 4 2 = 8
32+
[sstrickl@midkemia]:~$ rolldice -s 2x3d6
33+
Roll #1: 5 2 6 = 13
34+
Roll #2: 1 6 2 = 9
35+
36+
Easy? I thought so! :)
37+
38+
1999.3.27
39+
40+
I still haven't put in the option to allow multiple dice strings on the
41+
command line. However, I *have* added the ability to drop a number of
42+
lowest die rolls. This is for all those other methods of rolling characters
43+
under AD&D, and I'm sure other gaming systems use this sometimes ;)
44+
45+
Also, /dev/urandom has been made the default random number generator, and
46+
the use of rand() has been dropped. If you wish this method to be added
47+
back to rolldice, just contact me and I'll do so.
48+
49+
1999.3.28
50+
51+
I made the parser code much cleaner... this won't really affect the use of
52+
the program, except now you can kinda shuffle sections around. They will
53+
still be resolved in the same order as before, however, so:
54+
55+
[sstrickl@midkemia]:~$ rolldice -s 3d6-1*10
56+
57+
results in:
58+
59+
Roll #1: (3 5 2) * 10 - 1 = 99
60+
61+
not:
62+
63+
Roll #1: ((3 5 2) - 1) * 10 = 90
64+
65+
It's not quite that smart, sadly.
66+
67+
And also, finally, at long last, I've added the ability to use multiple dice
68+
strings! Woohoo! So this means that unless I find or am asked to add a new
69+
method to the dice string itself, this might be the last release of diceroll,
70+
unless I actually do rewrite it to make it neater, find a cleaner parser
71+
implementation, or just get bored and decide to add something else...
72+
73+
2010.2.1
74+
75+
Changing the URL/email at the bottom of this file, both of which are outdated
76+
since I left Georgia Tech.
77+
78+
2012.5.4
79+
80+
Cleaning up this README a bit (or destroying history, however you want to
81+
look at it) to get it ready for posting at Github. Maybe one day I'll come
82+
back to it and clean it up as much as it needs, but I'm not optimistic.

main.c

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
/*
2+
* main.c - v1.11 - 01 Feb 2010
3+
* (c) Stevie Strickland, 1999-2010
4+
*
5+
* This program has been placed under the GPL. Any bugfixes or enhancements
6+
* will be greatly appreciated :)
7+
*
8+
* Stevie Strickland - [email protected]
9+
*/
10+
11+
#include "rolldice.h"
12+
13+
/* The version number :) */
14+
static const int MAJOR_VERSION = 1;
15+
static const int MINOR_VERSION = 10;
16+
17+
/* The long options for this program in an struct option array */
18+
struct option long_opts[] = {{"help", 0, NULL, 'h'},
19+
{"version", 0, NULL, 'v'},
20+
{"random", 0, NULL, 'r'},
21+
{"urandom", 0, NULL, 'u'},
22+
{"separate", 0, NULL, 's'}};
23+
24+
/* For getopt usage */
25+
extern int optind;
26+
27+
/* Stores the random number file to use */
28+
rand_type rand_file = UNDEF;
29+
30+
/* Should we print out the separate results of the dice rolls or not? */
31+
static int print_separate;
32+
33+
/*
34+
* print_usage() - Prints the usage for rolldice
35+
*
36+
* Parameters: Value with which to exit program
37+
* Returns: none
38+
*/
39+
static void print_usage(int exitval) {
40+
fprintf(stderr, "Usage: rolldice [options] <dice string>\n");
41+
fprintf(stderr, "For dice string format and options, ");
42+
fprintf(stderr, "see rolldice(6).\n");
43+
exit(exitval);
44+
}
45+
46+
/*
47+
* print_version() - Prints the version number
48+
*
49+
* Parameters: none
50+
* Returns: none
51+
*/
52+
static void print_version() {
53+
printf("rolldice, v%d.%d\n", MAJOR_VERSION, MINOR_VERSION);
54+
printf("Written by Stevie Strickland ([email protected])\n");
55+
exit(EXIT_SUCCESS);
56+
}
57+
58+
/* print_rolls() - Prints the rolls, either just the totals or the
59+
* separate rolls, also.
60+
*
61+
* Parameters: Dice string with which to calculate dice rolls
62+
* Returns: None
63+
*/
64+
void print_rolls(int *dice_nums) {
65+
int i, j, k, temp_int, temp_index, temp_total;
66+
int* temp_roll;
67+
68+
if(dice_nums == NULL) {
69+
fprintf(stderr, "Problems with the dice string, either malformed "
70+
"or numbers are too large,\nso quitting!\n");
71+
exit(EXIT_FAILURE);
72+
}
73+
74+
if((temp_roll = malloc(sizeof(*temp_roll) * dice_nums[NUM_DICE])) == NULL) {
75+
perror("rolldice");
76+
exit(EXIT_FAILURE);
77+
}
78+
79+
for(i = 0; i < dice_nums[NUM_ROLLS]; i++) {
80+
temp_total = 0;
81+
if(print_separate) printf("Roll #%d: (", i+1);
82+
for(j = 0; j < dice_nums[NUM_DICE]; j++) {
83+
temp_roll[j] = rolldie(dice_nums[NUM_SIDES]);
84+
if(print_separate) printf("%d ", temp_roll[j]);
85+
temp_total += temp_roll[j];
86+
}
87+
for(j = 0; j < dice_nums[NUM_DROP]; j++) {
88+
temp_int = MAXSHORT;
89+
for(k = 0; k < dice_nums[NUM_DICE]; k++)
90+
if(temp_int > temp_roll[k]) {
91+
temp_int = temp_roll[k];
92+
temp_index = k;
93+
}
94+
if(print_separate) printf("- %d ", temp_int);
95+
temp_total -= temp_int;
96+
temp_roll[temp_index] = MAXSHORT;
97+
}
98+
if(print_separate) printf(") ");
99+
if(dice_nums[MULTIPLIER] != 1) {
100+
if(print_separate) printf("* %d ", dice_nums[MULTIPLIER]);
101+
temp_total *= dice_nums[MULTIPLIER];
102+
}
103+
if(dice_nums[MODIFIER]) {
104+
if(print_separate) printf("+ %d ", dice_nums[MODIFIER]);
105+
temp_total += dice_nums[MODIFIER];
106+
}
107+
if(print_separate) printf("= ");
108+
printf("%d ", temp_total);
109+
if(print_separate) printf("\n");
110+
}
111+
if(!print_separate) printf("\n");
112+
}
113+
114+
int main(int argc, char **argv) {
115+
116+
int c, index, *totals, *dice_nums;
117+
118+
dice_nums = NULL;
119+
120+
while((c = getopt_long(argc, argv, "hvrus", long_opts, NULL)) != -1) {
121+
switch(c) {
122+
case 'h':
123+
print_usage(EXIT_SUCCESS); break;
124+
case 'v':
125+
print_version(); break;
126+
case 'r':
127+
if(rand_file == URANDOM) {
128+
fprintf(stderr, "Choose either '-r' or '-u', please.\n");
129+
return EXIT_FAILURE;
130+
}
131+
rand_file = RANDOM; break;
132+
case 'u':
133+
if(rand_file == RANDOM) {
134+
fprintf(stderr, "Choose either '-r' or '-u', please.\n");
135+
return EXIT_FAILURE;
136+
}
137+
rand_file = URANDOM; break;
138+
case 's':
139+
print_separate = 1; break;
140+
}
141+
}
142+
143+
init_random(rand_file);
144+
145+
if ( argc < 2 ) {
146+
print_usage(EXIT_FAILURE);
147+
}
148+
149+
for(index = optind; argv[index] != NULL; index++) {
150+
dice_nums = parse_string( argv[index] );
151+
if ( dice_nums == NULL ) {
152+
fprintf(stderr, "%s: Failure in getting dice attributes\n", argv[0]);
153+
return EXIT_FAILURE;
154+
}
155+
print_rolls(dice_nums);
156+
free(dice_nums);
157+
}
158+
159+
return EXIT_SUCCESS;
160+
}

0 commit comments

Comments
 (0)