-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 386a648
Showing
30 changed files
with
943 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
import cv2 | ||
import pyautogui | ||
import numpy as np | ||
import os | ||
import torch | ||
|
||
from window import WindowInterface | ||
|
||
class DemineurInterface(): | ||
|
||
def __init__(self): | ||
|
||
self.windowInterface = WindowInterface("Démineur") | ||
self.windowInterface.move_and_resize(w=500,h=320) | ||
self.grid = Grid() | ||
self.action_space_nb = self.grid.action_space_nb | ||
|
||
def grab_image(self): | ||
|
||
img = self.windowInterface.screenshot()[:,:,:3] | ||
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) | ||
|
||
return img | ||
|
||
def reset(self): | ||
self.grid.reset_grid() | ||
|
||
|
||
def get_state(self): | ||
|
||
img = self.grab_image() | ||
grid = self.grid.extract_from_image(img) | ||
|
||
return torch.unsqueeze(torch.unsqueeze(torch.Tensor(grid), 0), 0) | ||
|
||
def send_control(self, x, y): | ||
pyautogui.click(x, y) | ||
|
||
def step(self, index): | ||
|
||
i = index // self.grid.cols | ||
j = index % self.grid.cols | ||
|
||
if not self.grid.is_free(i,j): | ||
#print(f"Case {i},{j} is used") | ||
return 0, False # Reward, Done | ||
|
||
x, y = self.grid.click_pos[i,j] | ||
|
||
self.send_control(x, y) | ||
|
||
img = self.grab_image() | ||
done = self.grid.is_done(img) | ||
|
||
#print(f"Click Case {i},{j}. done:", done) | ||
|
||
if done == 0: | ||
# If not over, since the action was clicking on an empty case, it's not over | ||
return 1, False | ||
elif done == 1: | ||
# Victory | ||
return 1, True | ||
else: | ||
# Click on a bomb | ||
return 0, True | ||
|
||
|
||
|
||
|
||
class Grid(): | ||
|
||
def __init__(self, rows=16, cols=30): | ||
|
||
self.rows = rows | ||
self.cols = cols | ||
self.case_width = 16 | ||
self.case_height = 16 | ||
self.first_case_x = 55 | ||
self.first_case_y = 12 | ||
|
||
self.status_width = 26 | ||
self.status_height = 26 | ||
self.status_i = 15 | ||
self.status_j = 239 | ||
|
||
self.window_offset_i = 46 | ||
self.window_offset_j = 1 | ||
|
||
# Define click position for each case on the grid | ||
X = np.floor(np.linspace(self.window_offset_i + self.first_case_x + self.case_height // 2, self.window_offset_i + self.first_case_x + self.rows * self.case_height - self.case_height // 2, self.rows)) | ||
Y = np.floor(np.linspace(self.window_offset_j + self.first_case_y + self.case_width // 2, self.window_offset_j + self.first_case_y + self.cols * self.case_width - self.case_width // 2, self.cols)) | ||
|
||
self.click_pos = np.stack(np.meshgrid(Y,X), axis=-1) | ||
|
||
# Load templates | ||
self.load_cases() | ||
self.load_status() | ||
|
||
self.action_space_nb = self.rows * self.cols | ||
|
||
self.reset_grid() | ||
|
||
def reset_grid(self): | ||
# Twice to get the focus | ||
pyautogui.click(self.window_offset_j + self.status_j + self.status_height // 2, self.window_offset_i + self.status_i + self.status_width // 2) | ||
pyautogui.click(self.window_offset_j + self.status_j + self.status_height // 2, self.window_offset_i + self.status_i + self.status_width // 2) | ||
|
||
self.grid = np.zeros((self.rows, self.cols)) + self.cases_labels.index("raw") + 1 | ||
self.done = 0 | ||
|
||
def load_cases(self): | ||
|
||
casesNames = os.listdir("images/cases") | ||
|
||
self.cases_templates = np.zeros((len(casesNames), self.case_width, self.case_height, 3)) | ||
self.cases_labels = [] | ||
|
||
for i in range(len(casesNames)): | ||
|
||
case = cv2.imread("images/cases/" + casesNames[i])[:,:,:3] | ||
|
||
self.cases_templates[i,...] = case[:,:,::-1] | ||
self.cases_labels.append(casesNames[i].rsplit('_', 1)[0]) | ||
|
||
def load_status(self): | ||
|
||
statusNames = os.listdir("images/status") | ||
|
||
self.status_templates = np.zeros((len(statusNames), self.status_width, self.status_height, 3)) | ||
self.status_labels = [] | ||
|
||
for i in range(len(statusNames)): | ||
|
||
status = cv2.imread("images/status/" + statusNames[i])[:,:,:3] | ||
|
||
self.status_templates[i,...] = status[:,:,::-1] | ||
self.status_labels.append(statusNames[i].split('.')[0]) | ||
|
||
|
||
def extract_from_image(self, img): | ||
""" Convert the grid on the image into a python object """ | ||
|
||
for i in range(self.rows): | ||
for j in range(self.cols): | ||
|
||
x = self.first_case_x + i * self.case_height | ||
y = self.first_case_y + j * self.case_width | ||
|
||
case_extract = img[x:x + self.case_height, y:y + self.case_width] | ||
|
||
self.grid[i,j] = self.get_matching_template(case_extract, self.cases_templates) | ||
|
||
self.done = self.is_done(img) | ||
|
||
return self.grid | ||
|
||
def get_matching_template(self, input, templates): | ||
|
||
input = np.tile(input[None,...], [len(templates), 1, 1, 1]) | ||
diff = np.sum((templates - input)**2, axis=(1,2,3)) | ||
|
||
return np.argmin(diff) | ||
|
||
def is_done(self, img): | ||
|
||
status_extract = img[self.status_i : self.status_i + self.status_height, self.status_j: self.status_j + self.status_width] | ||
|
||
result = self.get_matching_template(status_extract, self.status_templates) | ||
|
||
if result == self.status_labels.index("continue"): | ||
return 0 | ||
elif result == self.status_labels.index("victory"): | ||
return 1 | ||
else: | ||
return 2 | ||
|
||
|
||
def is_free(self, i, j): | ||
|
||
return self.grid[i,j] == self.cases_labels.index("raw") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from model import BotDemineur | ||
from utils import Transition, ReplayMemory | ||
from env import DemineurInterface | ||
|
||
BATCH_SIZE = 128 | ||
GAMMA = 0.999 | ||
EPS_START = 0.9 | ||
EPS_END = 0.05 | ||
EPS_DECAY = 200 | ||
TARGET_UPDATE = 10 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import torch.nn as nn | ||
import torch.nn.functional as F | ||
|
||
|
||
class BotDemineur(nn.Module): | ||
|
||
def __init__(self, rows = 16, cols = 30, outputs = 480): | ||
|
||
super(BotDemineur, self).__init__() | ||
|
||
self.conv1 = nn.Conv2d(1, 3, kernel_size=3, padding=1) | ||
self.bn1 = nn.BatchNorm2d(3) | ||
self.conv2 = nn.Conv2d(3, 3, kernel_size=3) | ||
self.bn2 = nn.BatchNorm2d(3) | ||
|
||
# Due to no padding, the size of the output of conv2 is w-2 x h-2 | ||
linear_output_size = (rows - 2) * (cols - 2) * 3 | ||
self.head = nn.Linear(linear_output_size, outputs) | ||
|
||
def forward(self, x): | ||
|
||
x = F.relu(self.bn1(self.conv1(x))) | ||
x = F.relu(self.bn2(self.conv2(x))) | ||
return self.head(x.view(x.size(0), -1)) |
Oops, something went wrong.