Data: add Fishing Resort, Silent Hill, and Wind Waker mods to avoid users having to enable frame buffer copies to Ram manually.

This commit is contained in:
iwubcode 2023-09-03 19:10:24 -05:00
parent 75bb772cda
commit 91fb32434c
6 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{
"meta":
{
"title": "Performance Fixes",
"author": "iwubcode",
"description": "Automatically disables 'Store EFB Copies to Texture Only' when viewing unknown photo fish in the photobook."
},
"groups":
[
{
"name": "InvisiblePhotoFish",
"targets": [
{
"type": "efb",
"texture_filename": "efb1_n000920_256x256_3"
},
{
"type": "efb",
"texture_filename": "efb1_n000921_128x128_3"
},
{
"type": "efb",
"texture_filename": "efb1_n005662_448x448_3"
}
]
}
],
"features":
[
{
"group": "InvisiblePhotoFish",
"action": "set_settings",
"action_data":
{
"setting_name": "skip_efb_to_ram",
"setting_value": false
}
}
]
}

View file

@ -0,0 +1,32 @@
{
"meta":
{
"title": "Performance Fixes",
"author": "iwubcode",
"description": "Automatically disables 'Store EFB Copies to Texture Only' during scenes when snow falls."
},
"groups":
[
{
"name": "Snow",
"targets": [
{
"type": "efb",
"texture_filename": "efb1_n000387_256x256_3"
}
]
}
],
"features":
[
{
"group": "Snow",
"action": "set_settings",
"action_data":
{
"setting_name": "skip_efb_to_ram",
"setting_value": false
}
}
]
}

View file

@ -0,0 +1,49 @@
{
"meta":
{
"title": "Windwaker Performance Fixes",
"author": "iwubcode",
"description": "Automatically disables 'Store EFB Copies to Texture Only' during pictograph gameplay."
},
"groups":
[
{
"name": "PictographStart",
"targets": [
{
"type": "draw_started",
"texture_filename": "tex1_32x224_ccd5b94c8c1af275_14"
}
]
},
{
"name": "PictographEnd",
"targets": [
{
"type": "draw_started",
"texture_filename": "tex1_24x24_7e201aa9d5e4a597_598b8b532cc3e935_9"
}
]
}
],
"features":
[
{
"group": "PictographStart",
"action": "set_settings",
"action_data":
{
"setting_name": "skip_efb_to_ram",
"setting_value": false
}
},
{
"group": "PictographEnd",
"action": "set_settings",
"action_data":
{
"setting_name": "skip_efb_to_ram"
}
}
]
}