diff --git a/CLI.py b/CLI.py index 06f36e53..a3489915 100644 --- a/CLI.py +++ b/CLI.py @@ -160,8 +160,8 @@ def parse_settings(): "keyshuffle": False, "bigkeyshuffle": False, "keysanity": False, - "door_shuffle": "basic", - "intensity": 2, + "door_shuffle": "none", + "intensity": 3, "experimental": False, "dungeon_counters": "default", "mixed_travel": "prevent", diff --git a/Rom.py b/Rom.py index bb989a39..00572619 100644 --- a/Rom.py +++ b/Rom.py @@ -27,7 +27,7 @@ from EntranceShuffle import door_addresses, exit_ids JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = 'fe3da939a159ce3e7ff37442d265b94f' +RANDOMIZERBASEHASH = 'e78243509664e63d4cd02047c80db209' class JsonRom(object): diff --git a/asm/owrando.asm b/asm/owrando.asm index 7b88a30a..a56edf06 100644 --- a/asm/owrando.asm +++ b/asm/owrando.asm @@ -87,11 +87,12 @@ OWShuffle: inx : lda.l OWEdgeOffsets,x ;record id of first transition in table ;multiply ^ by 26, 26bytes per record - stz $211c ;ensure the next write to $211b counts as the first write - sta $211b : stz $211b : lda #26 : sta $211c : pla ;a = number of trans - ldx $2134 ;x = offset to first record + sta $4202 : lda #26 : sta $4203 + ;do something else for 8 cycles before getting the result + pla ;a = number of trans rep #$20 and #$00ff + ldx $4216 ;x = offset to first record .nextTransition pha @@ -159,8 +160,11 @@ OWSearchTransition: } OWNewDestination: { - tya : sta $211b : stz $211b : lda #26 : sta $211c : rep #$20 : lda $2134 - phx : !add 1,s : plx : !add #$0006 : tax ;a = offset to dest record + tya : sta $4202 : lda #26 : sta $4203 + ;do something else for 8 cycles before getting the result + rep #$20 + txa : !add #$0006 + adc $4216 : tax ;a = offset to dest record lda.w $0000,x : sta $06 ; set coord inx #2 : lda.w $0000,x : sta $04 ;save dest OW slot/ID ;I thought I'd need some of these values below, but I likely dont need any of them diff --git a/data/base2current.bps b/data/base2current.bps index a39fb41a..094bb81b 100644 Binary files a/data/base2current.bps and b/data/base2current.bps differ