2021-03-21 12:40:13 +01:00
|
|
|
import definitions
|
|
|
|
import field
|
|
|
|
import plant
|
2021-03-13 22:30:18 +01:00
|
|
|
import pygame
|
2021-03-21 12:40:13 +01:00
|
|
|
import random
|
|
|
|
import soil
|
|
|
|
import tractor
|
2021-03-13 22:30:18 +01:00
|
|
|
pygame.display.set_caption("Smart Tractor")
|
2021-03-21 15:17:34 +01:00
|
|
|
fields = []
|
2021-03-21 14:10:08 +01:00
|
|
|
def create_base_map():
|
2021-04-02 19:46:23 +02:00
|
|
|
for i in range(definitions.WIDTH_AMOUNT):
|
2021-03-21 14:10:08 +01:00
|
|
|
temp_map_field = []
|
2021-04-02 19:46:23 +02:00
|
|
|
for j in range(definitions.HEIGHT_AMOUNT):
|
2021-03-21 15:17:34 +01:00
|
|
|
temp_rect = pygame.Rect(i * definitions.BLOCK_SIZE, j * definitions.BLOCK_SIZE, definitions.BLOCK_SIZE, definitions.BLOCK_SIZE)
|
2021-03-31 12:56:29 +02:00
|
|
|
temp_soil = soil.Soil(False, False, False)
|
2021-03-31 14:02:04 +02:00
|
|
|
temp_plant = plant.Plant("none", 0)
|
2021-03-21 15:17:34 +01:00
|
|
|
temp_field = field.Field(temp_plant, temp_rect, temp_soil)
|
|
|
|
temp_map_field.append(temp_field)
|
|
|
|
fields.append(temp_map_field)
|
2021-03-21 14:10:08 +01:00
|
|
|
def fill_map():
|
2021-04-02 19:46:23 +02:00
|
|
|
for i in range(definitions.WIDTH_AMOUNT):
|
|
|
|
for j in range(definitions.HEIGHT_AMOUNT):
|
2021-03-21 15:17:34 +01:00
|
|
|
field = fields[i][j]
|
|
|
|
rect = field.get_rect()
|
2021-03-31 14:02:04 +02:00
|
|
|
if field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() <= 1 * definitions.BEETROOTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.BEETROOTS_STAGE_0
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() > 1 * definitions.BEETROOTS_GROW_TIME and field.get_plant().get_state() <= 2 * definitions.BEETROOTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.BEETROOTS_STAGE_1
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() > 2 * definitions.BEETROOTS_GROW_TIME and field.get_plant().get_state() <= 3 * definitions.BEETROOTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.BEETROOTS_STAGE_2
|
|
|
|
elif field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() == definitions.BEETROOTS_MAXIMUM_STATE:
|
|
|
|
block = definitions.BEETROOTS_STAGE_3
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() <= 1 * definitions.CARROTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.CARROTS_STAGE_0
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() > 1 * definitions.CARROTS_GROW_TIME and field.get_plant().get_state() <= 2 * definitions.CARROTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.CARROTS_STAGE_1
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() > 2 * definitions.CARROTS_GROW_TIME and field.get_plant().get_state() <= 3 * definitions.CARROTS_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.CARROTS_STAGE_2
|
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() == definitions.CARROTS_MAXIMUM_STATE:
|
|
|
|
block = definitions.CARROTS_STAGE_3
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() > 0 and field.get_plant().get_state() <= 1 * definitions.POTATOES_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.POTATOES_STAGE_0
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() > 1 * definitions.POTATOES_GROW_TIME and field.get_plant().get_state() <= 2 * definitions.POTATOES_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.POTATOES_STAGE_1
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() > 2 * definitions.POTATOES_GROW_TIME and field.get_plant().get_state() <= 3 * definitions.POTATOES_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.POTATOES_STAGE_2
|
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() == definitions.POTATOES_MAXIMUM_STATE:
|
|
|
|
block = definitions.POTATOES_STAGE_3
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 0 and field.get_plant().get_state() <= 1 * definitions.WHEAT_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.WHEAT_STAGE_0
|
2021-03-27 21:31:22 +01:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 1 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 2 * definitions.WHEAT_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.WHEAT_STAGE_1
|
2021-03-27 21:31:22 +01:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 2 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 3 * definitions.WHEAT_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.WHEAT_STAGE_2
|
2021-03-27 21:31:22 +01:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 3 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 4 * definitions.WHEAT_GROW_TIME:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.WHEAT_STAGE_3
|
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 4 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 5 * definitions.WHEAT_GROW_TIME:
|
|
|
|
block = definitions.WHEAT_STAGE_4
|
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 5 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 6 * definitions.WHEAT_GROW_TIME:
|
|
|
|
block = definitions.WHEAT_STAGE_5
|
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 6 * definitions.WHEAT_GROW_TIME and field.get_plant().get_state() <= 7 * definitions.WHEAT_GROW_TIME:
|
|
|
|
block = definitions.WHEAT_STAGE_6
|
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() == definitions.WHEAT_MAXIMUM_STATE:
|
|
|
|
block = definitions.WHEAT_STAGE_7
|
2021-03-23 17:14:46 +01:00
|
|
|
elif field.get_soil().get_state() is False:
|
2021-03-21 15:17:34 +01:00
|
|
|
block = definitions.DIRT
|
2021-03-23 17:14:46 +01:00
|
|
|
elif field.get_soil().get_state() is True and field.get_soil().get_water_level() is False:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.FARMLAND_DRY
|
2021-03-23 17:14:46 +01:00
|
|
|
elif field.get_soil().get_state() is True and field.get_soil().get_water_level() is True:
|
2021-04-02 16:30:11 +02:00
|
|
|
block = definitions.FARMLAND_WET
|
|
|
|
if (block != definitions.DIRT or block != definitions.FARMLAND_DRY or block != definitions.FARMLAND_WET):
|
|
|
|
definitions.WINDOW.blit(definitions.FARMLAND_WET, (rect.x, rect.y))
|
|
|
|
definitions.WINDOW.blit(block, (rect.x, rect.y))
|
2021-03-29 17:58:15 +02:00
|
|
|
def do_work(tractor1, tractor1_rect):
|
2021-03-31 14:02:04 +02:00
|
|
|
loop = True
|
|
|
|
if tractor1.get_all_amount_of_seeds() == 0:
|
|
|
|
loop = False
|
2021-04-02 19:46:23 +02:00
|
|
|
x = int(tractor1_rect.x / definitions.BLOCK_SIZE)
|
|
|
|
y = int(tractor1_rect.y / definitions.BLOCK_SIZE)
|
2021-03-22 17:02:12 +01:00
|
|
|
field = fields[x][y]
|
2021-03-23 17:14:46 +01:00
|
|
|
if field.get_soil().get_state() is False:
|
2021-03-22 17:02:12 +01:00
|
|
|
field.get_soil().set_state(True)
|
2021-03-29 17:58:15 +02:00
|
|
|
elif field.get_soil().get_state() is True and field.get_soil().get_water_level() is False and tractor1.get_water_level() > 0:
|
|
|
|
tractor1.set_water_level(tractor1.get_water_level() - 1)
|
2021-03-22 17:02:12 +01:00
|
|
|
field.get_soil().set_water_level(True)
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_soil().get_state() is True and field.get_soil().get_water_level() is True and field.get_plant().get_state() == 0:
|
|
|
|
while loop is True:
|
|
|
|
random1 = random.randint(1, 4)
|
|
|
|
if random1 == 1 and tractor1.get_amount_of_seeds("beetroot") > 0:
|
|
|
|
tractor1.set_amount_of_seeds("beetroot", tractor1.get_amount_of_seeds("beetroot") - 1)
|
|
|
|
field.get_plant().set_name("beetroot")
|
|
|
|
field.get_plant().set_state(1)
|
|
|
|
loop = False
|
|
|
|
elif random1 == 2 and tractor1.get_amount_of_seeds("carrot") > 0:
|
|
|
|
tractor1.set_amount_of_seeds("carrot", tractor1.get_amount_of_seeds("carrot") - 1)
|
|
|
|
field.get_plant().set_name("carrot")
|
|
|
|
field.get_plant().set_state(1)
|
|
|
|
loop = False
|
|
|
|
elif random1 == 3 and tractor1.get_amount_of_seeds("potato") > 0:
|
|
|
|
tractor1.set_amount_of_seeds("potato", tractor1.get_amount_of_seeds("potato") - 1)
|
|
|
|
field.get_plant().set_name("potato")
|
|
|
|
field.get_plant().set_state(1)
|
|
|
|
loop = False
|
|
|
|
elif random1 == 4 and tractor1.get_amount_of_seeds("wheat") > 0:
|
|
|
|
tractor1.set_amount_of_seeds("wheat", tractor1.get_amount_of_seeds("wheat") - 1)
|
|
|
|
field.get_plant().set_name("wheat")
|
|
|
|
field.get_plant().set_state(1)
|
|
|
|
loop = False
|
|
|
|
elif field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.BEETROOTS_MAXIMUM_STATE - definitions.BEETROOTS_GROW_TIME and tractor1.get_fertilizer("beetroot") > 0 and field.get_soil().get_is_fertilized() is False:
|
|
|
|
tractor1.set_fertilizer("beetroot", (tractor1.get_fertilizer("beetroot") - 1))
|
|
|
|
field.get_soil().set_is_fertilized(True)
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + definitions.BEETROOTS_GROW_TIME)
|
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.CARROTS_MAXIMUM_STATE - definitions.CARROTS_GROW_TIME and tractor1.get_fertilizer("carrot") > 0 and field.get_soil().get_is_fertilized() is False:
|
|
|
|
tractor1.set_fertilizer("carrot", (tractor1.get_fertilizer("carrot") - 1))
|
|
|
|
field.get_soil().set_is_fertilized(True)
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + definitions.CARROTS_GROW_TIME)
|
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.POTATOES_MAXIMUM_STATE - definitions.POTATOES_GROW_TIME and tractor1.get_fertilizer("potato") > 0 and field.get_soil().get_is_fertilized() is False:
|
|
|
|
tractor1.set_fertilizer("potato", (tractor1.get_fertilizer("potato") - 1))
|
|
|
|
field.get_soil().set_is_fertilized(True)
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + definitions.POTATOES_GROW_TIME)
|
2021-03-31 12:56:29 +02:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.WHEAT_MAXIMUM_STATE - definitions.WHEAT_GROW_TIME and tractor1.get_fertilizer("wheat") > 0 and field.get_soil().get_is_fertilized() is False:
|
2021-03-29 17:58:15 +02:00
|
|
|
tractor1.set_fertilizer("wheat", (tractor1.get_fertilizer("wheat") - 1))
|
2021-03-31 12:56:29 +02:00
|
|
|
field.get_soil().set_is_fertilized(True)
|
2021-03-29 17:58:15 +02:00
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + definitions.WHEAT_GROW_TIME)
|
2021-03-31 14:02:04 +02:00
|
|
|
elif field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() == definitions.BEETROOTS_MAXIMUM_STATE and tractor1.get_all_collected_plants() < definitions.TRACTOR_MAXIMUM_COLLECTED_PLANTS:
|
|
|
|
field.get_plant().set_state(0)
|
|
|
|
field.get_soil().set_is_fertilized(False)
|
|
|
|
field.get_soil().set_water_level(False)
|
|
|
|
field.get_soil().set_state(False)
|
|
|
|
tractor1.set_collected_plants("beetroot", tractor1.get_collected_plants("beetroot") + 1)
|
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() == definitions.CARROTS_MAXIMUM_STATE and tractor1.get_all_collected_plants() < definitions.TRACTOR_MAXIMUM_COLLECTED_PLANTS:
|
|
|
|
field.get_plant().set_state(0)
|
|
|
|
field.get_soil().set_is_fertilized(False)
|
|
|
|
field.get_soil().set_water_level(False)
|
|
|
|
field.get_soil().set_state(False)
|
|
|
|
tractor1.set_collected_plants("carrot", tractor1.get_collected_plants("carrot") + 1)
|
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() == definitions.POTATOES_MAXIMUM_STATE and tractor1.get_all_collected_plants() < definitions.TRACTOR_MAXIMUM_COLLECTED_PLANTS:
|
|
|
|
field.get_plant().set_state(0)
|
|
|
|
field.get_soil().set_is_fertilized(False)
|
|
|
|
field.get_soil().set_water_level(False)
|
|
|
|
field.get_soil().set_state(False)
|
|
|
|
tractor1.set_collected_plants("potato", tractor1.get_collected_plants("potato") + 1)
|
2021-03-31 12:56:29 +02:00
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() == definitions.WHEAT_MAXIMUM_STATE and tractor1.get_all_collected_plants() < definitions.TRACTOR_MAXIMUM_COLLECTED_PLANTS:
|
2021-03-23 17:14:46 +01:00
|
|
|
field.get_plant().set_state(0)
|
2021-03-31 12:56:29 +02:00
|
|
|
field.get_soil().set_is_fertilized(False)
|
2021-03-23 17:14:46 +01:00
|
|
|
field.get_soil().set_water_level(False)
|
|
|
|
field.get_soil().set_state(False)
|
2021-03-31 12:56:29 +02:00
|
|
|
tractor1.set_collected_plants("wheat", tractor1.get_collected_plants("wheat") + 1)
|
2021-03-23 17:14:46 +01:00
|
|
|
def draw_window(tractor1_rect):
|
2021-03-21 14:10:08 +01:00
|
|
|
fill_map()
|
2021-04-02 16:30:11 +02:00
|
|
|
definitions.WINDOW.blit(definitions.TRACTOR, (tractor1_rect.x, tractor1_rect.y))
|
2021-03-13 22:30:18 +01:00
|
|
|
pygame.display.update()
|
2021-03-23 17:14:46 +01:00
|
|
|
def grow_plants():
|
2021-04-02 19:46:23 +02:00
|
|
|
for i in range(definitions.WIDTH_AMOUNT):
|
|
|
|
for j in range(definitions.HEIGHT_AMOUNT):
|
2021-03-23 17:14:46 +01:00
|
|
|
field = fields[i][j]
|
2021-03-31 14:02:04 +02:00
|
|
|
if field.get_plant().get_name() == "beetroot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.BEETROOTS_MAXIMUM_STATE:
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + 1)
|
|
|
|
elif field.get_plant().get_name() == "carrot" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.CARROTS_MAXIMUM_STATE:
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + 1)
|
|
|
|
elif field.get_plant().get_name() == "potato" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.POTATOES_MAXIMUM_STATE:
|
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + 1)
|
|
|
|
elif field.get_plant().get_name() == "wheat" and field.get_plant().get_state() > 0 and field.get_plant().get_state() < definitions.WHEAT_MAXIMUM_STATE:
|
2021-03-23 17:14:46 +01:00
|
|
|
field.get_plant().set_state(field.get_plant().get_state() + 1)
|
|
|
|
def is_move_allowed(move, tractor1_rect):
|
2021-03-31 14:02:04 +02:00
|
|
|
if move == 1 and tractor1_rect.y + definitions.BLOCK_SIZE + definitions.BLOCK_SIZE <= definitions.HEIGHT:
|
2021-03-21 13:01:38 +01:00
|
|
|
return True
|
2021-03-31 14:02:04 +02:00
|
|
|
elif move == 2 and tractor1_rect.x - definitions.BLOCK_SIZE >= 0:
|
2021-03-21 13:01:38 +01:00
|
|
|
return True
|
2021-03-31 14:02:04 +02:00
|
|
|
elif move == 3 and tractor1_rect.x + definitions.BLOCK_SIZE + definitions.BLOCK_SIZE <= definitions.WIDTH:
|
2021-03-21 13:01:38 +01:00
|
|
|
return True
|
2021-03-31 14:02:04 +02:00
|
|
|
elif move == 4 and tractor1_rect.y - definitions.BLOCK_SIZE >= 0:
|
2021-03-21 13:01:38 +01:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2021-03-23 17:14:46 +01:00
|
|
|
def tractor1_handle_movement(tractor1, tractor1_rect):
|
|
|
|
loop = True
|
2021-03-29 17:58:15 +02:00
|
|
|
while loop and tractor1.get_fuel() > 0:
|
2021-03-23 17:14:46 +01:00
|
|
|
random1 = random.randint(1, 4)
|
2021-03-31 14:02:04 +02:00
|
|
|
if random1 == 1 and is_move_allowed(1, tractor1_rect) is True:
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1.move_down()
|
|
|
|
tractor1_rect.x = tractor1.get_x()
|
|
|
|
tractor1_rect.y = tractor1.get_y()
|
|
|
|
loop = False
|
2021-03-31 14:02:04 +02:00
|
|
|
elif random1 == 2 and is_move_allowed(2, tractor1_rect) is True:
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1.move_left()
|
|
|
|
tractor1_rect.x = tractor1.get_x()
|
|
|
|
tractor1_rect.y = tractor1.get_y()
|
|
|
|
loop = False
|
2021-03-31 14:02:04 +02:00
|
|
|
elif random1 == 3 and is_move_allowed(3, tractor1_rect) is True:
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1.move_right()
|
|
|
|
tractor1_rect.x = tractor1.get_x()
|
|
|
|
tractor1_rect.y = tractor1.get_y()
|
|
|
|
loop = False
|
2021-03-31 14:02:04 +02:00
|
|
|
elif random1 == 4 and is_move_allowed(4, tractor1_rect) is True:
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1.move_up()
|
|
|
|
tractor1_rect.x = tractor1.get_x()
|
|
|
|
tractor1_rect.y = tractor1.get_y()
|
|
|
|
loop = False
|
2021-03-29 17:58:15 +02:00
|
|
|
tractor1.set_fuel(tractor1.get_fuel() - 1)
|
|
|
|
if tractor1_rect.x == 0 and tractor1_rect.y == 0:
|
|
|
|
tractor1.set_fuel(definitions.TRACTOR_FUEL)
|
|
|
|
tractor1.set_water_level(definitions.TRACTOR_WATER_LEVEL)
|
2021-03-13 22:30:18 +01:00
|
|
|
def main():
|
2021-03-21 14:10:08 +01:00
|
|
|
create_base_map()
|
2021-03-31 12:56:29 +02:00
|
|
|
amount_of_seeds_dict = {"beetroot": definitions.TRACTOR_AMOUNT_OF_SEEDS_EACH_TYPE, "carrot": definitions.TRACTOR_AMOUNT_OF_SEEDS_EACH_TYPE, "potato": definitions.TRACTOR_AMOUNT_OF_SEEDS_EACH_TYPE, "wheat": definitions.TRACTOR_AMOUNT_OF_SEEDS_EACH_TYPE}
|
|
|
|
collected_plants_dict = {"beetroot": 0, "carrot": 0, "potato": 0, "wheat": 0}
|
2021-03-27 21:31:22 +01:00
|
|
|
fertilizer_dict = {"beetroot": definitions.TRACTOR_FERTILIZER, "carrot": definitions.TRACTOR_FERTILIZER, "potato": definitions.TRACTOR_FERTILIZER, "wheat": definitions.TRACTOR_FERTILIZER}
|
2021-04-02 16:30:11 +02:00
|
|
|
tractor1 = tractor.Tractor(amount_of_seeds_dict, collected_plants_dict, fertilizer_dict, definitions.TRACTOR_FUEL, definitions.TRACTOR_WATER_LEVEL, 0, 0)
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1_rect = pygame.Rect(tractor1.get_x(), tractor1.get_y(), definitions.BLOCK_SIZE, definitions.BLOCK_SIZE)
|
2021-03-13 22:30:18 +01:00
|
|
|
clock = pygame.time.Clock()
|
|
|
|
run = True
|
|
|
|
while run:
|
2021-03-21 12:40:13 +01:00
|
|
|
clock.tick(definitions.FPS)
|
2021-03-13 22:30:18 +01:00
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
run = False
|
2021-03-23 17:54:39 +01:00
|
|
|
draw_window(tractor1_rect)
|
2021-03-23 17:14:46 +01:00
|
|
|
tractor1_handle_movement(tractor1, tractor1_rect)
|
2021-03-29 17:58:15 +02:00
|
|
|
do_work(tractor1, tractor1_rect)
|
2021-04-02 16:30:11 +02:00
|
|
|
grow_plants()
|
2021-03-13 22:30:18 +01:00
|
|
|
pygame.quit()
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|