├── .gitignore ├── README.md ├── RL_brain.py ├── agent.py ├── dm ├── .gitignore ├── .ipynb_checkpoints │ └── Untitled-checkpoint.ipynb ├── DmCommucation.py ├── Fdm │ ├── 2.1142.zip │ ├── RegDll.dll │ ├── capture_file.bmp │ ├── cfg.ini │ ├── dm.dll │ ├── 偏色计算器.exe │ ├── 大漠接口说明.CHM │ ├── 大漠接口说明.chw │ ├── 大漠插件绑定测试工具.exe │ ├── 大漠综合工具.exe │ └── 注册大漠插件.bat ├── MainCommucation.py ├── __init__.py ├── data │ ├── 0.txt │ ├── 1.txt │ └── 1024.txt ├── dm.py ├── dm_setting.py └── resource │ ├── PLAY.png │ ├── X.png │ ├── hanbing.png │ ├── kaishiyouxi.png │ ├── queren.png │ ├── queren2.png │ ├── screen.png │ ├── xialu.png │ ├── xiaopao.png │ ├── xunlian.png │ └── xunlianmoshi.png ├── manager.py ├── model └── Money.h5 ├── modelManger.py ├── operater.py ├── p.png ├── paramsExtract ├── .gitignore ├── HPextracter │ ├── .gitignore │ ├── HPextracter.py │ └── __init__.py ├── Tower&safe_area │ ├── 1.png │ ├── 41.png │ ├── 42.png │ ├── 43.png │ ├── 44.png │ ├── __init__.py │ └── safe_area&tower.py ├── __init__.py ├── action_params │ ├── __init__.py │ └── action_params.py ├── currentExp │ ├── __init__.py │ └── currentExp.py ├── defense_tower_detact │ ├── __init__.py │ ├── ally_neita.png │ ├── ally_waita.png │ ├── defense_tower_position_detect.py │ ├── enemy_neita.png │ ├── enemy_waita.png │ ├── neita_mask.png │ └── waita_mask.png ├── heroAndSoldierPostionDetact │ ├── .gitignore │ ├── __init__.py │ ├── heroAndSoldierPostionDetact.py │ ├── mask3.png │ ├── ori2.png │ ├── oriImg.jpg │ ├── p.png │ ├── p15.png │ ├── p2.png │ ├── pic │ │ ├── ptest_img2053.png │ │ ├── ptest_img7053.png │ │ ├── test_img.png │ │ ├── test_img2.png │ │ └── test_img3.png │ ├── soldier_hp_self.png │ ├── target.png │ ├── xiaobingHP.png │ ├── xiaobingHP2.png │ ├── xiaobingHP3.png │ ├── xiaobingHP_mask.png │ ├── xiaobingHP_mask2.png │ ├── xiaobingHP_mask3.png │ └── xiaobingHP_mask_l.png ├── mapPostionExtracter │ ├── __init__.py │ └── mapPostionExtracter.py ├── money_detact │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── f0.png │ └── money.py ├── p.png └── paramsExtracter.py ├── picProcessor.py ├── presetAction ├── Buyequip │ ├── Buyequip.py │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc.1870769873584 │ └── duolan.png ├── __init__.py └── game_set │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-37.pyc.1870769873584 │ ├── camera.png │ ├── duolan.png │ └── game_set.py ├── res ├── Screen01.png ├── Screen02.png ├── Screen03.png ├── Screen04.png ├── Screen05.png ├── Screen06.png ├── Screen07.png ├── Screen08.png ├── Screen09.png ├── Screen10.png ├── Screen11.png ├── Screen12.png ├── Screen13.png ├── Screen14.png ├── Screen15.png ├── Screen16.png ├── Screen17.png ├── Screen18.png ├── Screen19.png └── money.png ├── resource ├── GAME_STATE_CHECK_RUNNING.bmp ├── GAME_STATE_CHECK_RUNNING2.png └── xie.png ├── reviewAndTrain ├── __init__.py ├── ans │ └── game0 │ │ └── infor.txt ├── dataStore.py └── res.png ├── run.bat ├── runDm.bat ├── runMain.bat ├── setting.py ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/README.md -------------------------------------------------------------------------------- /RL_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/RL_brain.py -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/agent.py -------------------------------------------------------------------------------- /dm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/.gitignore -------------------------------------------------------------------------------- /dm/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /dm/DmCommucation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/DmCommucation.py -------------------------------------------------------------------------------- /dm/Fdm/2.1142.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/2.1142.zip -------------------------------------------------------------------------------- /dm/Fdm/RegDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/RegDll.dll -------------------------------------------------------------------------------- /dm/Fdm/capture_file.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/capture_file.bmp -------------------------------------------------------------------------------- /dm/Fdm/cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/cfg.ini -------------------------------------------------------------------------------- /dm/Fdm/dm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/dm.dll -------------------------------------------------------------------------------- /dm/Fdm/偏色计算器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/偏色计算器.exe -------------------------------------------------------------------------------- /dm/Fdm/大漠接口说明.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/大漠接口说明.CHM -------------------------------------------------------------------------------- /dm/Fdm/大漠接口说明.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/大漠接口说明.chw -------------------------------------------------------------------------------- /dm/Fdm/大漠插件绑定测试工具.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/大漠插件绑定测试工具.exe -------------------------------------------------------------------------------- /dm/Fdm/大漠综合工具.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/Fdm/大漠综合工具.exe -------------------------------------------------------------------------------- /dm/Fdm/注册大漠插件.bat: -------------------------------------------------------------------------------- 1 | regsvr32 dm.dll -------------------------------------------------------------------------------- /dm/MainCommucation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/MainCommucation.py -------------------------------------------------------------------------------- /dm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dm/data/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/data/0.txt -------------------------------------------------------------------------------- /dm/data/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/data/1.txt -------------------------------------------------------------------------------- /dm/data/1024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/data/1024.txt -------------------------------------------------------------------------------- /dm/dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/dm.py -------------------------------------------------------------------------------- /dm/dm_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/dm_setting.py -------------------------------------------------------------------------------- /dm/resource/PLAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/PLAY.png -------------------------------------------------------------------------------- /dm/resource/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/X.png -------------------------------------------------------------------------------- /dm/resource/hanbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/hanbing.png -------------------------------------------------------------------------------- /dm/resource/kaishiyouxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/kaishiyouxi.png -------------------------------------------------------------------------------- /dm/resource/queren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/queren.png -------------------------------------------------------------------------------- /dm/resource/queren2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/queren2.png -------------------------------------------------------------------------------- /dm/resource/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/screen.png -------------------------------------------------------------------------------- /dm/resource/xialu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/xialu.png -------------------------------------------------------------------------------- /dm/resource/xiaopao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/xiaopao.png -------------------------------------------------------------------------------- /dm/resource/xunlian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/xunlian.png -------------------------------------------------------------------------------- /dm/resource/xunlianmoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/dm/resource/xunlianmoshi.png -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/Money.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/model/Money.h5 -------------------------------------------------------------------------------- /modelManger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/modelManger.py -------------------------------------------------------------------------------- /operater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/operater.py -------------------------------------------------------------------------------- /p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/p.png -------------------------------------------------------------------------------- /paramsExtract/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /paramsExtract/HPextracter/.gitignore: -------------------------------------------------------------------------------- 1 | /ans/ 2 | /__pycache__/ 3 | -------------------------------------------------------------------------------- /paramsExtract/HPextracter/HPextracter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/HPextracter/HPextracter.py -------------------------------------------------------------------------------- /paramsExtract/HPextracter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/1.png -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/41.png -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/42.png -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/43.png -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/44.png -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/Tower&safe_area/safe_area&tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/Tower&safe_area/safe_area&tower.py -------------------------------------------------------------------------------- /paramsExtract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/action_params/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/action_params/action_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/action_params/action_params.py -------------------------------------------------------------------------------- /paramsExtract/currentExp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/currentExp/currentExp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/currentExp/currentExp.py -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/ally_neita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/ally_neita.png -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/ally_waita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/ally_waita.png -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/defense_tower_position_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/defense_tower_position_detect.py -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/enemy_neita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/enemy_neita.png -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/enemy_waita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/enemy_waita.png -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/neita_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/neita_mask.png -------------------------------------------------------------------------------- /paramsExtract/defense_tower_detact/waita_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/defense_tower_detact/waita_mask.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/.gitignore -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/heroAndSoldierPostionDetact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/heroAndSoldierPostionDetact.py -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/mask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/mask3.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/ori2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/ori2.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/oriImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/oriImg.jpg -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/p.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/p15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/p15.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/p2.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/pic/ptest_img2053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/pic/ptest_img2053.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/pic/ptest_img7053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/pic/ptest_img7053.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/pic/test_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/pic/test_img.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/pic/test_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/pic/test_img2.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/pic/test_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/pic/test_img3.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/soldier_hp_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/soldier_hp_self.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/target.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP2.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP3.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask2.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask3.png -------------------------------------------------------------------------------- /paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/heroAndSoldierPostionDetact/xiaobingHP_mask_l.png -------------------------------------------------------------------------------- /paramsExtract/mapPostionExtracter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paramsExtract/mapPostionExtracter/mapPostionExtracter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/mapPostionExtracter/mapPostionExtracter.py -------------------------------------------------------------------------------- /paramsExtract/money_detact/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/0.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/1.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/2.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/3.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/4.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/5.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/6.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/7.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/8.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/9.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/f0.png -------------------------------------------------------------------------------- /paramsExtract/money_detact/money.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/money_detact/money.py -------------------------------------------------------------------------------- /paramsExtract/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/p.png -------------------------------------------------------------------------------- /paramsExtract/paramsExtracter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/paramsExtract/paramsExtracter.py -------------------------------------------------------------------------------- /picProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/picProcessor.py -------------------------------------------------------------------------------- /presetAction/Buyequip/Buyequip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/Buyequip/Buyequip.py -------------------------------------------------------------------------------- /presetAction/Buyequip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presetAction/Buyequip/__pycache__/__init__.cpython-37.pyc.1870769873584: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/Buyequip/__pycache__/__init__.cpython-37.pyc.1870769873584 -------------------------------------------------------------------------------- /presetAction/Buyequip/duolan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/Buyequip/duolan.png -------------------------------------------------------------------------------- /presetAction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presetAction/game_set/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presetAction/game_set/__pycache__/__init__.cpython-37.pyc.1870769873584: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/game_set/__pycache__/__init__.cpython-37.pyc.1870769873584 -------------------------------------------------------------------------------- /presetAction/game_set/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/game_set/camera.png -------------------------------------------------------------------------------- /presetAction/game_set/duolan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/game_set/duolan.png -------------------------------------------------------------------------------- /presetAction/game_set/game_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/presetAction/game_set/game_set.py -------------------------------------------------------------------------------- /res/Screen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen01.png -------------------------------------------------------------------------------- /res/Screen02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen02.png -------------------------------------------------------------------------------- /res/Screen03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen03.png -------------------------------------------------------------------------------- /res/Screen04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen04.png -------------------------------------------------------------------------------- /res/Screen05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen05.png -------------------------------------------------------------------------------- /res/Screen06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen06.png -------------------------------------------------------------------------------- /res/Screen07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen07.png -------------------------------------------------------------------------------- /res/Screen08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen08.png -------------------------------------------------------------------------------- /res/Screen09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen09.png -------------------------------------------------------------------------------- /res/Screen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen10.png -------------------------------------------------------------------------------- /res/Screen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen11.png -------------------------------------------------------------------------------- /res/Screen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen12.png -------------------------------------------------------------------------------- /res/Screen13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen13.png -------------------------------------------------------------------------------- /res/Screen14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen14.png -------------------------------------------------------------------------------- /res/Screen15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen15.png -------------------------------------------------------------------------------- /res/Screen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen16.png -------------------------------------------------------------------------------- /res/Screen17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen17.png -------------------------------------------------------------------------------- /res/Screen18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen18.png -------------------------------------------------------------------------------- /res/Screen19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/Screen19.png -------------------------------------------------------------------------------- /res/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/res/money.png -------------------------------------------------------------------------------- /resource/GAME_STATE_CHECK_RUNNING.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/resource/GAME_STATE_CHECK_RUNNING.bmp -------------------------------------------------------------------------------- /resource/GAME_STATE_CHECK_RUNNING2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/resource/GAME_STATE_CHECK_RUNNING2.png -------------------------------------------------------------------------------- /resource/xie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/resource/xie.png -------------------------------------------------------------------------------- /reviewAndTrain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/reviewAndTrain/__init__.py -------------------------------------------------------------------------------- /reviewAndTrain/ans/game0/infor.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reviewAndTrain/dataStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/reviewAndTrain/dataStore.py -------------------------------------------------------------------------------- /reviewAndTrain/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/reviewAndTrain/res.png -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/run.bat -------------------------------------------------------------------------------- /runDm.bat: -------------------------------------------------------------------------------- 1 | D:\software\Anaconda3-32bit\python.exe dm/dm.py 2 | pause -------------------------------------------------------------------------------- /runMain.bat: -------------------------------------------------------------------------------- 1 | python agent.py 2 | pause -------------------------------------------------------------------------------- /setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/setting.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firesuiry/autoLOL/HEAD/train.py --------------------------------------------------------------------------------