Agent-Based Ant Model
Agent-Based Ant Model
Rudimentary Approach: RandomMiner.py
This method provides random movement and digging instructions to the player character.
Intermediate Approach: BranchMiner.py
This method generates semi-random movement and digging input such that the player character navigates via a cycle of vertical descent followed by asymettrical horizontal branching.
Advanced Approach: VisionMiner.py
Utilizing computer vision, this method searches the screen area at or below the player's position for occurrences of the resource types whose images it has stored in reference, finds the closest occurrence, and then navigates the player to that point.
STILL IN PROGRESS