Crafting speedup
authorest31 <MTest31@outlook.com>
Fri, 3 Apr 2015 23:33:34 +0000 (01:33 +0200)
committerest31 <MTest31@outlook.com>
Sun, 5 Apr 2015 07:25:46 +0000 (09:25 +0200)
commit334e70455b7f8a4607fe99dc12710d48169113a6
treebc1612e206a14067280ae3fcc11340b14d747314
parentfedbbc8883c1c8252fd8b40023687d953f93d10c
Crafting speedup

This greatly increases crafting performance, especially in worlds with many mods.

Approved by @kwolekr.

Introduces a hash-type-layered fall-through mechanism, where every layer specifies one hash algorithm,
and the "deeper the fall", the more collisions to expect for the algorithm. One Craft definition
only resides at one layer, which improves speed for lower layers (and a complete fail), due to most
craft definitions residing at high layers.

Due to the fall-through design, the undocumented behaviour that later craft recipes
override older ones had to be weaked up a bit, but craft recipes with the same hash and layer
will still override.
src/craftdef.cpp
src/craftdef.h
src/server.cpp