A set of classes for parsing, evaluating, and formatting die roll strings.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
achmizs a8d4fdf24b Update README.md 10年前
LICENSE Create LICENSE 10年前
README.md Update README.md 10年前
SA_DB_ErrorDescriptions.plist Initial commit. 10年前
SA_DB_StringFormatRules.plist Initial commit. 10年前
SA_DiceBag.h Add license information 10年前
SA_DiceBag.m Add license information 10年前
SA_DiceBot.h Add license information 10年前
SA_DiceBot.m Add license information 10年前
SA_DiceErrorHandling.h Add license information 10年前
SA_DiceErrorHandling.m Add license information 10年前
SA_DiceEvaluator.h Add license information 10年前
SA_DiceEvaluator.m Add license information 10年前
SA_DiceExpressionStringConstants.h Add license information 10年前
SA_DiceExpressionStringConstants.m Add license information 10年前
SA_DiceFormatter.h Add license information 10年前
SA_DiceFormatter.m Add license information 10年前
SA_DiceParser.h Add license information 10年前
SA_DiceParser.m Add license information 10年前

README.md

SA_Dice

A set of classes for parsing, evaluating, and formatting die roll strings.

A “die roll string” is a string that contains an expression that defines operations that (usually) involve the rolling of dice, and possibly various operations on the results of those die rolls. (See “What Are Dice?” and “What’s This For?”, below, for more info. See the header files for each of the classes for more detailed documentation.)

Examples

  • “1d6”
    • Roll a single six-sided die. This expression evaluates to the result of the roll.
  • “1d20+5”
    • Roll a single twenty-sided die; add 5 to the rolled number and return.
  • “4d6”
    • Roll four six-sided dice; add up the individual rolls and return the total.
  • “5d6-2d20+5”
    • Roll five six-sided dice and add up the rolls; roll two twenty-sided dice, add up the two rolls, and subtract from the previous total; add 5 to the result; return.

What Are Dice?

In real life, a die (https://en.wikipedia.org/wiki/Dice) is a small object, usually shaped as a regular polyhedron, on each face of which is inscribed some sort of symbol. When tossed on a flat surface, a die lands in such a way as to have one face facing up, and therefore showing one of the symbols. Dice are used in gambling, tabletop gaming, etc.

The “digital” implementation of a die is a random number generator, configured (usually) to generate integers in a contiguous interval [1, n] (where n is the number of faces the die has), with a uniform distribution over the entire interval. (I say “usually” because some unusual sorts of dice exist, such as Fudge dice (https://en.wikipedia.org/wiki/Fudge_(role-playing_game_system)#Fudge_dice), but those are basically variations on the same theme.)

What’s This For?

The most common use is “dice bots” and “dice rollers”, programs designed to simulate the rolling of physical dice. Such programs are often used when playing certain sorts of games, such as tabletop roleplaying games (https://en.wikipedia.org/wiki/Tabletop_role-playing_game) on the internet. Other uses exist as well.

SA_Dice is copyright © 2016 Said Achmiz. It is licensed under the MIT license. See the file “LICENSE” for more information.