-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
271 lines (191 loc) · 11.5 KB
/
main.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
from deplacement_tete_de_lecture import deplacement_t, changement_proba
from cadre_manuel import deplacement_manuel, chgmt_indice_vitesse_manuel
from cadre_automatique import deplacement_automatique_x_y
from zoom import *
from initialisation_parametres import *
from keyboard_config_file_update import assignment_menu
from fonction import *
from deplacement_souris import *
from formulaire import *
if ROI:
pygame.quit()
app.mainloop()
print(ListeInteret)
del listeFrame2
# Initialisation du "splash screen"
os.environ['SDL_VIDEO_CENTERED'] = '1'
pygame.init()
pygame.display.set_caption("endless_landscape")
screen = pygame.display.set_mode((350, 200), pygame.NOFRAME)
g_texte = pygame.font.Font('freesansbold.ttf', 30)
text_surf = g_texte.render("Endless Landscape", True, (255, 255, 255))
text_rect = text_surf.get_rect()
text_rect.center = (175, 75)
screen.blit(text_surf, text_rect)
pygame.draw.rect(screen, (128, 128, 128), pygame.Rect(25, 130, 300, 10), 1)
pygame.display.update()
if sens % 2 == 0:
screen = pygame.display.set_mode((size_y, size_x))
elif sens % 2 == 1:
screen = pygame.display.set_mode((size_x, size_y))
if fullscreen:
pygame.display.set_mode(modes[0], pygame.FULLSCREEN)
# On déplace la souris de telle maniere a ne plus la voir:
deplacement_souris()
pygame.key.set_repeat(100, 100)
running = True
""" Début de la boucle infini de choix d'image et d'affichage """
clock = pygame.time.Clock()
#plt.ion()
#plt.title('trajectoire du cadre')
while running:
clock.tick(framerate)
for event in pygame.event.get():
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE:
running = False
elif event.key == pygame.K_F1:
input_map = assignment_menu(input_map, screen)
screen.fill((0, 0, 0))
keys = pygame.key.get_pressed()
# condition de fermeture
if keys[input_map["mode_automatique"]]:
manuel_auto = 0
type_deplacement_cadre = 0
type_deplacement_tete = 0
type_zoom = 0
temps_x, temps_y = compteur_de_frame,compteur_de_frame
elif keys[input_map["mode_manuel"]]:
manuel_auto = 1
type_deplacement_cadre = 1
type_deplacement_tete = 1
type_zoom = 1
temps_x,temps_y=compteur_de_frame,compteur_de_frame
if keys[input_map["stop_cadre_x"]]:
sens_deplacement_x = 0
arret_x = True
if keys[input_map["stop_cadre_y"]]:
sens_deplacement_y = 0
arret_y = True
posX_debut=posX
#ZOOM
if choix_zoom_ou_non:
if not type_zoom:
# ZOOM AUTO
if zoom_en_cours_manuel:
Zt, indice_zoom, temps_debut_zoom, zinit, zf, zoom_en_cours_manuel = \
Zoom_Manuel(Zt, vitesse_actuelle_x, vitesse_actuelle_y, vzoom, posX, posY, size_x, size_y, limite_up_x, limite_up_y,
temps_debut_zoom, listZoomManuel, \
zinit, zf, zoom_en_cours_manuel, indice_zoom, indiceZoomDefault, keys, input_map,compteur_de_frame)
else:
probaZoom,probaDezoom,sens_deplacement_x, direction_deplacement_x,sens_deplacement_y,direction_deplacement_y,temps_debut_zoom, directionZoom, zinit, zf, indice_zoom, zoom_en_cours_Auto, temps_changement_zoom, Zt \
= zoom_automatique(probaZoom,probaDezoom,sens_deplacement_x, direction_deplacement_x,sens_deplacement_y,direction_deplacement_y,Zt, vitesse_actuelle_x, vitesse_actuelle_y, vzoom, posX, posY, size_x, size_y, limite_up_x,
limite_up_y, temps_debut_zoom,listZoomAuto, directionZoom, zinit, zf, indice_zoom, zoom_en_cours_Auto,\
temps_changement_zoom, attente_min, attente_max,compteur_de_frame)
#ZOOM MANUEL
else:
if zoom_en_cours_Auto:
probaZoom,probaDezoom,sens_deplacement_x, direction_deplacement_x, sens_deplacement_y, direction_deplacement_y, temps_debut_zoom, directionZoom, zinit, zf, indice_zoom, zoom_en_cours_Auto, temps_changement_zoom, Zt \
= zoom_automatique(probaZoom,probaDezoom,sens_deplacement_x, direction_deplacement_x, sens_deplacement_y,
direction_deplacement_y, Zt, vitesse_actuelle_x, vitesse_actuelle_y, vzoom, posX, posY, size_x,
size_y, limite_up_x,
limite_up_y, temps_debut_zoom, listZoomAuto, directionZoom, zinit, zf,
indice_zoom, zoom_en_cours_Auto, \
temps_changement_zoom, attente_min, attente_max,compteur_de_frame)
else:
Zt, indice_zoom, temps_debut_zoom, zinit, zf, zoom_en_cours_manuel = \
Zoom_Manuel(Zt, vitesse_actuelle_x, vitesse_actuelle_y, vzoom, posX, posY, size_x, size_y, limite_up_x, limite_up_y,
temps_debut_zoom,listZoomManuel,\
zinit, zf, zoom_en_cours_manuel, indice_zoom, indiceZoomDefault, keys, input_map,compteur_de_frame)
size_window_x=int(size_x/Zt)
size_window_y=int(size_y/Zt)
#deplacement cadre:
if choix_cadre:
# Déplacement manuel:
if type_deplacement_cadre:
arret_x,arret_y, posX, sens_deplacement_x, bord_atteint_x, posY, sens_deplacement_y, bord_atteint_y= \
deplacement_manuel(arret_x,arret_y, posX, sens_deplacement_x, limite_up_x, size_window_x, vitesse_actuelle_x, posY,
sens_deplacement_y, limite_up_y, size_window_y, vitesse_actuelle_y, keys,
input_map)
indice_vitesse_x, indice_vitesse_y, vitesse_initiale_x, vitesse_initiale_y,\
chgmt_vitesse_x_en_cours, chgmt_vitesse_y_en_cours = chgmt_indice_vitesse_manuel(indice_vitesse_x, indice_vitesse_y, vitesse_x, vitesse_y, chgmt_vitesse_x_en_cours, chgmt_vitesse_y_en_cours, keys, input_map, vitesse_initiale_x, vitesse_initiale_y)
# Déplacement automatique:
else:
if not arret_x:
posX, sens_deplacement_x, direction_deplacement_x, bord_atteint_x, \
bord_atteint_x_debut, temps_restant_bord_x, debut_bord_x, temps_x_changement = deplacement_automatique_x_y(
posX, sens_deplacement_x, direction_deplacement_x, vitesse_actuelle_x, limite_up_x,
size_window_x, bord_atteint_x, bord_atteint_x_debut, debut_bord_x, temps_restant_bord_x,
temps_min_x, temps_max_x, temps_min_changement_x, probabilite_changement_sens_x,
probabilite_changement_selon_direction_x, temps_x_changement,compteur_de_frame)
if not chgmt_vitesse_x_en_cours:
indice_vitesse_x, temps_chgmt_indice_x = changement_proba(
temps_chgmt_indice_x, temps_min_chgmt_vitesse_x, indice_vitesse_x, vitesse_x,compteur_de_frame)
if vitesse_x[indice_vitesse_x] != vitesse_actuelle_x:
chgmt_vitesse_x_en_cours = True
temps_chgmt_indice_x += temps_changement_vitesse_x
vitesse_initiale_x = vitesse_actuelle_x
frame_chgmt_x = compteur_de_frame
diff_vitesse_x = abs( vitesse_x[indice_vitesse_x] - vitesse_initiale_x)
nb_frame_incrementation_vitesse_x = temps_changement_vitesse_x // diff_vitesse_x
if not arret_y:
posY, sens_deplacement_y, direction_deplacement_y, bord_atteint_y, \
bord_atteint_y_debut, temps_restant_bord_y, debut_bord_y, temps_y_changement = deplacement_automatique_x_y(
posY, sens_deplacement_y, direction_deplacement_y, vitesse_actuelle_y, limite_up_y,
size_window_y, bord_atteint_y, bord_atteint_y_debut, debut_bord_y, temps_restant_bord_y,
temps_min_y, temps_max_y, temps_min_changement_y, probabilite_changement_sens_y,
probabilite_changement_selon_direction_y, temps_y_changement,compteur_de_frame)
if not chgmt_vitesse_y_en_cours:
indice_vitesse_y, temps_chgmt_indice_y = changement_proba(
temps_chgmt_indice_y, temps_min_chgmt_vitesse_y, indice_vitesse_y, vitesse_y,compteur_de_frame)
if vitesse_y[indice_vitesse_y] != vitesse_actuelle_y:
temps_chgmt_indice_y += temps_changement_vitesse_y
chgmt_vitesse_y_en_cours = True
vitesse_initiale_y = vitesse_actuelle_y
frame_chgmt_y = compteur_de_frame
diff_vitesse_y = abs( vitesse_y[indice_vitesse_y] - vitesse_initiale_y)
nb_frame_incrementation_vitesse_y = temps_changement_vitesse_y // diff_vitesse_y
if chgmt_vitesse_x_en_cours:
vitesse_actuelle_x, chgmt_vitesse_x_en_cours = chgmt_vitesse(vitesse_actuelle_x, vitesse_x,\
indice_vitesse_x, chgmt_vitesse_x_en_cours, temps_changement_vitesse_x, vitesse_initiale_x, frame_chgmt_x, compteur_de_frame, nb_frame_incrementation_vitesse_x)
if chgmt_vitesse_y_en_cours:
vitesse_actuelle_y, chgmt_vitesse_y_en_cours = chgmt_vitesse(vitesse_actuelle_y, vitesse_y,\
indice_vitesse_y, chgmt_vitesse_y_en_cours, temps_changement_vitesse_y, vitesse_initiale_y, frame_chgmt_y, compteur_de_frame, nb_frame_incrementation_vitesse_y)
""" Déplacement de la tete de lecture"""
if choix_t:
if not type_deplacement_tete:
lecture, sens_lecture, direction_lecture, frame_lecture = deplacement_t(
frame_lecture, lecture, direction_lecture, nombre_de_frame, sens_lecture, nb_frame_min_changement_lecture, probabilite_changement_selon_direction_t, liste_proba, indice_proba, compteur_de_frame)
indice_proba, temps_changement_proba = changement_proba(
temps_changement_proba, temps_entre_changement_proba, indice_proba, liste_proba,compteur_de_frame)
if keys[input_map["changement_lecture"]]:
sens_lecture=-sens_lecture
lecture += sens_lecture
if lecture <= 0:
lecture = 0
sens_lecture = 1
direction_lecture = 1
elif lecture >= nombre_de_frame - 1:
lecture = nombre_de_frame - 1
sens_lecture = -1
direction_lecture = -1
img = frame_list[lecture]
img = img[posY - size_window_y //2 + 1 - size_y % 2 :posY + size_window_y // 2, posX - size_window_x //2 +1 -size_x%2:posX + size_window_x //2 ]
img = cv2.resize(img, (size_x, size_y))
"""On ajoute l'image a la vidéo enregistrée si on a choisit de le faire"""
if enregistrement:
video_output.write(img)
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
frame = np.rot90(img, sens)
frame = pygame.surfarray.make_surface(frame)
frame = pygame.transform.flip(frame, True, False)
frame_rect=frame.get_rect()
if fullscreen:
screen.blit(frame, (accroche_x, accroche_y))
else:
screen.blit(frame, (0, 0))
pygame.display.update()
compteur_de_frame+=1
cv2.destroyAllWindows()
pygame.quit()
print(clock.get_fps())