Sztuczna_inteligencja_gr_13/resources/Globals.py

29 lines
380 B
Python
Raw Normal View History

2021-05-01 01:24:35 +02:00
FRAME_WIDTH = 555
FRAME_HEIGHT = 555
WINDOW_X = FRAME_WIDTH + 1200
2021-04-30 23:52:55 +02:00
WINDOW_Y = 950
# Size of small image
IMAGE_SIZE = 50
AMOUNT_OF_MINES = 10
DELAY_TIME = 0.5
2021-05-01 01:24:35 +02:00
STEP = IMAGE_SIZE + 5
2021-04-30 23:52:55 +02:00
standard_cell_cost = 10
amount_of_sand_cells = 10
sand_cell_cost = 20
amount_of_water_cells = 10
water_cell_cost = 40
2021-04-30 23:52:55 +02:00
amount_of_swamp_cells = 10
swamp_cell_cost = 80
2021-05-01 01:24:35 +02:00
x_start = 5
y_start = 5