forked from Sentdex/pygta5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collect_data.py
146 lines (119 loc) · 4 KB
/
collect_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import numpy as np
from grabscreen import grab_screen
import cv2
import time
from getkeys import key_check
import os
WIDTH = 400
HEIGHT = 300
GAME_WIDTH = 400
GAME_HEIGHT = 300
w = [1,0,0,0,0,0,0,0,0]
s = [0,1,0,0,0,0,0,0,0]
a = [0,0,1,0,0,0,0,0,0]
d = [0,0,0,1,0,0,0,0,0]
wa = [0,0,0,0,1,0,0,0,0]
wd = [0,0,0,0,0,1,0,0,0]
sa = [0,0,0,0,0,0,1,0,0]
sd = [0,0,0,0,0,0,0,1,0]
nk = [0,0,0,0,0,0,0,0,1]
starting_value = 1
train_no = 'training18'
training_type = 'raw'
# ================================================================================
curr_dir = os.path.join(os.getcwd(), 'training', train_no)
if os.path.isdir(curr_dir):
print('{} exists, saving here.'.format(train_no))
else:
os.system('mkdir {}'.format(curr_dir))
print('Created {} folder.'.format(train_no))
while True:
file_name = os.path.join(os.getcwd(), 'training', '{}/{}_{}-{}.npy'.format(train_no, train_no, training_type, starting_value))
if os.path.isfile(file_name):
print('File exists, moving along',starting_value)
starting_value += 1
else:
print('File does not exist, starting fresh!',starting_value)
break
def keys_to_output(keys):
'''
Convert keys to a ...multi-hot... array
0 1 2 3 4 5 6 7 8
[W, S, A, D, WA, WD, SA, SD, NOKEY] boolean values.
'''
output = [0,0,0,0,0,0,0,0,0]
if 'W' in keys and 'A' in keys:
output = wa
elif 'W' in keys and 'D' in keys:
output = wd
elif 'S' in keys and 'A' in keys:
output = sa
elif 'S' in keys and 'D' in keys:
output = sd
elif 'W' in keys:
output = w
elif 'S' in keys:
output = s
elif 'A' in keys:
output = a
elif 'D' in keys:
output = d
else:
output = nk
return output
def main(file_name, starting_value):
file_name = file_name
starting_value = starting_value
training_data = []
for i in list(range(4))[::-1]:
print(i+1)
time.sleep(1)
last_time = time.time()
paused = False
print('STARTING!!!')
while(True):
if not paused:
screen = grab_screen(region=(200, 250, 199+GAME_WIDTH,249+GAME_HEIGHT))
last_time = time.time()
# resize to something a bit more acceptable for a CNN
# screen = cv2.resize(screen, (WIDTH, HEIGHT))
# run a color convert:
screen = cv2.cvtColor(screen, cv2.COLOR_BGR2RGB)
# Show what is captured
# cv2.imshow('window', screen)
# time.sleep(0.2)
# if cv2.waitKey(25) & 0xFF == ord('q'):
# cv2.destroyAllWindows()
# break
keys = key_check()
output = keys_to_output(keys)
training_data.append([screen,output])
# Show training data array
# print(training_data)
print('loop took {} seconds'.format(time.time()-last_time))
last_time = time.time()
## cv2.imshow('window',cv2.resize(screen,(640,360)))
## if cv2.waitKey(25) & 0xFF == ord('q'):
## cv2.destroyAllWindows()
## break
if len(training_data) % 100 == 0:
print(len(training_data))
if len(training_data) == 500:
np.save(file_name,training_data)
file_name = os.path.join(os.getcwd(), 'training', '{}/{}_{}-{}.npy'.format(train_no, train_no, training_type, starting_value))
print('=' * 80)
print('SAVED', file_name)
print('=' * 80)
training_data = []
starting_value += 1
keys = key_check()
if 'T' in keys:
if paused:
paused = False
print('unpaused!')
time.sleep(1)
else:
print('Pausing!')
paused = True
time.sleep(1)
main(file_name, starting_value)