1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-05 08:34:22 +03:00
inform7/inbuild/inbuild-module/Chapter 1/Inbuild Module.w

116 lines
3 KiB
OpenEdge ABL
Raw Normal View History

2020-01-28 01:20:49 +02:00
[InbuildModule::] Inter Module.
Setting up the use of this module.
@h Introduction.
@d INBUILD_MODULE TRUE
@ To begin with, this module needs to allocate memory:
@e inform_kit_MT
@e inform_extension_MT
2020-01-28 01:20:49 +02:00
@e inform_kit_ittt_MT
@e element_activation_MT
@e inbuild_genre_MT
@e inbuild_work_MT
@e inbuild_edition_MT
@e inbuild_requirement_MT
@e inbuild_copy_MT
@e build_vertex_MT
@e build_methodology_MT
@e build_script_MT
@e build_step_MT
2020-01-31 02:13:50 +02:00
@e inbuild_nest_MT
@e inbuild_search_result_MT
@e inbuild_work_database_entry_array_MT
@e extension_census_datum_MT
@e extension_census_MT
@e inform_template_MT
@e inform_project_MT
@e inform_language_MT
2020-02-10 02:10:58 +02:00
@e inform_pipeline_MT
2020-02-17 11:43:20 +02:00
@e copy_error_MT
2020-02-23 14:36:39 +02:00
@e extension_dictionary_entry_MT
@e known_extension_clash_MT
2020-02-24 01:49:56 +02:00
@e build_skill_MT
@e control_structure_phrase_MT
2020-01-28 01:20:49 +02:00
=
ALLOCATE_INDIVIDUALLY(inform_kit)
ALLOCATE_INDIVIDUALLY(inform_extension)
2020-01-28 01:20:49 +02:00
ALLOCATE_INDIVIDUALLY(inform_kit_ittt)
ALLOCATE_INDIVIDUALLY(element_activation)
ALLOCATE_INDIVIDUALLY(inbuild_genre)
ALLOCATE_INDIVIDUALLY(inbuild_work)
ALLOCATE_INDIVIDUALLY(inbuild_edition)
ALLOCATE_INDIVIDUALLY(inbuild_requirement)
ALLOCATE_INDIVIDUALLY(inbuild_copy)
ALLOCATE_INDIVIDUALLY(build_vertex)
ALLOCATE_INDIVIDUALLY(build_methodology)
ALLOCATE_INDIVIDUALLY(build_script)
ALLOCATE_INDIVIDUALLY(build_step)
2020-01-31 02:13:50 +02:00
ALLOCATE_INDIVIDUALLY(inbuild_nest)
ALLOCATE_INDIVIDUALLY(inbuild_search_result)
ALLOCATE_INDIVIDUALLY(extension_census_datum)
ALLOCATE_INDIVIDUALLY(extension_census)
ALLOCATE_INDIVIDUALLY(inform_template)
ALLOCATE_INDIVIDUALLY(inform_project)
ALLOCATE_INDIVIDUALLY(inform_language)
2020-02-10 02:10:58 +02:00
ALLOCATE_INDIVIDUALLY(inform_pipeline)
2020-02-17 11:43:20 +02:00
ALLOCATE_INDIVIDUALLY(copy_error)
2020-02-23 14:36:39 +02:00
ALLOCATE_INDIVIDUALLY(extension_dictionary_entry)
ALLOCATE_INDIVIDUALLY(known_extension_clash)
2020-02-24 01:49:56 +02:00
ALLOCATE_INDIVIDUALLY(build_skill)
ALLOCATE_INDIVIDUALLY(control_structure_phrase)
2020-01-28 01:20:49 +02:00
ALLOCATE_IN_ARRAYS(inbuild_work_database_entry, 100)
2020-01-28 01:20:49 +02:00
@h The beginning.
=
void InbuildModule::start(void) {
@<Register this module's memory allocation reasons@>;
@<Register this module's stream writers@>;
@<Register this module's debugging log aspects@>;
@<Register this module's debugging log writers@>;
2020-02-08 12:34:58 +02:00
KitManager::start();
ExtensionManager::start();
TemplateManager::start();
LanguageManager::start();
ProjectBundleManager::start();
ProjectFileManager::start();
2020-02-10 02:10:58 +02:00
PipelineManager::start();
2020-02-24 01:49:56 +02:00
InterSkill::create();
Inform7Skill::create();
Inform6Skill::create();
InblorbSkill::create();
ControlStructures::create_standard();
2020-01-28 01:20:49 +02:00
}
@
@e EXTENSION_DICTIONARY_MREASON
2020-01-28 01:20:49 +02:00
@<Register this module's memory allocation reasons@> =
Memory::reason_name(EXTENSION_DICTIONARY_MREASON, "extension dictionary");
2020-01-28 01:20:49 +02:00
@<Register this module's stream writers@> =
Writers::register_writer('X', &Works::writer);
2020-01-28 01:20:49 +02:00
@
@e EXTENSIONS_CENSUS_DA
2020-01-28 01:20:49 +02:00
@<Register this module's debugging log aspects@> =
Log::declare_aspect(EXTENSIONS_CENSUS_DA, L"extensions census", FALSE, FALSE);
2020-01-28 01:20:49 +02:00
@<Register this module's debugging log writers@> =
Writers::register_writer('J', &Languages::log);
2020-01-28 01:20:49 +02:00
@h The end.
=
void InbuildModule::end(void) {
}