183 lines
4.4 KiB
Lua
183 lines
4.4 KiB
Lua
-- OPTIONS
|
|
|
|
RESET_FOR_TIME = false -- Set to true if you're trying to break the record, not just finish a run
|
|
BEAST_MODE = false -- WARNING: Do not engage. Will yolo everything, and reset at every opportunity in the quest for 1:47.
|
|
|
|
local CUSTOM_SEED = nil -- Set to a known seed to replay it, or leave nil for random runs
|
|
local NIDORAN_NAME = "A" -- Set this to the single character to name Nidoran (note, to replay a seed, it MUST match!)
|
|
local PAINT_ON = true -- Display contextual information while the bot runs
|
|
|
|
-- START CODE (hard hats on)
|
|
|
|
VERSION = "2.0.2"
|
|
|
|
local START_WAIT = 99
|
|
|
|
local Data = require "data.data"
|
|
|
|
Data.init()
|
|
|
|
local Battle = require "action.battle"
|
|
local Textbox = require "action.textbox"
|
|
local Walk = require "action.walk"
|
|
|
|
local Combat = require "ai.combat"
|
|
local Control = require "ai.control"
|
|
local Strategies = require("ai."..Data.gameName..".strategies")
|
|
|
|
local Pokemon = require "storage.pokemon"
|
|
|
|
local Bridge = require "util.bridge"
|
|
local Input = require "util.input"
|
|
local Memory = require "util.memory"
|
|
local Menu = require "util.menu"
|
|
local Paint = require "util.paint"
|
|
local Utils = require "util.utils"
|
|
local Settings = require "util.settings"
|
|
|
|
local hasAlreadyStartedPlaying = false
|
|
local oldSeconds
|
|
local running = true
|
|
local previousMap
|
|
|
|
-- HELPERS
|
|
|
|
local function resetAll()
|
|
Strategies.softReset()
|
|
Combat.reset()
|
|
Control.reset()
|
|
Walk.reset()
|
|
Paint.reset()
|
|
Bridge.reset()
|
|
oldSeconds = 0
|
|
running = false
|
|
|
|
if CUSTOM_SEED then
|
|
Data.run.seed = CUSTOM_SEED
|
|
Strategies.replay = true
|
|
p("RUNNING WITH A FIXED SEED ("..NIDORAN_NAME.." "..Data.run.seed.."), every run will play out identically!", true)
|
|
else
|
|
Data.run.seed = os.time()
|
|
print("PokeBot v"..VERSION..": "..(BEAST_MODE and "BEAST MODE seed" or "starting a new run with seed").." "..Data.run.seed)
|
|
end
|
|
math.randomseed(Data.run.seed)
|
|
end
|
|
|
|
-- EXECUTE
|
|
|
|
p("Welcome to PokeBot "..Utils.capitalize(Data.gameName).." version "..VERSION, true)
|
|
|
|
Control.init()
|
|
|
|
STREAMING_MODE = not Walk.init() and INTERNAL
|
|
|
|
if not INTERNAL or CUSTOM_SEED then
|
|
client.reboot_core()
|
|
else
|
|
hasAlreadyStartedPlaying = Utils.ingame()
|
|
end
|
|
|
|
if STREAMING_MODE then
|
|
if not CUSTOM_SEED then
|
|
RESET_FOR_TIME = true
|
|
end
|
|
Bridge.init(Data.gameName)
|
|
elseif BEAST_MODE then
|
|
RESET_FOR_TIME = true
|
|
else
|
|
if hasAlreadyStartedPlaying and RESET_FOR_TIME then
|
|
RESET_FOR_TIME = false
|
|
p("Disabling time-limit resets as the game is already running. Please reset the emulator and restart the script if you'd like to go for a fast time.", true)
|
|
end
|
|
if PAINT_ON then
|
|
Input.setDebug(true)
|
|
end
|
|
end
|
|
|
|
Strategies.init(hasAlreadyStartedPlaying)
|
|
|
|
-- LOOP
|
|
|
|
local function generateNextInput(currentMap)
|
|
if not Utils.ingame() then
|
|
if currentMap == 0 then
|
|
if running then
|
|
if not hasAlreadyStartedPlaying then
|
|
client.reboot_core()
|
|
hasAlreadyStartedPlaying = true
|
|
else
|
|
resetAll()
|
|
end
|
|
else
|
|
Settings.startNewAdventure(START_WAIT)
|
|
end
|
|
else
|
|
if not running then
|
|
Bridge.liveSplit()
|
|
running = true
|
|
end
|
|
Settings.choosePlayerNames()
|
|
end
|
|
else
|
|
local battleState = Memory.value("game", "battle")
|
|
Control.encounter(battleState)
|
|
|
|
local curr_hp = Combat.hp()
|
|
Combat.updateHP(curr_hp)
|
|
|
|
if curr_hp == 0 and not Control.canDie() and Pokemon.index(0) > 0 then
|
|
Strategies.death(currentMap)
|
|
elseif Walk.strategy then
|
|
if Strategies.execute(Walk.strategy) then
|
|
if Walk.traverse(currentMap) == false then
|
|
return generateNextInput(currentMap)
|
|
end
|
|
end
|
|
elseif battleState > 0 then
|
|
if not Control.shouldCatch(partySize) then
|
|
Battle.automate()
|
|
end
|
|
elseif Textbox.handle() then
|
|
if Walk.traverse(currentMap) == false then
|
|
return generateNextInput(currentMap)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
while true do
|
|
local currentMap = Memory.value("game", "map")
|
|
if currentMap ~= previousMap then
|
|
Input.clear()
|
|
previousMap = currentMap
|
|
end
|
|
if Strategies.frames then
|
|
if Memory.value("game", "battle") == 0 then
|
|
Strategies.frames = Strategies.frames + 1
|
|
end
|
|
Utils.drawText(0, 80, Strategies.frames)
|
|
end
|
|
if Bridge.polling then
|
|
Settings.pollForResponse(NIDORAN_NAME)
|
|
end
|
|
|
|
if not Input.update() then
|
|
generateNextInput(currentMap)
|
|
end
|
|
|
|
if STREAMING_MODE then
|
|
local newSeconds = Memory.value("time", "seconds")
|
|
if newSeconds ~= oldSeconds and (newSeconds > 0 or Memory.value("time", "frames") > 0) then
|
|
Bridge.time(Utils.elapsedTime())
|
|
oldSeconds = newSeconds
|
|
end
|
|
elseif PAINT_ON then
|
|
Paint.draw(currentMap)
|
|
end
|
|
|
|
Input.advance()
|
|
emu.frameadvance()
|
|
end
|
|
|
|
Bridge.close()
|