| 292 | } |
| 293 | |
| 294 | uint64_t ItemDatabase::maxCraftableInBag(List<ItemPtr> const& bag, StringMap<uint64_t> const& availableCurrencies, ItemRecipe const& recipe) const { |
| 295 | auto normalizedBag = normalizeBag(bag); |
| 296 | |
| 297 | return maxCraftableInBag(normalizedBag, availableCurrencies, recipe); |
| 298 | } |
| 299 | |
| 300 | uint64_t ItemDatabase::maxCraftableInBag(HashMap<ItemDescriptor, uint64_t> const& bag, StringMap<uint64_t> const& availableCurrencies, ItemRecipe const& recipe) const { |
| 301 | uint64_t res = highest<uint64_t>(); |