├── .editorconfig ├── .gitattributes ├── .gitignore ├── CodeCoverage.runsettings ├── DiceRoller.ruleset ├── DiceRoller.sln ├── DiceRoller ├── AST │ ├── CompareOp.cs │ ├── Comparison.cs │ ├── ComparisonNode.cs │ ├── DiceAST.cs │ ├── FunctionNode.cs │ ├── GroupNode.cs │ ├── GroupPartialNode.cs │ ├── ImplicitComparisonNode.cs │ ├── LiteralNode.cs │ ├── MacroNode.cs │ ├── MathNode.cs │ ├── MathOp.cs │ ├── PartialNode.cs │ ├── RollNode.cs │ ├── RollPartialNode.cs │ ├── RollType.cs │ └── SentinelNode.cs ├── BuiltinFunctions.cs ├── BuiltinMacros.cs ├── Builtins │ ├── BuiltinFunctionRegistry.cs │ ├── ConditionalFunctions.cs │ ├── CritFunctions.cs │ ├── DiceMacros.cs │ ├── ExplodeFunctions.cs │ ├── KeepFunctions.cs │ ├── MathFunctions.cs │ ├── OutputFunctions.cs │ ├── RerollData.cs │ ├── RerollFunctions.cs │ ├── SortFunctions.cs │ └── SuccessFunctions.cs ├── Delegates.cs ├── Dice.csproj ├── DiceErrorCode.cs ├── DiceException.cs ├── DiceFunctionAttribute.cs ├── DiceGrammarLexer.g4 ├── DiceGrammarParser.g4 ├── DiceMacroAttribute.cs ├── DiceRoller.snk ├── DieFlags.cs ├── DieResult.cs ├── DieType.cs ├── ExtensionMethods.cs ├── FunctionBehavior.cs ├── FunctionContext.cs ├── FunctionExtra.cs ├── FunctionRegistry.cs ├── FunctionScope.cs ├── FunctionSlot.cs ├── FunctionTiming.cs ├── Grammar │ ├── DiceErrorListener.cs │ ├── DiceGrammarLexer.cs │ ├── DiceGrammarListener.cs │ └── Generated │ │ ├── DiceGrammarLexer.cs │ │ ├── DiceGrammarLexer.tokens │ │ ├── DiceGrammarParser.cs │ │ ├── DiceGrammarParser.tokens │ │ ├── DiceGrammarParserBaseListener.cs │ │ └── DiceGrammarParserListener.cs ├── Icon.png ├── InternalContext.cs ├── MacroContext.cs ├── MacroRegistry.cs ├── PbP │ └── RollPost.cs ├── Properties │ └── AssemblyInfo.cs ├── ResultType.cs ├── RollData.cs ├── RollResult.cs ├── Roller.cs ├── RollerConfig.cs ├── SpecialDie.cs ├── ValidateEventArgs.cs └── stylecop.json ├── LICENSE ├── README.md ├── TestDiceRoller ├── AST │ ├── CritShould.cs │ ├── ExplodeShould.cs │ ├── GroupNodeShould.cs │ ├── KeepShould.cs │ ├── MathNodeShould.cs │ ├── RerollShould.cs │ ├── RollNodeShould.cs │ ├── RollPartialNodeShould.cs │ ├── SortShould.cs │ └── SuccessShould.cs ├── BinarySerializationShould.cs ├── BuiltinMacrosShould.cs ├── DiceRoller.snk ├── FunctionRegistryShould.cs ├── Grammar │ ├── BasicRollShould.cs │ ├── CritRollShould.cs │ ├── ExplodeRollShould.cs │ ├── GlobalFunctionsShould.cs │ ├── InvalidExpressionsShould.cs │ ├── KeepRollShould.cs │ ├── RerollRollShould.cs │ ├── SortRollShould.cs │ └── SuccessRollShould.cs ├── MacroRegistryShould.cs ├── PbP │ └── RollPostShould.cs ├── Properties │ └── AssemblyInfo.cs ├── RollerShould.cs ├── TestBase.cs └── TestDiceRoller.csproj └── release.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/CodeCoverage.runsettings -------------------------------------------------------------------------------- /DiceRoller.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller.ruleset -------------------------------------------------------------------------------- /DiceRoller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller.sln -------------------------------------------------------------------------------- /DiceRoller/AST/CompareOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/CompareOp.cs -------------------------------------------------------------------------------- /DiceRoller/AST/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/Comparison.cs -------------------------------------------------------------------------------- /DiceRoller/AST/ComparisonNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/ComparisonNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/DiceAST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/DiceAST.cs -------------------------------------------------------------------------------- /DiceRoller/AST/FunctionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/FunctionNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/GroupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/GroupNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/GroupPartialNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/GroupPartialNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/ImplicitComparisonNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/ImplicitComparisonNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/LiteralNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/LiteralNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/MacroNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/MacroNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/MathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/MathNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/MathOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/MathOp.cs -------------------------------------------------------------------------------- /DiceRoller/AST/PartialNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/PartialNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/RollNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/RollNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/RollPartialNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/RollPartialNode.cs -------------------------------------------------------------------------------- /DiceRoller/AST/RollType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/RollType.cs -------------------------------------------------------------------------------- /DiceRoller/AST/SentinelNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/AST/SentinelNode.cs -------------------------------------------------------------------------------- /DiceRoller/BuiltinFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/BuiltinFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/BuiltinMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/BuiltinMacros.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/BuiltinFunctionRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/BuiltinFunctionRegistry.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/ConditionalFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/ConditionalFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/CritFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/CritFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/DiceMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/DiceMacros.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/ExplodeFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/ExplodeFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/KeepFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/KeepFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/MathFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/MathFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/OutputFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/OutputFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/RerollData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/RerollData.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/RerollFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/RerollFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/SortFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/SortFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Builtins/SuccessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Builtins/SuccessFunctions.cs -------------------------------------------------------------------------------- /DiceRoller/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Delegates.cs -------------------------------------------------------------------------------- /DiceRoller/Dice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Dice.csproj -------------------------------------------------------------------------------- /DiceRoller/DiceErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceErrorCode.cs -------------------------------------------------------------------------------- /DiceRoller/DiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceException.cs -------------------------------------------------------------------------------- /DiceRoller/DiceFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceFunctionAttribute.cs -------------------------------------------------------------------------------- /DiceRoller/DiceGrammarLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceGrammarLexer.g4 -------------------------------------------------------------------------------- /DiceRoller/DiceGrammarParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceGrammarParser.g4 -------------------------------------------------------------------------------- /DiceRoller/DiceMacroAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceMacroAttribute.cs -------------------------------------------------------------------------------- /DiceRoller/DiceRoller.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DiceRoller.snk -------------------------------------------------------------------------------- /DiceRoller/DieFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DieFlags.cs -------------------------------------------------------------------------------- /DiceRoller/DieResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DieResult.cs -------------------------------------------------------------------------------- /DiceRoller/DieType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/DieType.cs -------------------------------------------------------------------------------- /DiceRoller/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/ExtensionMethods.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionBehavior.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionContext.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionExtra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionExtra.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionRegistry.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionScope.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionSlot.cs -------------------------------------------------------------------------------- /DiceRoller/FunctionTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/FunctionTiming.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/DiceErrorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/DiceErrorListener.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/DiceGrammarLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/DiceGrammarLexer.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/DiceGrammarListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/DiceGrammarListener.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarLexer.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarLexer.tokens -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarParser.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarParser.tokens -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarParserBaseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarParserBaseListener.cs -------------------------------------------------------------------------------- /DiceRoller/Grammar/Generated/DiceGrammarParserListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Grammar/Generated/DiceGrammarParserListener.cs -------------------------------------------------------------------------------- /DiceRoller/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Icon.png -------------------------------------------------------------------------------- /DiceRoller/InternalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/InternalContext.cs -------------------------------------------------------------------------------- /DiceRoller/MacroContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/MacroContext.cs -------------------------------------------------------------------------------- /DiceRoller/MacroRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/MacroRegistry.cs -------------------------------------------------------------------------------- /DiceRoller/PbP/RollPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/PbP/RollPost.cs -------------------------------------------------------------------------------- /DiceRoller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DiceRoller/ResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/ResultType.cs -------------------------------------------------------------------------------- /DiceRoller/RollData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/RollData.cs -------------------------------------------------------------------------------- /DiceRoller/RollResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/RollResult.cs -------------------------------------------------------------------------------- /DiceRoller/Roller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/Roller.cs -------------------------------------------------------------------------------- /DiceRoller/RollerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/RollerConfig.cs -------------------------------------------------------------------------------- /DiceRoller/SpecialDie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/SpecialDie.cs -------------------------------------------------------------------------------- /DiceRoller/ValidateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/ValidateEventArgs.cs -------------------------------------------------------------------------------- /DiceRoller/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/DiceRoller/stylecop.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/README.md -------------------------------------------------------------------------------- /TestDiceRoller/AST/CritShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/CritShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/ExplodeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/ExplodeShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/GroupNodeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/GroupNodeShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/KeepShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/KeepShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/MathNodeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/MathNodeShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/RerollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/RerollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/RollNodeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/RollNodeShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/RollPartialNodeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/RollPartialNodeShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/SortShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/SortShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/AST/SuccessShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/AST/SuccessShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/BinarySerializationShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/BinarySerializationShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/BuiltinMacrosShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/BuiltinMacrosShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/DiceRoller.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/DiceRoller.snk -------------------------------------------------------------------------------- /TestDiceRoller/FunctionRegistryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/FunctionRegistryShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/BasicRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/BasicRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/CritRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/CritRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/ExplodeRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/ExplodeRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/GlobalFunctionsShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/GlobalFunctionsShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/InvalidExpressionsShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/InvalidExpressionsShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/KeepRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/KeepRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/RerollRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/RerollRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/SortRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/SortRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Grammar/SuccessRollShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Grammar/SuccessRollShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/MacroRegistryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/MacroRegistryShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/PbP/RollPostShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/PbP/RollPostShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestDiceRoller/RollerShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/RollerShould.cs -------------------------------------------------------------------------------- /TestDiceRoller/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/TestBase.cs -------------------------------------------------------------------------------- /TestDiceRoller/TestDiceRoller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/TestDiceRoller/TestDiceRoller.csproj -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skizzerz/DiceRoller/HEAD/release.ps1 --------------------------------------------------------------------------------