bzr branch
http://gegoxaren.bato24.eu/bzr/vqdr/trunk
|
2
by Gustav Hartvigsson
* moved README.md to README |
1 |
Vala/Very Quick Dice Roller |
2 |
||
3 |
To see README about libvqdr, please see ./src/libvqdr/README |
|
4 |
||
5 |
VQDR will consist of two parts, the backend library, and the front end. |
|
6 |
||
7 |
The backend libray, libvqdr, provides the logic for parsing dice expression |
|
8 |
strings, and doing the calculations needed to perform the dice rolls. |
|
9 |
||
10 |
The frontend has yet to be written. |
|
11 |
||
12 |
BUILDING
|
|
13 |
------------
|
|
|
1
by Gustav Hartvigsson
* Initial code - far from done |
14 |
$ mkdir build |
15 |
$ cd build |
|
16 |
$ meson .. |
|
17 |
$ ninja |
|
|
2
by Gustav Hartvigsson
* moved README.md to README |
18 |
------------
|
19 |
||
20 |
DICE EXPRESSION SYNTAX |
|
21 |
||
22 |
A dice expression is simple. |
|
23 |
||
24 |
---- Basics ---- |
|
25 |
[n]d[m], [n]t[m] - [n] dices with [m] sides. |
|
26 |
[e1] [op] [e2] - Use operator [op] on expressions [e1] and [e2] |
|
27 |
||
28 |
[func]([e...]) - Use function [func] on the expression(s) [e...] |
|
29 |
----------------
|
|
30 |
||
31 |