Crossfire Server, Trunk
recipe.c File Reference
#include "global.h"
#include <assert.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include "object.h"
#include "assets.h"
+ Include dependency graph for recipe.c:

Go to the source code of this file.

Functions

static void build_stringlist (const char *str, char ***result_list, size_t *result_size)
 
void check_formulae (void)
 
static int check_recipe (const recipe *rp)
 
void check_recipes ()
 
void dump_alchemy (void)
 
void dump_alchemy_costs (void)
 
recipefind_recipe_for_tool (const char *tool, recipe *from)
 
archetypefind_treasure_by_name (const treasure *t, const char *name, int depth)
 
void free_all_recipes (void)
 
static recipeget_empty_formula (void)
 
recipelistget_formulalist (int i)
 
recipeget_random_recipe (recipelist *rpl)
 
static recipelistget_random_recipelist (void)
 
static const char * ingred_name (const char *name)
 
void init_formulae (BufferReader *reader, const char *filename)
 
static recipelistinit_recipelist (void)
 
const artifactlocate_recipe_artifact (const recipe *rp, size_t idx)
 
static int numb_ingred (const char *buf)
 
const Facerecipe_get_face (const recipe *rp)
 
int strtoint (const char *buf)
 

Variables

static recipelistformulalist
 

Detailed Description

Basic stuff for use with the alchemy code. Clearly some of this stuff could go into server/alchemy, but I left it here just in case it proves more generally useful.

Nov 1995 - file created by b.t. thoma.nosp@m.s@as.nosp@m.tro.p.nosp@m.su.e.nosp@m.du

Our definition of 'formula' is any product of an alchemical process. Ingredients are just comma delimited list of archetype (or object) names.

Example 'formula' entry in libdir/formulae: Object transparency chance 10 ingred dust of beholdereye,gem arch potion_generic

An ingredient is a name, which can contain an initial number for how many are needed.

Definition in file recipe.c.

Function Documentation

◆ build_stringlist()

static void build_stringlist ( const char *  str,
char ***  result_list,
size_t *  result_size 
)
static

Split a comma separated string list into words.

Parameters
strthe string to split
[out]result_listpointer to return value for the newly created list; the caller is responsible for freeing both *result_list and **result_list.
[out]result_sizepointer to return value for the size of the newly created list

Definition at line 738 of file recipe.c.

References fatal(), OUT_OF_MEMORY, make_face_from_files::str, and strdup_local.

Referenced by init_formulae().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ check_formulae()

void check_formulae ( void  )

Check if formula don't have the same index.

Since we are doing a squential search on the formulae lists now, we have to be carefull that we dont have 2 formula with the exact same index value. Under the new nbatches code, it is possible to have multiples of ingredients in a cauldron which could result in an index formula mismatch. We *don't *check for that possibility here. -b.t.

LOG() to error level.

Todo:
check archetypes exist, check coherence (skill present, cauldron ok, and such things), set chance to 0 for combinations

Definition at line 293 of file recipe.c.

References recipestruct::arch_name, recipestruct::arch_names, recipestruct::cauldron, reputation_trigger_connect::check(), formulalist, recipestruct::index, recipeliststruct::items, llevDebug, llevError, LOG(), recipestruct::next, recipeliststruct::next, recipestruct::title, recipestruct::tool, recipestruct::tool_size, and try_find_archetype().

Referenced by assets_end_load().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ check_recipe()

static int check_recipe ( const recipe rp)
static

Makes sure we actually have the requested artifact and archetype.

Parameters
rprecipe we want to check.
Returns
1 if recipe is ok, 0 if missing something (and LOG() to error).

Definition at line 118 of file recipe.c.

References recipestruct::arch_name, recipestruct::arch_names, llevError, locate_recipe_artifact(), LOG(), rotate-tower::result, recipestruct::title, and try_find_archetype().

Referenced by check_recipes().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ check_recipes()

void check_recipes ( )

Ensure that all recipes have a valid artifact, and that archetypes are correct. Will call fatal() if any error is found.

Definition at line 146 of file recipe.c.

References check_recipe(), fatal(), formulalist, recipeliststruct::items, recipestruct::next, recipeliststruct::next, and SEE_LAST_ERROR.

Referenced by assets_end_load().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dump_alchemy()

void dump_alchemy ( void  )

◆ dump_alchemy_costs()

◆ find_recipe_for_tool()

recipe* find_recipe_for_tool ( const char *  tool,
recipe from 
)

Find a recipe for a specified tool. This function can be called multiple times to browse the whole list, using the 'from' parameter.

Parameters
tooltool's archetype name.
fromformula to search from, if NULL from the first one.
Returns
matching formula, NULL if none matching.

Definition at line 771 of file recipe.c.

References formulalist, get_formulalist(), recipestruct::ingred_count, guildoracle::list, recipestruct::next, Floor::t, recipestruct::tool, and recipestruct::tool_size.

Referenced by command_use().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ find_treasure_by_name()

archetype* find_treasure_by_name ( const treasure t,
const char *  name,
int  depth 
)

Find a treasure with a matching name. The 'depth' parameter is only there to prevent infinite loops in treasure lists (a list referencing another list pointing back to the first one).

Parameters
titem of treasure list to search from
namename we're trying to find. Doesn't need to be a shared string.
depthcurrent depth. Code will exit if greater than 10.
Returns
archetype with name, or NULL if nothing found.

Definition at line 422 of file recipe.c.

References find_treasure_by_name(), find_treasurelist(), treasureliststruct::items, give::name, strcasecmp(), and Floor::t.

Referenced by find_treasure_by_name().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ free_all_recipes()

void free_all_recipes ( void  )

