- Added `wait_for_state` function in `navigation.py` for state monitoring and reaction handling. - Updated `mapping.md` to reflect changes in story sweep implementation and OCR usage. - Refactored `story_sweep.py` to utilize OCR for region and stage identification, replacing random selection with configured targets. - Enhanced modal handling and confirmation checks for AP usage in `story_sweep.py`. - Updated setup script to require `tesseract` for OCR functionality and included installation instructions. - Revised `plan.md` to document the transition from heuristic to OCR-based stage targeting and the associated findings from live testing.
65 lines
2.3 KiB
Bash
Executable File
65 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Bootstrap a fresh clone of this repo so ba_dailies.sh can actually run.
|
|
#
|
|
# Run this ON nik-gpu, from the repo root (e.g. after `git clone` there) --
|
|
# not from macOS, since it installs into nik-gpu-local paths.
|
|
#
|
|
# It does NOT touch the game or take any screenshots; it only installs the
|
|
# venv and copies files to the fixed paths ba_dailies.sh/ba_daily.py/ba_auto
|
|
# expect (outside the repo, per the two-machine deploy convention in
|
|
# CLAUDE.md).
|
|
set -e
|
|
|
|
VENV_DIR="$HOME/.venvs/ba-auto-daily"
|
|
ASSETS_DIR="$HOME/ba_assets"
|
|
|
|
echo "== Checking host tools =="
|
|
missing=0
|
|
for cmd in xdotool scrot; do
|
|
if ! command -v "$cmd" >/dev/null 2>&1; then
|
|
echo "MISSING: $cmd (install with your package manager, e.g. sudo apt install $cmd)"
|
|
missing=1
|
|
fi
|
|
done
|
|
if [ "$missing" = 1 ]; then
|
|
echo "Install the missing tool(s) above, then re-run this script."
|
|
exit 1
|
|
fi
|
|
echo "xdotool, scrot: OK"
|
|
|
|
if ! command -v tesseract >/dev/null 2>&1; then
|
|
echo "MISSING: tesseract (OCR engine binary -- e.g. sudo apt install tesseract-ocr)"
|
|
echo "story_sweep's region/stage-label OCR (see CLAUDE.md \"OCR policy\") needs this."
|
|
echo "This requires a password-interactive sudo, so it isn't installed for you here --"
|
|
echo "install it yourself, then re-run this script."
|
|
missing=1
|
|
fi
|
|
if [ "$missing" = 1 ]; then
|
|
exit 1
|
|
fi
|
|
echo "tesseract: OK"
|
|
|
|
echo "== Setting up Python venv at $VENV_DIR =="
|
|
if [ ! -x "$VENV_DIR/bin/python3" ]; then
|
|
python3 -m venv "$VENV_DIR"
|
|
fi
|
|
"$VENV_DIR/bin/pip" install --quiet --upgrade pip
|
|
"$VENV_DIR/bin/pip" install --quiet opencv-python-headless numpy pytesseract
|
|
"$VENV_DIR/bin/python3" -c "import cv2, numpy; print('opencv', cv2.__version__, '/ numpy', numpy.__version__)"
|
|
"$VENV_DIR/bin/python3" -c "import pytesseract; print('pytesseract', pytesseract.get_tesseract_version())"
|
|
|
|
echo "== Deploying assets to fixed paths =="
|
|
mkdir -p "$ASSETS_DIR"
|
|
cp assets/cafe_sparkle.png "$ASSETS_DIR/cafe_sparkle.png"
|
|
|
|
echo "== Deploying Python-first entry point =="
|
|
cp ba_dailies.sh "$HOME/ba_dailies.sh"
|
|
chmod +x "$HOME/ba_dailies.sh"
|
|
cp ba_daily.py "$HOME/ba_daily.py"
|
|
rm -rf "$HOME/ba_auto"
|
|
cp -r ba_auto "$HOME/ba_auto"
|
|
|
|
echo "== Done =="
|
|
echo "Run with: ~/ba_dailies.sh [mailbox|cafe|stamina|story_sweep]"
|
|
echo "(requires the game already running, window titled 'BlueArchive')"
|