From 8dc47095e201af7dbe018cfb5042198890b06790 Mon Sep 17 00:00:00 2001 From: Lila Date: Mon, 19 Aug 2024 15:44:53 +0100 Subject: [PATCH] Add repo settings file Allows fast64 to know a repo's ideal settings as soon as decomp path is picked. Settings are the default except for: Matstack is on Microcode is set to EX2 Force Extended RAM is off because hackersm64 already has it enabled by default Refresh is set to Refresh 13 --- fast64.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 fast64.json diff --git a/fast64.json b/fast64.json new file mode 100644 index 000000000..ebb9fd25c --- /dev/null +++ b/fast64.json @@ -0,0 +1,62 @@ +{ + "version": 1.0, + "autoLoad": true, + "microcode": "F3DEX2/LX2", + "rdpDefaults": { + "geometryMode": { + "zBuffer": true, + "shade": true, + "cullBack": true, + "lighting": true, + "shadeSmooth": true + }, + "otherModeH": { + "textureConvert": "G_TC_FILT", + "textureFilter": "G_TF_BILERP", + "perspectiveCorrection": "G_TP_PERSP", + "pipelineMode": "G_PM_1PRIMITIVE" + }, + "otherModeL": {}, + "other": {} + }, + "sm64": { + "draw_layers": { + "0": { + "cycle_1": "G_RM_ZB_OPA_SURF", + "cycle_2": "G_RM_ZB_OPA_SURF2" + }, + "1": { + "cycle_1": "G_RM_AA_ZB_OPA_SURF", + "cycle_2": "G_RM_AA_ZB_OPA_SURF2" + }, + "2": { + "cycle_1": "G_RM_AA_ZB_OPA_DECAL", + "cycle_2": "G_RM_AA_ZB_OPA_DECAL2" + }, + "3": { + "cycle_1": "G_RM_AA_ZB_OPA_INTER", + "cycle_2": "G_RM_AA_ZB_OPA_INTER2" + }, + "4": { + "cycle_1": "G_RM_AA_ZB_TEX_EDGE", + "cycle_2": "G_RM_AA_ZB_TEX_EDGE2" + }, + "5": { + "cycle_1": "G_RM_AA_ZB_XLU_SURF", + "cycle_2": "G_RM_AA_ZB_XLU_SURF2" + }, + "6": { + "cycle_1": "G_RM_AA_ZB_XLU_DECAL", + "cycle_2": "G_RM_AA_ZB_XLU_DECAL2" + }, + "7": { + "cycle_1": "G_RM_AA_ZB_XLU_INTER", + "cycle_2": "G_RM_AA_ZB_XLU_INTER2" + } + }, + "refresh_version": "Refresh 13", + "compression_format": "mio0", + "force_extended_ram": false, + "matstack_fix": true + } +} \ No newline at end of file