Frees all memory allocated to recipes and recipes lists.

Definition at line 688 of file recipe.c.

References recipestruct::arch_name, recipestruct::cauldron, recipestruct::failure_arch, recipestruct::failure_message, formulalist, free_string(), recipestruct::ingred, recipeliststruct::items, llevDebug, LOG(), linked_char::name, recipestruct::next, recipeliststruct::next, give::next, linked_char::next, recipestruct::skill, recipestruct::title, and recipestruct::tool.

Referenced by cleanup(), and init_formulae().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_empty_formula()

static recipe* get_empty_formula ( void  )
static

Allocates a new recipe.

Will call fatal() if memory allocation error.

Returns
new structure initialized. Never NULL.

Definition at line 77 of file recipe.c.

References fatal(), OUT_OF_MEMORY, and Floor::t.

Referenced by init_formulae().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_formulalist()

recipelist* get_formulalist ( int  i)

Gets a formula list by ingredients count.

Parameters
inumber of ingredients.
Returns
pointer to the formula list, or NULL if it doesn't exist.

Definition at line 96 of file recipe.c.

References formulalist, and recipeliststruct::next.

Referenced by alchemy_failure_effect(), alchemyTable(), attempt_do_alchemy(), RecipesWrapper::child(), RecipesWrapper::childIndex(), ArtifactPanel::computeMadeViaAlchemy(), find_recipe_for_tool(), get_random_recipelist(), knowledge_alchemy_get_recipe(), ResourcesManager::load(), make_formula_book(), CREMainWindow::onReportAlchemyGraph(), and pack_formulae().

+ Here is the caller graph for this function:

◆ get_random_recipe()

recipe* get_random_recipe ( recipelist rpl)

Gets a random recipe from a list, based on chance.

Parameters
rplrecipelist we want a recipe from. Can be NULL in which case a random one is selected.
Returns
random recipe. Can be NULL if recipelist has a total_chance of 0.

Definition at line 664 of file recipe.c.

References recipestruct::chance, get_random_recipelist(), recipeliststruct::items, recipestruct::next, ring_occidental_mages::r, RANDOM, and recipeliststruct::total_chance.

Referenced by alchemy_failure_effect().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_random_recipelist()

static recipelist* get_random_recipelist ( void  )
static

Gets a random recipe list.

Returns
random recipe list.

Definition at line 628 of file recipe.c.

References get_formulalist(), llevError, LOG(), recipeliststruct::next, RANDOM, and recipeliststruct::total_chance.

Referenced by get_random_recipe().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ingred_name()

static const char* ingred_name ( const char *  name)
static

Extracts the name from an ingredient.

Parameters
nameingredient to extract from. Can contain a number at start.
Returns
pointer in name to the first character of the ingredient's name.

Definition at line 548 of file recipe.c.

References give::name.

Referenced by strtoint().

+ Here is the caller graph for this function:

◆ init_formulae()

◆ init_recipelist()

static recipelist* init_recipelist ( void  )
static

Allocates a new recipelist.

Will call fatal() if memory allocation error.

Returns
new structure initialized. Never NULL.

Definition at line 58 of file recipe.c.

References fatal(), recipeliststruct::items, recipeliststruct::next, recipeliststruct::number, OUT_OF_MEMORY, and recipeliststruct::total_chance.

Referenced by init_formulae().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ locate_recipe_artifact()

const artifact* locate_recipe_artifact ( const recipe rp,
size_t  idx 
)

Finds an artifact for a recipe.

Parameters
rprecipe
idxindex of ingredient in recipe.
Returns
artifact, or NULL if not found.

Definition at line 604 of file recipe.c.

References recipestruct::arch_name, create_archetype(), find_artifactlist(), artifactstruct::item, artifactliststruct::items, legal_artifact_combination(), obj::name, artifactstruct::next, object_free_drop_inventory(), and recipestruct::title.

Referenced by check_recipe(), dump_alchemy(), dump_alchemy_costs(), make_item_from_recipe(), and recipe_get_face().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ numb_ingred()

static int numb_ingred ( const char *  buf)
static

Extracts the number part of an ingredient.

Parameters
bufingredient.
Returns
number part of an ingredient.

Definition at line 564 of file recipe.c.

References buf.

Referenced by init_formulae(), and strtoint().

+ Here is the caller graph for this function:

◆ recipe_get_face()

const Face* recipe_get_face ( const recipe rp)

Return the best face associated with a recipe.

Parameters
rprecipe to get the face of.
Returns
best face, may be NULL if none applicable.

Definition at line 797 of file recipe.c.

References archininventory::arch, recipestruct::arch_name, recipestruct::arch_names, arch_to_object(), blank_face, FREE_OBJ_FREE_INVENTORY, FREE_OBJ_NO_DESTROY_CALLBACK, give_artifact_abilities(), artifactstruct::item, say::item, locate_recipe_artifact(), object_free(), object_give_identified_properties(), recipestruct::title, and try_find_archetype().

Referenced by RecipeWrapper::displayIcon(), CREUtils::formulaeNode(), and knowledge_alchemy_face().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ strtoint()

int strtoint ( const char *  buf)

Convert buf into an integer equal to the coadded sum of the (lowercase) character

ASCII values in buf (times prepended integers).

Parameters
bufbuffer we want to convert. Can contain an initial number.
Returns
sum of lowercase characters of the ingredient's name.

Definition at line 583 of file recipe.c.

References buf, ingred_name(), numb_ingred(), and tolower.

Referenced by add_book_to_list(), content_recipe_value(), dump_alchemy(), find_title(), and init_formulae().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ formulalist

recipelist* formulalist
static