mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2026-09-27 04:17:03 -05:00
Modules do now have a flag if they should be run before their entrypoint.
This commit is contained in:
@@ -70,6 +70,7 @@ public:
|
||||
const std::vector<ExportData> &getExportDataList() const {
|
||||
return export_data_list;
|
||||
}
|
||||
|
||||
void addHookData(const HookData &data) {
|
||||
hook_data_list.push_back(data);
|
||||
}
|
||||
@@ -131,6 +132,14 @@ public:
|
||||
return this->export_name;
|
||||
}
|
||||
|
||||
bool isInitBeforeEntrypoint() const {
|
||||
return this->initBeforeEntrypoint;
|
||||
}
|
||||
|
||||
void setInitBeforeEntrypoint(bool value) {
|
||||
this->initBeforeEntrypoint = value;
|
||||
}
|
||||
|
||||
private:
|
||||
std::vector<RelocationData> relocation_data_list;
|
||||
std::vector<ExportData> export_data_list;
|
||||
@@ -146,4 +155,5 @@ private:
|
||||
uint32_t startAddress = 0;
|
||||
uint32_t endAddress = 0;
|
||||
uint32_t entrypoint = 0;
|
||||
bool initBeforeEntrypoint = false;
|
||||
};
|
||||
|
||||
@@ -184,7 +184,12 @@ std::optional<ModuleData> ModuleDataFactory::load(std::string path, uint32_t* de
|
||||
if (key.compare("export_name") == 0) {
|
||||
DEBUG_FUNCTION_LINE("export_name = %s", value.c_str());
|
||||
moduleData.setExportName(value);
|
||||
}else if (key.compare("wums") == 0) {
|
||||
}else if (key.compare("initBeforeEntrypoint") == 0) {
|
||||
if (value.compare("true") == 0) {
|
||||
DEBUG_FUNCTION_LINE("initBeforeEntrypoint = %s", value.c_str());
|
||||
moduleData.setInitBeforeEntrypoint(true);
|
||||
}
|
||||
}if (key.compare("wums") == 0) {
|
||||
if (value.compare("0.1") != 0) {
|
||||
DEBUG_FUNCTION_LINE("Warning: Ignoring module - Unsupported WUMS version: %s.\n", value.c_str());
|
||||
return std::nullopt;
|
||||
|
||||
@@ -70,8 +70,8 @@ bool ModuleDataPersistence::saveModuleData(module_information_t *moduleInformati
|
||||
module_data->sbssSize = module.getSBSSSize();
|
||||
module_data->startAddress = module.getStartAddress();
|
||||
module_data->endAddress = module.getEndAddress();
|
||||
|
||||
module_data->entrypoint = module.getEntrypoint();
|
||||
module_data->initBeforeEntrypoint = module.isInitBeforeEntrypoint();
|
||||
|
||||
moduleInformation->number_used_modules++;
|
||||
|
||||
@@ -104,8 +104,8 @@ std::vector<ModuleData> ModuleDataPersistence::loadModuleData(module_information
|
||||
moduleData.setEntrypoint(module_data->entrypoint);
|
||||
moduleData.setStartAddress(module_data->startAddress);
|
||||
moduleData.setEndAddress(module_data->endAddress);
|
||||
|
||||
moduleData.setExportName(module_data->module_export_name);
|
||||
moduleData.setInitBeforeEntrypoint(module_data->initBeforeEntrypoint);
|
||||
|
||||
for (uint32_t j = 0; j < EXPORT_ENTRY_LIST_LENGTH; j++) {
|
||||
export_data_t *export_entry = &(module_data->export_entries[j]);
|
||||
|
||||
Reference in New Issue
Block a user