Skip to content
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

Merged
merged 7 commits into from
Nov 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion battle/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2271,7 +2271,6 @@ def fullheal(target: int, direction: str):


# Process written by CrimsonInferno
@battle.utils.speedup_decorator
Copy link
Collaborator Author

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.

def wendigo_res_heal(turn_char: int, use_power_break: int, tidus_max_hp: int):
print("Wendigo Res/Heal function")
party_hp = memory.main.get_battle_hp()
Expand Down
5 changes: 3 additions & 2 deletions battle/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The 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()
Expand Down
4 changes: 4 additions & 0 deletions memory/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2295,6 +2295,10 @@ def set_encounter_rate(set_val):
process.write_bytes(key, set_val, 1)


def get_game_speed():
return read_val(0x008E82A4)


def set_game_speed(set_val):
global base_value

Expand Down
14 changes: 7 additions & 7 deletions nemesis/arenaPrep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator Author

Choose a reason for hiding this comment

The 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()
Expand All @@ -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()
Expand All @@ -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:
Expand All @@ -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:
Expand Down
Binary file added tas_saves/ffx_019
Binary file not shown.