a0896c63d7
* Smelting Exp Smelting now gives experience * Furnace.txt update Exp rewards are entered in furnace.txt, Reward calculation is now done is the furnaceentity class * furnace.txt update Changed alignment tabs to spaces Included documentation of exp in recipe * Updated StringToFloat changed strtod to strtof * Explicit Float to Int * Reworked Smelting Rewards * No C casts -Adds new function to the api -Sets reward counter to 0 in furnace constructor * Style and exp lock removed -Fixed style mistakes accoring to PR notes -XP isn't locked to a single player anymore * No Smelter API -Removed SetLastSmelter and GetLastSmelter -Fixed comments -Fixed log reward amounts
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
class cItem;
|
|
|
|
|
|
|
|
|
|
|
|
class cFurnaceRecipe
|
|
{
|
|
public:
|
|
cFurnaceRecipe(void);
|
|
~cFurnaceRecipe();
|
|
|
|
void ReloadRecipes(void);
|
|
|
|
struct cFuel
|
|
{
|
|
cItem * In;
|
|
int BurnTime; ///< How long this fuel burns, in ticks
|
|
};
|
|
|
|
struct cRecipe
|
|
{
|
|
cItem * In;
|
|
cItem * Out;
|
|
int CookTime; ///< How long this recipe takes to smelt, in ticks
|
|
float Reward; ///< Experience reward for creating 1 of this item
|
|
};
|
|
|
|
/** Returns a recipe for the specified input, nullptr if no recipe found */
|
|
const cRecipe * GetRecipeFrom(const cItem & a_Ingredient) const;
|
|
|
|
/** Returns true if the item is a fuel, false if not. */
|
|
bool IsFuel(const cItem & a_Item) const;
|
|
|
|
/** Returns the amount of time that the specified fuel burns, in ticks */
|
|
int GetBurnTime(const cItem & a_Fuel) const;
|
|
|
|
private:
|
|
void ClearRecipes(void);
|
|
|
|
/** Parses the fuel contained in the line, adds it to m_pState's fuels.
|
|
Logs a warning to the console on input error. */
|
|
void AddFuelFromLine(const AString & a_Line, unsigned int a_LineNum);
|
|
|
|
/** Parses the recipe contained in the line, adds it to m_pState's recipes.
|
|
Logs a warning to the console on input error. */
|
|
void AddRecipeFromLine(const AString & a_Line, unsigned int a_LineNum);
|
|
|
|
/** Parses an item string in the format "<ItemType>[: <Damage>][, <Amount>]", returns true if successful. */
|
|
bool ParseItem(const AString & a_String, cItem & a_Item);
|
|
|
|
struct sFurnaceRecipeState;
|
|
sFurnaceRecipeState * m_pState;
|
|
};
|
|
|
|
|
|
|
|
|