/** * For each regular expression below: * - Doc comments include the details of each capture group in the regex. * - Regex comments provide a little overview of the regex, where * [...] denotes optional clause, <...> denotes capture group. */ /** * Regular expression for `Take ingredient from refrigerator` op * Capture groups: * 1. **Ingredient name**: string with letters and spaces */ export const TakeFromFridgeRegex = /** */ /^Take ([a-zA-Z ]+?) from(?: the)? refrigerator$/; /** * Regular expression for `Put ingredient into nth bowl` op * Capture groups: * 1. **Ingredient name**: string with letters and spaces * 2. **Mixing bowl index** (optional): integer */ export const PutInBowlRegex = /** [ ] */ /^Put(?: the)? ([a-zA-Z ]+?) into(?: the)?(?: (\d+)(?:nd|rd|th|st))? mixing bowl$/; /** * Regular expression for `Fold ingredient into nth bowl` op * Capture groups: * 1. **Ingredient name**: string with letters and spaces * 2. **Mixing bowl index** (optional): integer */ export const FoldIntoBowlRegex = /** [ ] */ /^Fold(?: the)? ([a-zA-Z ]+?) into(?: the)?(?: (\d+)(?:nd|rd|th|st))? mixing bowl$/; /** * Regular expression to match the four main arithmetic operations in Chef. * Capture groups: * 1. **Operation name**: `"Add" | "Remove" | "Combine" | "Divide"` * 2. **Ingredient name**: string with letters and spaces * 3. **Proverb** (optional): `"to" | "into" | "from"` * 4. **Mixing bowl index** (optional): integer */ export const ArithmeticOpRegex = /** [ [ ] ] */ /^(Add|Remove|Combine|Divide) ([a-zA-Z ]+?)(?: (to|into|from)(?: the)?(?: (\d+)(?:nd|rd|th|st))? mixing bowl)?$/; /** * Regular expression for the `Add dry ingredients ...` op. * Capture groups: * 1. **Mixing bowl index** (optional): integer */ export const AddDryIngsOpRegex = /** [ [ ] ] */ /^Add dry ingredients(?: to(?: the)?(?: (\d+)(?:nd|rd|th|st))? mixing bowl)?$/; /** * Regular expression for the `Liquefy contents` op * Capture groups: * 1. **Mixing bowl index** (optional): integer */ export const LiquefyBowlRegex = /** [ ] */ /^Liquefy(?: the)? contents of the(?: (\d+)(?:nd|rd|th|st))? mixing bowl$/; /** * Regular expression for the `Liquefy ingredient` op * Capture groups: * 1. **Ingredient name**: string with letters and spaces */ export const LiquefyIngRegex = /** */ /^Liquefy(?: the)? ([a-zA-Z ]+?)$/; /** * Regular expression to match the `Stir for minutes` op. * Capture groups: * 1. **Mixing bowl index** (optional): integer * 2. **Number of mins**: integer */ export const StirBowlRegex = /** [ [ ]? ]? */ /^Stir(?: the(?: (\d+)(?:nd|rd|th|st))? mixing bowl)? for (\d+) minutes?$/; /** * Regular expression to match the `Stir into [nth] mixing bowl` op. * Capture groups: * 1. **Ingredient name**: string with letters and spaces * 2. **Mixing bowl index** (optional): integer */ export const StirIngredientRegex = /** [ ] */ /^Stir ([a-zA-Z ]+?) into the(?: (\d+)(?:nd|rd|th|st))? mixing bowl$/; /** * Regular expression to match the `Mix [the [nth] mixing bowl] well` op. * Capture groups: * 1. **Mixing bowl index** (optional): integer */ export const MixBowlRegex = /** [ [ ]? ]? */ /^Mix(?: the(?: (\d+)(?:nd|rd|th|st))? mixing bowl)? well$/; /** * Regular expression for the `Clean bowl` op * Capture groups: * 1. **Mixing bowl index** (optional): integer */ export const CleanBowlRegex = /** [ ] */ /^Clean(?: the)?(?: (\d+)(?:nd|rd|th|st))? mixing bowl$/; /** * Regular expression to match the `Pour ...` op. * Capture groups: * 1. **Mixing bowl index** (optional): integer * 2. **Baking dish index** (optional): integer */ export const PourBowlRegex = /** [ ]? [ ]? */ /^Pour contents of the(?: (\d+)(?:nd|rd|th|st))? mixing bowl into the(?: (\d+)(?:nd|rd|th|st))? baking dish$/; /** * Regular expression to match the `Serve with` op. * Capture groups: * 1. **Name of aux recipe**: string with alphanumerics and spaces */ export const ServeWithRegex = /** */ /^Serve with ([a-zA-Z0-9 ]+)$/; /** * Regular expression to match the `Refrigerate` op. * Capture groups: * 1. **Number of hours** (optional): integer */ export const RefrigerateRegex = /** [ ] */ /^Refrigerate(?: for (\d+) hours?)?$/; /** * Regular expression to match the `Verb the ingredient` op. * Capture groups: * 1. **Verb**: string with letters * 2. **Ingredient name**: string with letters and spaces */ export const LoopOpenerRegex = /** */ /^([a-zA-Z]+?)(?: the)? ([a-zA-Z ]+)$/; /** * Regular expression to match the `Verb [the ing] until verbed` op. * Capture groups: * 1. **Ingredient name** (optional): string with letters and spaces * 2. **Matched verb**: string with letters */ export const LoopEnderRegex = /** Verb [ ] */ /^(?:[a-zA-Z]+?)(?: the)?(?: ([a-zA-Z ]+?))? until ([a-zA-Z]+)$/;