Add documentation for Treasurer’s group system
[minetest_treasurer.git] / README.md
blob5994461e995ea61052988a3e4fb002c9e90c8311
1 = Treasurer’s README file for Treasurer version 0.2.0 =
2 == Overview ==
3 * Name: Treasurer
4 * Technical name: `treasurer`
5 * Purpose: To provide an interface for mods which want to spawn ItemStacks randomly and an interface for mods which create new items.
6 * Version: 0.2.0
7 * Dependencies: none
8 * License: WTFPL
10 == Introduction ==
11 Problem:
12 There are a bunch of mods which have cool items but they won’t appear in the world by
13 themselves.
14 There are some mods which randomly distribute treasures into the world. Sadly, these only
15 distribute the items they know—which are just the items of the mod “default” most of the
16 time. The items of the other mods are completely missed.
18 The reason for this is that the distributing mods can’t know what sort of items are available
19 unless they explicitly depend on the mods that defines these. Viewed the other way round,
20 the item-defining mods that also distribute these items into the world are limited in the
21 sense that they only know one means of distributing items.
23 There is a gap between defining items and distributing them. Every time a mod does both,
24 flexibility is limited and expansion becomes difficult.
26 To bridge this gap, Treasurer has been written. Treasurer makes it possible a) for mods to define
27 treasures without bothering _how_ these are distributed into the world and b) for mods to distribute
28 treasures around the world without knowledge about _what_ treasures exactly are distributed.
30 == Technical side of Treasurer ==
31 === technical overview ===
32 To get a working Treasurer architecture and actually get some treasures into the world,
33 you need:
34 * Treasurer
35 * at least one treasure registration mod
36 * at least one treasure spawning mod
38 === treasurer registration mod ===
39 Firstly, there are the treasure registration mods (TRMs). The task of TRMs is to tell
40 Treasurer which items does it have to offer, which relative appearance probabilities these
41 treasures should have, how “precious” the treasure is considered (on a scale from 0 to 10)
42 , optionally how big the stack of items should be and optionally how much worn out it is.
43 TRMs must depend on at least two mods: On treasurer and on the mod or mods
44 where the items are defined. Technically, a TRM consists of nothing more than a long
45 list of “registration” function calls. While this seems trivial, the task of balancing
46 out probabilties and balancing out preciousness levels of treasures is not trivial
47 and it may take a long time to get right.
49 It is strongly recommended that a TRM really does nothing
50 more than registering treasures (and not defining items, for example). If you want
51 to make your mod compatible to Treasurer, don’t change your mod, write a TRM for
52 it instead.
54 There is an example TRM, called “`trm_default_example`”. It registers some items
55 of the default as treasures. Unsurprisingly, it depends on `treasurer` and `default`.
57 === treasurer spawning mods ===
58 Secondly, there are the treasure spawning mods (TSMs). The task of a TSM is to somehow
59 distribute the available treasures into the world. This is also called “treasure
60 spawning”. How exactly the TSM spawns the treasures is completely up the TSM. But a
61 TSM has to request Treasurer to get some random treasures to distribute. A TSM may
62 optionally request to filter out treasures outside certain preciousness levels, so
63 it can be 
64 Treasurer can not guarantee to return the requestet amount of treasures, it may
65 return an empty table, for two reasons:
67 * There is no TRM activated. There must be at least one to work
68 * The preciousness filter filtered out. This problem can be fixed by installing more
69 TRMs or by balancing the existing TRMs to cover as many preciousness levels as
70 possible. It also may be that the range specified by the TSM was too small. It is
71 recommended to keep the requested range at least of a size of 1.
72 Treasurer does, however, guarantee that the returned treasures are always in the
73 requested boundsa.
75 A TSM has to at least depend on Treasurer.
76 Like for TRMs, it is strongly recommended that a TSM does nothing more than spawning
77 treasures. This does not exclude the possibility that a TSM does not depend
78 on any other mod.
80 There are two example TSMs. The first one is a very basic one and called “`tsm_gift_example`”.
81 It gives a “welcome gift” (1 random treasure) to players who just joined the server
82 or who respawn. The preciousness filter is not used. It does only depend on Treasurer.
83 The second one is called “`tsm_chests_example`” and pretty advanced for an example.
84 It places chests of the mod “default” between 20 and 200 node lenghts below the water
85 surface and puts 1-6 random treasures into these. The lower the chest, the higher
86 the preciousness. It depends on treasurer and default (for the chests, of course).
88 === Recap ===
89 TRMs define treasures, TSMs spawn them. Treasurer manages the pool of available treasures.
90 TRMs and TSMs do not have to know anything from each other.
91 TRMs and TSMs do not neccessarily have to change any line of code of other mods to function.
92 Treasurer depends on nothing.
94 Important: It should always only be neccessary for TRMs and TSMs to depend on Treasurer.
95 All other mods do NOT HAVE TO and SHOULD NOT depend on Treasurer.
99 === Treasure attributes ===
100 This section explains the various attributes a treasure can have.
102 ==== Rarity ====
103 Rarity in Treasurer works in a pretty primitive way: The relative rarities of all
104 treasures from the treasure pool are simply all added up. The probabilitiy of one
105 certain treasure is then simply the rarity value divided by the sum.
107 ==== Preciousness ====
108 How “precious” an item is, is highly subjective and also not always easy to categorize.
109 Preciousness in Treasurer’s terms should be therefore viewed as “utility” or as
110 “reward level” or “strength” or even “beauty” or whatever positive attributes you can
111 think of for items.
112 So, if you create a TRM and your treasure is something you want the player work
113 hard for, assign it a high preciousness. Everyday items that are already easy to
114 obtain in normal gameplay certainly deserve a lower precious than items that are
115 expensive to craft.
116 If your treasure consists of a powerful
117 item, assign it a high preciousness. When in doubt, try to value gameplay over
118 personal taste. Remember that TSMs can (and will!) filter out treasures based
119 on their preciousness.
120 For TSM authors, consider preciousness this way: If the trouble the player has
121 to get through to in order to obtain the treasure is high, better filter
122 out unprecious treasures. If your TSM distributes many treasures all over the world and these
123 are easy to obtain, filter out precious treasures.
125 TSMs also can just completely ignore preciousness, then the given treasures base
126 on sheer luck.
128 ==== Treasurer groups ====
129 Every treasure can be assigned to a group. These groups are specific to Treasurer only.
130 The idea is that treasures which share a common property are member of the same group.
131 All groups have a name by which they are identified.
132 For example, if there are apples, plums, pears and oranges and those items can be
133 eaten for health, all those treasures would be members of the group “food”.
135 The group system can be used to further narrow down the treasure pool from which you
136 want Treasurer to return treasures. This makes it more interesting than just using
137 an one-dimensional preciousness scale.
139 Using the groups system is entirely optional. If your TRM does not specify any group,
140 your treasure will be assigned to the group “default”. It is not possible for a treasure
141 to not belong to any group. If your TSM does not specify a group parameter, Treasurer
142 will use all groups.
143 While not using groups as a TSM may be perfectly okay, not using groups as a TRM is
144 not recommended, because TSM which filter by groups may “overlook” your treasure,
145 even if it would actually fit, simply because you didn’t assign it to a specific group.
147 Note that Treasurer groups are completely distinct from Minetest’s group system.
149 You can basically invent your own groups on the fly, but it is strongly recommended that you
150 use the groups suggested in the text file `GROUPS_AND_PRECIOUSNESS` whenever possible, for
151 maximum portability of your TSM. The text file also has a rough guideline for finding
152 appropriate values for the preciousness.
155 ==== Recap ====
156 Rarity determines the chance of a treasure, whereas preciousness determines
157 the difficulty to obtain it. Group
159 == Overview of examples ==
160 - `trm_default_example` - registers items of default mod
161 - `tsm_chests_example` - spawns chests (from the default mod)
162 - `tsm_gift_example` - gives one treasure as a “welcome gift” to joined or respawned players
164 == Treasurer API documentation ==
165 === API documentation for treasure registration mods ===
166 The API consists of one function, which is called “`treasurer.register_treasure`”.
168 ==== `treasurer.register_treasure` ====
169 Registers a new treasure (this means the treasure will be ready to be spawned by treasure spawning mods).
171 This function does some basic parameter checking to catch the most obvious
172 mistakes. If invalid parameters have been passed, the input is rejected and
173 the function returns false. However, it does not cover every possible
174 mistake, so some invalid treasures may slip through.
175                 
176 Rarity does not imply preciousness. A rare treasure may not neccessarily a
177 very precious one. A treasure chest with scorched stuff inside may be very
178 rare, but it’s certainly also very unprecious.
180 ===== Parameters =====
181 * `name`: name of resulting `ItemStack`, e.g. “`mymod:item`”
182 * `rarity`: rarity of treasure on a scale from 0 to 1 (inclusive). lower = rarer
183 * `preciousness` : subjective preciousness on a scale from 0 to 10 (inclusive). higher = more precious.
184 * `count`: optional value which specifies the multiplicity of the item. Default is 1. See `count` syntax help in this file.
185 * `wear`: optional value which specifies the wear of the item. Default is 0, which disables the wear. See `wear` syntax help in this file.
186 * `treasurer_groups`: an optional table of group names to assign this treasure to. If omitted, the treasure is added to the default group.
188 ===== Return value =====                
189 `true` on success, `false` on failure.
191 === data formats ===
192 format of count type:
193 ==== `count` ====
194 A `count` can be a number or a table 
196 * `number`: it’s always so many times
197 * `{min, max}`: it’s pseudorandomly between `min` and `max` times, `math.random` will be used to chose the value
198 * `{min, max, prob_func}`: it’s between `min` and `max` times, and the value is given by `prob_func` (see below)
200 ==== `wear` ====
201 Completely analogous to `count`.
203 ==== Format of `prob_func` function ====
204 There are no parameters.
206 It returns a random or pseudorandom number between 0 (inclusive) and 1 (exclusive).
208 `prob_func` is entirely optional, if it’s not used, treasurer will
209 default to using `math.random`. You can use `prob_func` to define your own
210 “randomness” function, in case you don’t wish your values to be evenly
211 distributed.
213 === API documentation for treasure spawning mods ===
214 The API consists of one function, called “`treasurer.select_random_treasures`”.
216 ==== `treasurer.select_random_treasures` ====
217 Request some treasures from treasurer.
219 ===== Parameters =====
220 * `count`: (optional) amount of treasures. If this value is `nil`, Treasurer assumes a default of 1.
221 * `minimal_preciousness`: (optional) don’t consider treasures with a lower preciousness. If `nil`, there’s no lower bound.
222 * `maximum_preciousness`: (optional) don’t consider treasures with a higher preciousness. If `nil`, there’s no upper bound.
223 * `treasurer_group`: (optional): Only consider treasures which are members of at least one of the members of the provided Treasurer group table. `nil` = consider all groups
226 ===== Return value =====
227 A table of `ItemStacks` (the requested treasures). It may be empty.