1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-29 05:24:57 +03:00
inform7/inter/index-module/Chapter 3/Rules for Scenes Element.w
2022-02-02 23:35:38 +00:00

30 lines
1.1 KiB
OpenEdge ABL

[RulesForScenesElement::] Rules for Scenes Element.
To write the Rules for Scenes element (RS) in the index.
@
=
void RulesForScenesElement::render(OUTPUT_STREAM, index_session *session) {
localisation_dictionary *LD = Indexing::get_localisation(session);
tree_inventory *inv = Indexing::get_inventory(session);
InterNodeList::array_sort(inv->rulebook_nodes, MakeSynopticModuleStage::module_order);
HTML_OPEN("p");
Localisation::bold(OUT, LD, I"Index.Elements.RS.Machinery");
HTML_CLOSE("p");
IndexRules::rulebook_box(OUT, inv, I"Index.Elements.RS.SceneChanging", NULL,
IndexRules::find_rulebook(inv, I"scene_changing"), NULL, 1, FALSE, session);
HTML_OPEN("p");
IndexUtilities::anchor(OUT, I"SRULES");
Localisation::bold(OUT, LD, I"Index.Elements.RS.General");
HTML_CLOSE("p");
IndexRules::rulebook_box(OUT, inv, I"Index.Elements.RS.SceneBegins", NULL,
IndexRules::find_rulebook(inv, I"when_scene_begins"), NULL, 1, FALSE, session);
IndexRules::rulebook_box(OUT, inv, I"Index.Elements.RS.SceneEnds", NULL,
IndexRules::find_rulebook(inv, I"when_scene_ends"), NULL, 1, FALSE, session);
}