test of the knowledge base
This commit is contained in:
parent
ffb64ccbc0
commit
7579eed901
BIN
source/__pycache__/crop_protection_product.cpython-311.pyc
Normal file
BIN
source/__pycache__/crop_protection_product.cpython-311.pyc
Normal file
Binary file not shown.
BIN
source/__pycache__/ground.cpython-311.pyc
Normal file
BIN
source/__pycache__/ground.cpython-311.pyc
Normal file
Binary file not shown.
BIN
source/__pycache__/plant.cpython-311.pyc
Normal file
BIN
source/__pycache__/plant.cpython-311.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,7 +1,13 @@
|
|||||||
import pygame
|
import pygame
|
||||||
|
import time
|
||||||
|
import random
|
||||||
|
|
||||||
from area.constants import WIDTH, HEIGHT
|
from area.constants import WIDTH, HEIGHT
|
||||||
from area.field import drawWindow
|
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))
|
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
|
||||||
pygame.display.set_caption('Intelligent tractor')
|
pygame.display.set_caption('Intelligent tractor')
|
||||||
|
|
||||||
@ -15,6 +21,19 @@ def main():
|
|||||||
if event.type == pygame.QUIT:
|
if event.type == pygame.QUIT:
|
||||||
run = False
|
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
|
# in loop move tractor
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
Loading…
Reference in New Issue
Block a user