Skip to content

Commit

Permalink
Merge pull request #93 from Hamsda:ootr
Browse files Browse the repository at this point in the history
update to version 2.10.0.0
  • Loading branch information
Hamsda authored Sep 25, 2020
2 parents d416e1a + 33926c8 commit 338655e
Show file tree
Hide file tree
Showing 29 changed files with 1,529 additions and 2,263 deletions.
Binary file modified ootrando_overworldmap_hamsda.zip
Binary file not shown.
6 changes: 4 additions & 2 deletions ootrando_overworldmap_hamsda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Some of this functionality might not be immediately obvious:
- Right clicking ![Fairy Ocarina](images/fairyocarina.png "Fairy Ocarina")/![Ocarina of Time](images/ocarina.png "Ocarina of Time") will overlay it with ![Scarecrow](images/overlay_scarecrow.png "Scarecrow") indicating that you have confirmed the scarecrow song or started with free scarecrow. Locations that make use of the scarecrow will not show up unless this is turned on. The location of the scarecrow in Lake Hylia will automatically mark this when cleared first as child and then as adult.
- ![Triforce Piece](images/triforce_piece.png "Triforce Piece") is used as a counter for Triforce pieces in the Triforce Hunt mode.

## Settings (for map variants)
## Settings (for non Entrance Randomizer variants with a map)

There is a variety of toggles available to accomodate the different settings the randomizer offers. The settings are arranged to mimic the current GUI of the randomizer. The default for all of these should match the settings used for the weekly races (check out the OoTR discord for more info).

Expand Down Expand Up @@ -238,7 +238,9 @@ The entrance randomizer variants are very different from the regular map tracker

All locations have a capture spot, where you can mark what is at that location. If the location is useless, just mark off the icon to clean up the map. Later you can see what led where by simply hovering over the locations.

There are two variants, one for keysanity and one without, but none of the items are actually used for "logic" (to show/hide some entrances).
The settings allow you to select which pools are actually shuffled (split based on Dev-R branch, since it is the most popular for ER). If they are not shuffled, the appropriate captures are placed at (almost) all locations and certain locations are hidden since they are useless regardless of any other settings.

There are two variants, one for keysanity and one without, but none of the items are actually used for "logic" (to show/hide entrances).

Additionally there are counters for the useful indoors entrances, so you can evaluate how much focus to put on exploring more entrances:

Expand Down
8 changes: 8 additions & 0 deletions ootrando_overworldmap_hamsda/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.10.0.0

- removed Gossip Stone map
- changed names of most locations based on [this PR](https://github.com/TestRunnerSRL/OoT-Randomizer/pull/1021)
- improved ER map:
- added settings back in
- added default captures for non shuffled locations

## 2.9.6.0

- added Kakariko Gate and Complete Mask Quest settings
Expand Down
Binary file removed ootrando_overworldmap_hamsda/images/gossip_stone.png
Binary file not shown.
Binary file not shown.
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.
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 not shown.
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.
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.
60 changes: 60 additions & 0 deletions ootrando_overworldmap_hamsda/items/options_entrance.json
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
}
]
}
]
20 changes: 0 additions & 20 deletions ootrando_overworldmap_hamsda/layouts/layouts.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,6 @@
}
]
}
},
{
"title": "Gossip Stones",
"icon": "images/gossip_stone.png",
"content": {
"type": "map",
"maps": [
"gossips"
]
}
}
]
},
Expand Down Expand Up @@ -202,16 +192,6 @@
"adult"
]
}
},
{
"title": "Gossip Stones",
"icon": "images/gossip_stone.png",
"content": {
"type": "map",
"maps": [
"gossips"
]
}
}
]
}
Expand Down
12 changes: 12 additions & 0 deletions ootrando_overworldmap_hamsda/layouts/layouts_entrance.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
"type": "group",
"header": "Items",
"dock": "top",
"header_content": {
"type": "button_popup",
"style": "settings",
"popup_background": "#FF212121",
"layout": "options_popup"
},
"content": {
"type": "layout",
"key": "item_grid_tall"
Expand Down Expand Up @@ -113,6 +119,12 @@
"type": "group",
"header": "Items",
"dock": "top",
"header_content": {
"type": "button_popup",
"style": "settings",
"popup_background": "#FF212121",
"layout": "options_popup"
},
"content": {
"type": "layout",
"key": "item_grid_wide"
Expand Down
49 changes: 18 additions & 31 deletions ootrando_overworldmap_hamsda/layouts/options_entrance.json
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"
]
]
}
}
]
}
}
Loading

0 comments on commit 338655e

Please sign in to comment.