Crossfire Server, Branch 1.12  R12190
Functions | Variables
recipe.c File Reference

Basic stuff for use with the alchemy code. More...

#include <stdlib.h>
#include <global.h>
#include <object.h>
#include <ctype.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)
 Split a comma separated string list into words.
static void check_formulae (void)
 Check if formula don't have the same index.
static int check_recipe (const recipe *rp)
 Makes sure we actually have the requested artifact and archetype.
void dump_alchemy (void)
 Dumps alchemy recipes to output.
void dump_alchemy_costs (void)
 Dumps to output all costs of recipes.
static long find_ingred_cost (const char *name)
 Try to find an ingredient with specified name.
archetype * find_treasure_by_name (const treasure *t, const char *name, int depth)
 Find a treasure with a matching name.
void free_all_recipes (void)
 Frees all memory allocated to recipes and recipes lists.
static recipeget_empty_formula (void)
 Allocates a new recipe.
recipelistget_formulalist (int i)
 Gets a formula list by ingredients count.
recipeget_random_recipe (recipelist *rpl)
 Gets a random recipe from a list, based on chance.
static recipelistget_random_recipelist (void)
 Gets a random recipe list.
static const char * ingred_name (const char *name)
 Extracts the name from an ingredient.
void init_formulae (void)
 Builds up the lists of formula from the file in the libdir.
static recipelistinit_recipelist (void)
 Allocates a new recipelist.
artifactlocate_recipe_artifact (const recipe *rp, size_t idx)
 Finds an artifact for a recipe.
static int numb_ingred (const char *buf)
 Extracts the number part of an ingredient.
int strtoint (const char *buf)
 Convert buf into an integer equal to the coadded sum of the (lowercase) character.

Variables

static recipelistformulalist
 Pointer to first recipelist.

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. thomas@astro.psu.edu

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

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 764 of file recipe.c.

References fatal(), OUT_OF_MEMORY, and strdup_local().

Referenced by init_formulae().

Here is the call graph for this function:

Here is the caller graph for this function:

static void check_formulae ( void  ) [static]

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.

Definition at line 265 of file recipe.c.

References recipestruct::arch_name, recipestruct::cauldron, recipestruct::index, recipeliststruct::items, llevDebug, llevError, LOG(), recipestruct::next, recipeliststruct::next, and recipestruct::title.

Referenced by init_formulae().

Here is the call graph for this function:

Here is the caller graph for this function:

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 134 of file recipe.c.

References recipestruct::arch_name, recipestruct::arch_names, find_archetype(), llevError, locate_recipe_artifact(), LOG(), and recipestruct::title.

Referenced by init_formulae().

Here is the call graph for this function:

Here is the caller graph for this function:

void dump_alchemy ( void  )
void dump_alchemy_costs ( void  )
static long find_ingred_cost ( const char *  name) [static]

Try to find an ingredient with specified name.

If several archetypes have the same name, the value of the first one with that name will be returned. This happens for the mushrooms (mushroom_1, mushroom_2 and mushroom_3). For the monsters' body parts, there may be several monsters with the same name. This is not a problem if these monsters have the same level (e.g. sage & c_sage) or if only one of the monsters generates the body parts that we are looking for (e.g. big_dragon and big_dragon_worthless).

Will also search in artifacts.

Parameters:
nameingredient we're searching for. Can start with a number.
Returns:
cost of ingredient, -1 if wasn't found.

Definition at line 416 of file recipe.c.

References find_treasure_by_name(), first_archetype, first_artifactlist, isqrt(), artifactstruct::item, artifactliststruct::items, artifactstruct::next, artifactliststruct::next, snprintf(), strcasecmp(), and artifactliststruct::type.

Referenced by dump_alchemy_costs().

Here is the call graph for this function:

Here is the caller graph for this function:

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 365 of file recipe.c.

References find_treasure_by_name(), find_treasurelist(), treasurestruct::item, treasureliststruct::items, treasurestruct::name, treasurestruct::next, treasurestruct::next_no, treasurestruct::next_yes, and strcasecmp().

Referenced by find_ingred_cost(), and find_treasure_by_name().

Here is the call graph for this function:

Here is the caller graph for this function:

void free_all_recipes ( void  )

Frees all memory allocated to recipes and recipes lists.

Definition at line 721 of file recipe.c.

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

Referenced by cleanup().

Here is the call graph for this function:

Here is the caller graph for this function:

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 82 of file recipe.c.

References recipestruct::arch_name, recipestruct::arch_names, recipestruct::cauldron, recipestruct::chance, recipestruct::diff, recipestruct::exp, fatal(), recipestruct::index, recipestruct::ingred, recipestruct::keycode, recipestruct::next, OUT_OF_MEMORY, recipestruct::skill, recipestruct::title, recipestruct::transmute, and recipestruct::yield.

Referenced by init_formulae().

Here is the call graph for this function:

Here is the caller graph for this function:

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 112 of file recipe.c.

References formulalist, and recipeliststruct::next.

Referenced by alchemy_failure_effect(), attempt_do_alchemy(), CREResourcesWindow::fillFormulae(), get_random_recipelist(), and make_formula_book().

Here is the caller graph for this function:

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 697 of file recipe.c.

References recipestruct::chance, get_random_recipelist(), recipeliststruct::items, recipestruct::next, 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:

static recipelist* get_random_recipelist ( void  ) [static]

Gets a random recipe list.

Returns:
random recipe list.

Definition at line 661 of file recipe.c.

References get_formulalist(), llevError, LOG(), recipeliststruct::next, 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:

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 581 of file recipe.c.

Referenced by strtoint().

Here is the caller graph for this function:

void init_formulae ( void  )
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 63 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:

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 637 of file recipe.c.

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

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

Here is the call graph for this function:

Here is the caller graph for this function:

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 597 of file recipe.c.

Referenced by init_formulae(), and strtoint().

Here is the caller graph for this function:

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 616 of file recipe.c.

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

Referenced by add_book_to_list(), calc_alch_danger(), 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

Pointer to first recipelist.

Definition at line 53 of file recipe.c.

Referenced by dump_alchemy(), dump_alchemy_costs(), free_all_recipes(), get_formulalist(), and init_formulae().