Reprezentacja_wiedzy #1

Merged
s481838 merged 6 commits from Reprezentacja_wiedzy into master 2024-03-26 00:23:07 +01:00
9 changed files with 19 additions and 0 deletions
Showing only changes of commit 7579eed901 - Show all commits

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,13 @@
import pygame
import time
import random
from area.constants import WIDTH, HEIGHT
from area.field import drawWindow
from area.tractor import Tractor
from area.field import tiles
from ground import Dirt
from plant import Plant
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption('Intelligent tractor')
@ -15,6 +21,19 @@ def main():
if event.type == pygame.QUIT:
run = False
#small test:
time.sleep(2)
tile1 = tiles[0]
p1 = Plant('wheat', 'cereal', random.randint(1,100), random.randint(1,100), random.randint(1,100))
d1 = Dirt(random.randint(1, 100), random.randint(1,100))
d1.pests_and_weeds()
tile1.ground=d1
t1 = Tractor(10, 10)
t1.work_on_field(tile1, d1, p1)
time.sleep(3)
print("\n")
# in loop move tractor
main()