-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added settings back in - added default captures for non shuffled locations refactored some of the shared logic as well
- Loading branch information
Showing
20 changed files
with
410 additions
and
284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file added
BIN
+2.36 KB
ootrando_overworldmap_hamsda/images/setting_entrance_dungeons_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.32 KB
ootrando_overworldmap_hamsda/images/setting_entrance_dungeons_shuffle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.28 KB
ootrando_overworldmap_hamsda/images/setting_entrance_grottos_shuffle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added
BIN
+1.78 KB
ootrando_overworldmap_hamsda/images/setting_entrance_interiors_all.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.83 KB
ootrando_overworldmap_hamsda/images/setting_entrance_interiors_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.76 KB
ootrando_overworldmap_hamsda/images/setting_entrance_interiors_simple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[ | ||
{ | ||
"name": "Shuffle Interior Entrances", | ||
"type": "progressive", | ||
"allow_disabled": false, | ||
"loop": true, | ||
"initial_stage_idx": 2, | ||
"stages": [ | ||
{ | ||
"img": "images/setting_entrance_interiors_off.png", | ||
"codes": "setting_entrance_interiors,setting_entrance_interiors_off" | ||
}, | ||
{ | ||
"img": "images/setting_entrance_interiors_simple.png", | ||
"codes": "setting_entrance_interiors,setting_entrance_interiors_simple", | ||
"inherits_codes": false | ||
}, | ||
{ | ||
"img": "images/setting_entrance_interiors_all.png", | ||
"codes": "setting_entrance_interiors_all" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Shuffle Grotto Entrances", | ||
"type": "progressive", | ||
"allow_disabled": false, | ||
"loop": true, | ||
"initial_stage_idx": 1, | ||
"stages": [ | ||
{ | ||
"img": "images/setting_entrance_grottos_off.png", | ||
"codes": "setting_entrance_grottos,setting_entrance_grottos_off" | ||
}, | ||
{ | ||
"img": "images/setting_entrance_grottos_shuffle.png", | ||
"codes": "setting_entrance_grottos,setting_entrance_grottos_shuffle", | ||
"inherits_codes": false | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Shuffle Dungeon Entrances", | ||
"type": "progressive", | ||
"allow_disabled": false, | ||
"loop": true, | ||
"initial_stage_idx": 1, | ||
"stages": [ | ||
{ | ||
"img": "images/setting_entrance_dungeons_off.png", | ||
"codes": "setting_entrance_dungeons,setting_entrance_dungeons_off" | ||
}, | ||
{ | ||
"img": "images/setting_entrance_dungeons_shuffle.png", | ||
"codes": "setting_entrance_dungeons,setting_entrance_dungeons_shuffle", | ||
"inherits_codes": false | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 18 additions & 31 deletions
49
ootrando_overworldmap_hamsda/layouts/options_entrance.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,22 @@ | ||
{ | ||
"options_tall": { | ||
"type": "itemgrid", | ||
"h_alignment": "left", | ||
"item_margin": "1,2", | ||
"rows": [ | ||
[ | ||
"setting_entrance", | ||
"", | ||
"", | ||
"", | ||
"", | ||
"" | ||
] | ||
] | ||
}, | ||
"options_wide": { | ||
"type": "itemgrid", | ||
"h_alignment": "left", | ||
"item_margin": "1,2", | ||
"rows": [ | ||
[ | ||
"setting_entrance", | ||
"", | ||
"", | ||
"", | ||
"", | ||
"", | ||
"", | ||
"", | ||
"" | ||
] | ||
"options_popup": { | ||
"type": "tabbed", | ||
"tabs": [ | ||
{ | ||
"title": "Main Rules", | ||
"content": { | ||
"type": "itemgrid", | ||
//"h_alignment": "left", | ||
"item_margin": "1,2", | ||
"rows": [ | ||
[ | ||
"setting_entrance_interiors", | ||
"setting_entrance_grottos", | ||
"setting_entrance_dungeons" | ||
] | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.