-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 4x speed at wendigo #223
Changes from all commits
8acfc83
b9361b7
d09f4c4
f285441
a8f0433
45f8e0d
ea8565a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,19 +15,20 @@ def _monitor_battle(): | |
while not memory.main.battle_active(): | ||
pass | ||
fast = False | ||
old_game_speed = memory.main.get_game_speed() | ||
while memory.main.battle_active(): | ||
if fast and memory.main.auditory_dialog_playing(): | ||
memory.main.set_game_speed(0) | ||
fast = False | ||
elif not fast: | ||
memory.main.set_game_speed(2) | ||
fast = True | ||
memory.main.set_game_speed(0) | ||
memory.main.set_game_speed(old_game_speed) | ||
|
||
def wrapper(*args, **kwargs): | ||
if game_vars.get_battle_speedup(): | ||
logger.debug(f"Speeding battle up: {func.__name__}") | ||
monitor = threading.Thread(target=_monitor_battle) | ||
monitor = threading.Thread(target=_monitor_battle, daemon=True) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This fixes the CTRL-C issue when you kill the TAS during combat when 4x speed is auto-enabled for combat. Also tested this locally. |
||
monitor.start() | ||
ret_val = func(*args, **kwargs) | ||
monitor.join() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -490,23 +490,23 @@ def advanced_battle_logic(): | |
# Double Gemini, two different locations | ||
if memory.main.get_use_items_slot(42) < 100: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(42), rikku_flee=False | ||
memory.main.get_use_items_slot(42), rikku_flee=True | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. According to @coderwilson these all needed to be toggled, I have not actually tested this yet, but plan to either tonight or tomorrow. |
||
) | ||
else: | ||
battle.main.defend() | ||
elif encounter_id == 386: | ||
# Armor bomber guys | ||
if memory.main.get_use_items_slot(41) < 100: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(41), rikku_flee=False | ||
memory.main.get_use_items_slot(41), rikku_flee=True | ||
) | ||
else: | ||
battle.main.defend() | ||
elif encounter_id in [430]: | ||
# Demonolith | ||
if memory.main.get_use_items_slot(41) < 100: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(41), rikku_flee=False | ||
memory.main.get_use_items_slot(41), rikku_flee=True | ||
) | ||
else: | ||
battle.main.defend() | ||
|
@@ -517,7 +517,7 @@ def advanced_battle_logic(): | |
) | ||
if memory.main.get_use_items_slot(41) < 100: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(41), rikku_flee=False | ||
memory.main.get_use_items_slot(41), rikku_flee=True | ||
) | ||
else: | ||
battle.main.defend() | ||
|
@@ -533,13 +533,13 @@ def advanced_battle_logic(): | |
# Varuna, use purifying salt to remove haste | ||
# Safety potions are fun. | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(63), rikku_flee=False | ||
memory.main.get_use_items_slot(63), rikku_flee=True | ||
) | ||
elif encounter_id == 426: | ||
# Master Tonberry | ||
if not sleepPowder: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(37), rikku_flee=False | ||
memory.main.get_use_items_slot(37), rikku_flee=True | ||
) | ||
else: | ||
if memory.main.get_use_items_slot(41) < 100: | ||
|
@@ -556,7 +556,7 @@ def advanced_battle_logic(): | |
): | ||
if not sleepPowder: | ||
battle.main.use_item( | ||
memory.main.get_use_items_slot(37), rikku_flee=False | ||
memory.main.get_use_items_slot(37), rikku_flee=True | ||
) | ||
else: | ||
if memory.main.get_use_items_slot(41) < 100: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the wendigo fight, tested it on my machine.