├── .gitignore ├── README.md ├── configuration ├── __init__.py ├── constants.py ├── exceptions.py ├── file_templates │ └── config_template.yaml ├── logger_manager.py ├── project_config.py └── project_loader.py ├── core ├── __init__.py ├── blum_ai_clicker.py ├── image_processor.py ├── objects │ ├── __init__.py │ ├── non_clickable_area.py │ └── screen_resolution.py └── window_capture.py ├── main.py ├── requirements.txt ├── utils ├── __init__.py ├── console_utils.py └── file_utils.py └── yolov4-tiny ├── obj.data ├── obj.names ├── process.py ├── training ├── placeholder.txt └── yolov4-tiny-custom_last.weights ├── yolov4-tiny-custom.cfg ├── yolov4-tiny-custom_template.cfg └── yolov4-tiny.conv.29 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/README.md -------------------------------------------------------------------------------- /configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/__init__.py -------------------------------------------------------------------------------- /configuration/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/constants.py -------------------------------------------------------------------------------- /configuration/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/exceptions.py -------------------------------------------------------------------------------- /configuration/file_templates/config_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/file_templates/config_template.yaml -------------------------------------------------------------------------------- /configuration/logger_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/logger_manager.py -------------------------------------------------------------------------------- /configuration/project_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/project_config.py -------------------------------------------------------------------------------- /configuration/project_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/configuration/project_loader.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/blum_ai_clicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/blum_ai_clicker.py -------------------------------------------------------------------------------- /core/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/image_processor.py -------------------------------------------------------------------------------- /core/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/objects/__init__.py -------------------------------------------------------------------------------- /core/objects/non_clickable_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/objects/non_clickable_area.py -------------------------------------------------------------------------------- /core/objects/screen_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/objects/screen_resolution.py -------------------------------------------------------------------------------- /core/window_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/core/window_capture.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/console_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/utils/console_utils.py -------------------------------------------------------------------------------- /utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/utils/file_utils.py -------------------------------------------------------------------------------- /yolov4-tiny/obj.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/obj.data -------------------------------------------------------------------------------- /yolov4-tiny/obj.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/obj.names -------------------------------------------------------------------------------- /yolov4-tiny/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/process.py -------------------------------------------------------------------------------- /yolov4-tiny/training/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolov4-tiny/training/yolov4-tiny-custom_last.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/training/yolov4-tiny-custom_last.weights -------------------------------------------------------------------------------- /yolov4-tiny/yolov4-tiny-custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/yolov4-tiny-custom.cfg -------------------------------------------------------------------------------- /yolov4-tiny/yolov4-tiny-custom_template.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/yolov4-tiny-custom_template.cfg -------------------------------------------------------------------------------- /yolov4-tiny/yolov4-tiny.conv.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deKibi/blum-game-ai-clicker/HEAD/yolov4-tiny/yolov4-tiny.conv.29 --------------------------------------------------------------------------------