1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-03 07:24:58 +03:00
inform7/inter/index-module/Chapter 3/Rules for Scenes Element.w
2021-06-27 16:04:28 +01:00

25 lines
930 B
OpenEdge ABL

[RulesForScenesElement::] Rules for Scenes Element.
To write the Rules for Scenes element (RS) in the index.
@
=
void RulesForScenesElement::render(OUTPUT_STREAM) {
inter_tree *I = Index::get_tree();
tree_inventory *inv = Synoptic::inv(I);
TreeLists::sort(inv->rulebook_nodes, Synoptic::module_order);
HTML_OPEN("p"); WRITE("<b>The scene-changing machinery</b>"); HTML_CLOSE("p");
IndexRules::index_rules_box(OUT, inv, I"Scene changing", NULL,
IndexRules::find_rulebook(inv, I"scene_changing"), NULL, 1, FALSE);
HTML_OPEN("p");
Index::anchor(OUT, I"SRULES");
WRITE("<b>General rules applying to scene changes</b>");
HTML_CLOSE("p");
IndexRules::index_rules_box(OUT, inv, I"When a scene begins", NULL,
IndexRules::find_rulebook(inv, I"when_scene_begins"), NULL, 1, FALSE);
IndexRules::index_rules_box(OUT, inv, I"When a scene ends", NULL,
IndexRules::find_rulebook(inv, I"when_scene_ends"), NULL, 1, FALSE);
}