forked from s452716/Test
131 lines
3.3 KiB
Python
131 lines
3.3 KiB
Python
from tkinter import *
|
|
import os
|
|
|
|
from bin.Classess.Player import Player
|
|
from bin.Classess.Field import Field
|
|
|
|
WINDOW_X = 533 + 1200
|
|
WINDOW_Y = 950
|
|
FRAME_WIDTH = 533
|
|
FRAME_HEIGHT = 533
|
|
|
|
# Size of small image
|
|
IMAGE_SIZE = 50
|
|
|
|
# Creating objects
|
|
player = Player()
|
|
field = Field()
|
|
|
|
|
|
# Putting images
|
|
def Fill():
|
|
field.PuttingSmallImages()
|
|
|
|
# Drawing red/green rectangles
|
|
for el in field.state_of_cell_array:
|
|
if el[0] != 0:
|
|
field.small_field_canvas.create_rectangle(el[0], el[1], el[0] + player.step - 2,
|
|
el[1] + player.step - 2, width=3, outline=el[2])
|
|
|
|
DrawingLargeImage()
|
|
|
|
|
|
def DrawingLargeImage():
|
|
large_img_name = field.large_image_array[player.current_array_y][player.current_array_x]
|
|
|
|
field.PuttingLargeImage(large_img_name)
|
|
|
|
|
|
# Drawing rectangle
|
|
def Rectangle():
|
|
field.small_field_canvas.create_rectangle(player.current_x, player.current_y, player.current_x + player.step - 2,
|
|
player.current_y + player.step - 2, width=3, outline='blue2')
|
|
|
|
|
|
def Moving(event):
|
|
# Moving
|
|
if event.keysym == "Right":
|
|
player.MovingRight()
|
|
field.Moving()
|
|
Fill()
|
|
Rectangle()
|
|
elif event.keysym == "Left":
|
|
player.MovingLeft()
|
|
field.Moving()
|
|
Fill()
|
|
Rectangle()
|
|
elif event.keysym == "Up":
|
|
player.MovingUp()
|
|
field.Moving()
|
|
Fill()
|
|
Rectangle()
|
|
elif event.keysym == "Down":
|
|
player.MovingDown()
|
|
field.Moving()
|
|
Fill()
|
|
Rectangle()
|
|
|
|
|
|
def ImagesInArray(directory, array):
|
|
# Filling array from directory
|
|
row = column = 0
|
|
for file in os.listdir(directory):
|
|
image_name = file
|
|
image_path = f"{directory}/{image_name}"
|
|
if directory == "../files/large_images":
|
|
image = PhotoImage(master=field.large_image_canvas, file=image_path)
|
|
else:
|
|
image = PhotoImage(master=field.small_field_canvas, file=image_path)
|
|
|
|
array[row][column] = image
|
|
column += 1
|
|
if column == 10:
|
|
column = 0
|
|
row += 1
|
|
|
|
|
|
def CellDesignation(array, color):
|
|
for element in array:
|
|
if element[0] == 0:
|
|
element[0] = player.current_x
|
|
element[1] = player.current_y
|
|
element[2] = color
|
|
break
|
|
|
|
|
|
def Action(event):
|
|
if event.keysym in ["Right", "Left", "Up", "Down"]:
|
|
Moving(event)
|
|
elif event.keysym in ["1", "2"]:
|
|
if event.keysym == "1":
|
|
CellDesignation(field.state_of_cell_array, "red")
|
|
else:
|
|
CellDesignation(field.state_of_cell_array, "green")
|
|
|
|
|
|
def main():
|
|
# Creating the main window of an application
|
|
win_size = f'{WINDOW_X}x{WINDOW_Y}'
|
|
field.win.title("Sapper")
|
|
field.win.configure(bg='gray')
|
|
field.win.geometry(win_size)
|
|
|
|
# Filling image arrays
|
|
large_directory = "../../files/large_images"
|
|
ImagesInArray(large_directory, field.large_image_array)
|
|
small_directory = "../../files/small_images"
|
|
ImagesInArray(small_directory, field.small_image_array)
|
|
|
|
# Filling window with images
|
|
Fill()
|
|
# Drawing rectangle (player)
|
|
Rectangle()
|
|
# Binding keyboard press to function
|
|
field.win.bind("<Key>", Action)
|
|
# Starting mainloop for window
|
|
field.win.mainloop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|