Skip to content

Commit f59f377

Browse files
committedMay 3, 2018
Initial commit
0 parents  commit f59f377

File tree

6 files changed

+172
-0
lines changed

6 files changed

+172
-0
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
/target
3+
**/*.rs.bk

‎Cargo.lock

+69
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "roll"
3+
version = "0.1.0"
4+
authors = ["deciduously <github@deciduously.com>"]
5+
6+
[dependencies]
7+
8+
rand = "*"

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Ben Lovy
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# roll
2+
CLI interface to roll dice.
3+
## Usage
4+
`roll 1d6`, `roll 7d83`, whatever floats your boat.

‎src/main.rs

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
// No args, a REPL-like environemnt which spits out your rolls.
2+
// With an arg, just outputs
3+
4+
extern crate rand;
5+
6+
use std::{env, fmt, str::FromStr};
7+
use rand::Rng;
8+
9+
#[derive(Debug)]
10+
struct Roll {
11+
sides: u32,
12+
repeat: u32,
13+
}
14+
15+
#[derive(Debug)]
16+
struct Outcome {
17+
total: u32,
18+
rolls: Vec<u32>
19+
}
20+
21+
impl Outcome {
22+
fn new(total: u32, rolls: Vec<u32>) -> Outcome {
23+
Outcome { total, rolls }
24+
}
25+
}
26+
27+
impl fmt::Display for Outcome {
28+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
29+
write!(f, "{:?}\n{:?}", self.total, self.rolls)
30+
}
31+
}
32+
33+
fn parse_roll(s: &str) -> Result<Roll, String> {
34+
let parts: Vec<&str> = s.split('d').collect();
35+
36+
if parts.len() != 2 {
37+
Err("Not properly formatted".to_owned())
38+
} else {
39+
Ok(Roll {
40+
sides: u32::from_str(parts[1]).unwrap(),
41+
repeat: u32::from_str(parts[0]).unwrap(),
42+
})
43+
}
44+
}
45+
46+
fn execute_roll(r: Roll) -> Outcome {
47+
let mut ret = Vec::new();
48+
for _ in 1..(r.repeat + 1) {
49+
let res = rand::thread_rng().gen_range(1, r.sides + 1);
50+
ret.push(res);
51+
}
52+
let total = ret.iter().fold(0, |acc, x| x + acc);
53+
Outcome::new(total, ret)
54+
}
55+
56+
// TODO return a struct with the total and each roll
57+
// and impl display
58+
fn roll(s: &str) -> Outcome {
59+
execute_roll(parse_roll(s).unwrap())
60+
}
61+
62+
fn main() {
63+
if let Some(arg1) = env::args().nth(1) {
64+
let result = roll(&arg1);
65+
println!("{}", result)
66+
}
67+
}

0 commit comments

Comments
 (0)
Please sign in to comment.