mu/012transform.cc
Kartik K. Agaram 0f125d5ff1 1387
2015-05-16 21:24:21 -07:00

53 lines
1.6 KiB
C++

//: Phase 2: Filter loaded recipes through an extensible list of 'transforms'.
//:
//: The hope is that this framework of transform tools will provide a
//: deconstructed alternative to conventional compilers.
:(before "End recipe Fields")
index_t transformed_until;
recipe() :transformed_until(-1) {}
:(before "End Types")
typedef void (*transform_fn)(recipe_number);
:(before "End Globals")
vector<transform_fn> Transform;
:(code)
void transform_all() {
//? cout << "AAA transform_all\n"; //? 1
for (index_t t = 0; t < Transform.size(); ++t) {
for (map<recipe_number, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
recipe& r = p->second;
if (r.steps.empty()) continue;
if (r.transformed_until != t-1) continue;
(*Transform.at(t))(/*recipe_number*/p->first);
r.transformed_until = t;
}
}
parse_int_reagents(); // do this after all other transforms have run
}
void parse_int_reagents() {
//? cout << "parse_int_reagents\n"; //? 1
for (map<recipe_number, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
recipe& r = p->second;
if (r.steps.empty()) continue;
for (index_t index = 0; index < r.steps.size(); ++index) {
instruction& inst = r.steps.at(index);
for (index_t i = 0; i < inst.ingredients.size(); ++i) {
populate_value(inst.ingredients.at(i));
}
for (index_t i = 0; i < inst.products.size(); ++i) {
populate_value(inst.products.at(i));
}
}
}
}
void populate_value(reagent& r) {
if (r.initialized) return;
if (!is_integer(r.name)) return;
r.set_value(to_integer(r.name));
}