Skip to content

Commit

Permalink
Prefix RecipePriority elements with PRIORITY_
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ouellette authored and sfan5 committed Jul 27, 2019
1 parent 395b1b3 commit fe6c666
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
22 changes: 11 additions & 11 deletions src/craftdef.cpp
Expand Up @@ -337,9 +337,9 @@ CraftDefinitionShaped::CraftDefinitionShaped(
output(output_), width(width_), recipe(recipe_), replacements(replacements_)
{
if (hasGroupItem(recipe))
priority = SHAPED_AND_GROUPS;
priority = PRIORITY_SHAPED_AND_GROUPS;
else
priority = SHAPED;
priority = PRIORITY_SHAPED;
}

std::string CraftDefinitionShaped::getName() const
Expand Down Expand Up @@ -473,9 +473,9 @@ CraftDefinitionShapeless::CraftDefinitionShapeless(
output(output_), recipe(recipe_), replacements(replacements_)
{
if (hasGroupItem(recipe))
priority = SHAPELESS_AND_GROUPS;
priority = PRIORITY_SHAPELESS_AND_GROUPS;
else
priority = SHAPELESS;
priority = PRIORITY_SHAPELESS;
}

std::string CraftDefinitionShapeless::getName() const
Expand Down Expand Up @@ -588,7 +588,7 @@ std::string CraftDefinitionShapeless::dump() const
CraftDefinitionToolRepair::CraftDefinitionToolRepair(float additional_wear_):
additional_wear(additional_wear_)
{
priority = TOOLREPAIR;
priority = PRIORITY_TOOLREPAIR;
}

static ItemStack craftToolRepair(
Expand Down Expand Up @@ -693,9 +693,9 @@ CraftDefinitionCooking::CraftDefinitionCooking(
output(output_), recipe(recipe_), cooktime(cooktime_), replacements(replacements_)
{
if (isGroupRecipeStr(recipe))
priority = SHAPELESS_AND_GROUPS;
priority = PRIORITY_SHAPELESS_AND_GROUPS;
else
priority = SHAPELESS;
priority = PRIORITY_SHAPELESS;
}

std::string CraftDefinitionCooking::getName() const
Expand Down Expand Up @@ -795,9 +795,9 @@ CraftDefinitionFuel::CraftDefinitionFuel(
recipe(recipe_), burntime(burntime_), replacements(replacements_)
{
if (isGroupRecipeStr(recipe_name))
priority = SHAPELESS_AND_GROUPS;
priority = PRIORITY_SHAPELESS_AND_GROUPS;
else
priority = SHAPELESS;
priority = PRIORITY_SHAPELESS;
}

std::string CraftDefinitionFuel::getName() const
Expand Down Expand Up @@ -927,7 +927,7 @@ class CCraftDefManager: public IWritableCraftDefManager
// Try hash types with increasing collision rate
// while remembering the latest, highest priority recipe.
CraftDefinition::RecipePriority priority_best =
CraftDefinition::NO_RECIPE;
CraftDefinition::PRIORITY_NO_RECIPE;
CraftDefinition *def_best = nullptr;
for (int type = 0; type <= craft_hash_type_max; type++) {
u64 hash = getHashForGrid((CraftHashType) type, input_names);
Expand Down Expand Up @@ -970,7 +970,7 @@ class CCraftDefManager: public IWritableCraftDefManager
}
}
}
if (priority_best == CraftDefinition::NO_RECIPE)
if (priority_best == CraftDefinition::PRIORITY_NO_RECIPE)
return false;
if (decrementInput)
def_best->decrementInput(input, output_replacement, gamedef);
Expand Down
12 changes: 6 additions & 6 deletions src/craftdef.h
Expand Up @@ -141,12 +141,12 @@ class CraftDefinition
*/
enum RecipePriority
{
NO_RECIPE,
TOOLREPAIR,
SHAPELESS_AND_GROUPS,
SHAPELESS,
SHAPED_AND_GROUPS,
SHAPED,
PRIORITY_NO_RECIPE,
PRIORITY_TOOLREPAIR,
PRIORITY_SHAPELESS_AND_GROUPS,
PRIORITY_SHAPELESS,
PRIORITY_SHAPED_AND_GROUPS,
PRIORITY_SHAPED,
};

CraftDefinition() = default;
Expand Down

0 comments on commit fe6c666

Please sign in to comment.