├── .gitignore ├── README.md ├── create_img ├── img_collection.py └── scrcpy_adb_c_img.py ├── data_const ├── __pycache__ │ └── coordinate.cpython-39.pyc └── coordinate.py ├── device_manager ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── constant.cpython-39.pyc │ └── scrcpy_adb.cpython-39.pyc ├── auto_cleaning_queue.py ├── constant.py └── scrcpy_adb.py ├── game ├── __init__.py ├── __pycache__ │ └── __init__.cpython-39.pyc ├── dengeon │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── game_action.cpython-39.pyc │ └── game_action.py └── hero_control │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── axl.cpython-39.pyc │ ├── hero_control.cpython-39.pyc │ ├── hero_control_base.cpython-39.pyc │ ├── hong_yan.cpython-39.pyc │ ├── hua_hua.cpython-39.pyc │ ├── jian_zong.cpython-39.pyc │ ├── nai_ma.cpython-39.pyc │ └── wu_shen.cpython-39.pyc │ ├── axl.py │ ├── hero_control.py │ ├── hero_control_base.py │ ├── hong_yan.py │ ├── hua_hua.py │ ├── jian_zong.py │ ├── nai_ma.py │ └── wu_shen.py ├── main.py ├── model ├── best.onnx ├── dnfm_bigold.onnx ├── new.bin ├── new.param └── new.txt └── utils ├── __pycache__ ├── logger.cpython-39.pyc ├── path_manager.cpython-39.pyc └── yolov5.cpython-39.pyc ├── logger.py ├── path_manager.py ├── yolov5.py └── yolov5_onnx.py /.gitignore: -------------------------------------------------------------------------------- 1 | /logs 2 | /create_img/img 3 | */__pycache__ 4 | /model -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/README.md -------------------------------------------------------------------------------- /create_img/img_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/create_img/img_collection.py -------------------------------------------------------------------------------- /create_img/scrcpy_adb_c_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/create_img/scrcpy_adb_c_img.py -------------------------------------------------------------------------------- /data_const/__pycache__/coordinate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/data_const/__pycache__/coordinate.cpython-39.pyc -------------------------------------------------------------------------------- /data_const/coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/data_const/coordinate.py -------------------------------------------------------------------------------- /device_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /device_manager/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /device_manager/__pycache__/constant.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/__pycache__/constant.cpython-39.pyc -------------------------------------------------------------------------------- /device_manager/__pycache__/scrcpy_adb.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/__pycache__/scrcpy_adb.cpython-39.pyc -------------------------------------------------------------------------------- /device_manager/auto_cleaning_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/auto_cleaning_queue.py -------------------------------------------------------------------------------- /device_manager/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/constant.py -------------------------------------------------------------------------------- /device_manager/scrcpy_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/device_manager/scrcpy_adb.py -------------------------------------------------------------------------------- /game/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /game/dengeon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/dengeon/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/dengeon/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /game/dengeon/__pycache__/game_action.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/dengeon/__pycache__/game_action.cpython-39.pyc -------------------------------------------------------------------------------- /game/dengeon/game_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/dengeon/game_action.py -------------------------------------------------------------------------------- /game/hero_control/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/hero_control/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/axl.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/axl.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/hero_control.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/hero_control.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/hero_control_base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/hero_control_base.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/hong_yan.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/hong_yan.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/hua_hua.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/hua_hua.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/jian_zong.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/jian_zong.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/nai_ma.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/nai_ma.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/__pycache__/wu_shen.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/__pycache__/wu_shen.cpython-39.pyc -------------------------------------------------------------------------------- /game/hero_control/axl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/axl.py -------------------------------------------------------------------------------- /game/hero_control/hero_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/hero_control.py -------------------------------------------------------------------------------- /game/hero_control/hero_control_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/hero_control_base.py -------------------------------------------------------------------------------- /game/hero_control/hong_yan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/hong_yan.py -------------------------------------------------------------------------------- /game/hero_control/hua_hua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/hua_hua.py -------------------------------------------------------------------------------- /game/hero_control/jian_zong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/jian_zong.py -------------------------------------------------------------------------------- /game/hero_control/nai_ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/nai_ma.py -------------------------------------------------------------------------------- /game/hero_control/wu_shen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/game/hero_control/wu_shen.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/main.py -------------------------------------------------------------------------------- /model/best.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/model/best.onnx -------------------------------------------------------------------------------- /model/dnfm_bigold.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/model/dnfm_bigold.onnx -------------------------------------------------------------------------------- /model/new.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/model/new.bin -------------------------------------------------------------------------------- /model/new.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/model/new.param -------------------------------------------------------------------------------- /model/new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/model/new.txt -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/__pycache__/logger.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/path_manager.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/__pycache__/path_manager.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/yolov5.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/__pycache__/yolov5.cpython-39.pyc -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/path_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/path_manager.py -------------------------------------------------------------------------------- /utils/yolov5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/yolov5.py -------------------------------------------------------------------------------- /utils/yolov5_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcy1314/dnfm-auto-script/HEAD/utils/yolov5_onnx.py --------------------------------------------------------------------------------