geoffstorm / DiceRoller

A dice rolling app aimed at tabletop gaming
MIT License
0 stars 0 forks source link

Allow users to roll dice #1

Closed geoffstorm closed 4 years ago

geoffstorm commented 4 years ago

The user should be able to choose how many dice they want to roll at once (from 1 - 999). This will be an editable text field, and should default to 1

The user should be able to choose how many sides are on each die (from 2 - 100). This will be an editable text field that has prompts for common dice (4, 6, 8, 10, 12, 20, 100), and should default to a 6-sided die.

There should be an option to add a constant value to the total die result (0 - 999), defaults to 0.

Once a user rolls a die, the bottom should display the sum of all die rolls, and a comma separated list of the individual roll values, enclosed within parenthesis. ex) "(1, 5, 4, 3, 6)"

geoffstorm commented 4 years ago

I added a simple adapter for the textview but it didn't seem to drop down excep after I already typed in a full number, so I got rid of it for now. Maybe can be looked at again after fixing Issue #7.

geoffstorm commented 4 years ago

I've decided the numeric restrictions don't make sense and that I don't want to use an autocomplete view, so closing this out as completed