Zaktualizuj 'tractor.py'
This commit is contained in:
parent
23a91cea55
commit
144d6a8746
82
tractor.py
82
tractor.py
@ -14,47 +14,77 @@ from pygame.locals import (
|
|||||||
|
|
||||||
from dimensions import *
|
from dimensions import *
|
||||||
from colors import *
|
from colors import *
|
||||||
|
from sprites import *
|
||||||
|
|
||||||
class Tractor(pygame.sprite.Sprite):
|
class Tractor(pygame.sprite.Sprite):
|
||||||
def __init__(self, field):
|
def __init__(self, field):
|
||||||
super(Tractor, self).__init__()
|
super(Tractor, self).__init__()
|
||||||
self.surf = pygame.Surface((WIDTH, HEIGHT))
|
self.surf = pygame.Surface((WIDTH, HEIGHT))
|
||||||
self.surf.fill(RED)
|
self.surf = tractor_img_0
|
||||||
self.position = field.position
|
self.position = field.position
|
||||||
self.rect = self.surf.get_rect(
|
self.rect = self.surf.get_rect(
|
||||||
topleft=((MARGIN + WIDTH) * self.position[0] + MARGIN, (MARGIN + HEIGHT) * self.position[1] + MARGIN))
|
topleft=((MARGIN + WIDTH) * self.position[0] + MARGIN, (MARGIN + HEIGHT) * self.position[1] + MARGIN))
|
||||||
self.field = field
|
self.direction = [1, 0]
|
||||||
|
|
||||||
def update(self, pressed_keys):
|
def move(self):
|
||||||
if pressed_keys[K_UP]:
|
self.rect.move_ip(self.direction[0]*(WIDTH + MARGIN), self.direction[1]*(HEIGHT + MARGIN))
|
||||||
self.rect.move_ip(0, -(HEIGHT + MARGIN))
|
self.position[0] += self.direction[0]
|
||||||
self.position[1] -= 1
|
self.position[1] += self.direction[1]
|
||||||
if self.rect.top <= MARGIN:
|
if self.position[0] >= GSIZE:
|
||||||
|
self.position[0] = GSIZE-1
|
||||||
|
if self.position[1] >= GSIZE:
|
||||||
|
self.position[1] = GSIZE-1
|
||||||
|
if self.position[0] < 0:
|
||||||
|
self.position[0] = 0
|
||||||
|
if self.position[1] < 0:
|
||||||
|
self.position[1] = 0
|
||||||
|
|
||||||
|
if self.rect.top <= MARGIN:
|
||||||
self.rect.top = MARGIN
|
self.rect.top = MARGIN
|
||||||
self.position[1] = 0
|
if self.rect.bottom >= SCREEN_HEIGHT-MARGIN:
|
||||||
if pressed_keys[K_DOWN]:
|
|
||||||
self.rect.move_ip(0, HEIGHT + MARGIN)
|
|
||||||
self.position[1] += 1
|
|
||||||
if self.rect.bottom >= SCREEN_HEIGHT-MARGIN:
|
|
||||||
self.rect.bottom = SCREEN_HEIGHT-MARGIN
|
self.rect.bottom = SCREEN_HEIGHT-MARGIN
|
||||||
self.position[1] = GSIZE-1
|
if self.rect.left < MARGIN:
|
||||||
if pressed_keys[K_LEFT]:
|
|
||||||
self.rect.move_ip(-(WIDTH + MARGIN), 0)
|
|
||||||
self.position[0] -= 1
|
|
||||||
if self.rect.left < MARGIN:
|
|
||||||
self.rect.left = MARGIN
|
self.rect.left = MARGIN
|
||||||
self.position[0] = 0
|
if self.rect.right > SCREEN_WIDTH-MARGIN:
|
||||||
if pressed_keys[K_RIGHT]:
|
|
||||||
self.rect.move_ip(WIDTH + MARGIN, 0)
|
|
||||||
self.position[0] += 1
|
|
||||||
if self.rect.right > SCREEN_WIDTH-MARGIN:
|
|
||||||
self.rect.right = SCREEN_WIDTH-MARGIN
|
self.rect.right = SCREEN_WIDTH-MARGIN
|
||||||
self.position[0] = GSIZE-1
|
|
||||||
|
|
||||||
def hydrate(self, field, pressed_keys):
|
|
||||||
if pressed_keys[K_SPACE]:
|
def rotate_right(self):
|
||||||
field[self.position[0]][self.position[1]].hydrate()
|
if self.direction == [1, 0]:
|
||||||
|
self.direction = [0, 1]
|
||||||
|
self.surf = tractor_img_2
|
||||||
|
elif self.direction == [0, 1]:
|
||||||
|
self.direction = [-1, 0]
|
||||||
|
self.surf = tractor_img_1
|
||||||
|
elif self.direction == [-1, 0]:
|
||||||
|
self.direction = [0, -1]
|
||||||
|
self.surf = tractor_img_3
|
||||||
|
elif self.direction == [0, -1]:
|
||||||
|
self.direction = [1, 0]
|
||||||
|
self.surf = tractor_img_0
|
||||||
|
|
||||||
|
def rotate_left(self):
|
||||||
|
if self.direction == [1, 0]:
|
||||||
|
self.direction = [0, -1]
|
||||||
|
self.surf = tractor_img_3
|
||||||
|
elif self.direction == [0, -1]:
|
||||||
|
self.direction = [-1, 0]
|
||||||
|
self.surf = tractor_img_1
|
||||||
|
elif self.direction == [-1, 0]:
|
||||||
|
self.direction = [0, 1]
|
||||||
|
self.surf = tractor_img_2
|
||||||
|
elif self.direction == [0, 1]:
|
||||||
|
self.direction = [1, 0]
|
||||||
|
self.surf = tractor_img_0
|
||||||
|
|
||||||
|
def hydrate(self, field):
|
||||||
|
field[self.position[0]][self.position[1]].hydrate()
|
||||||
|
|
||||||
def cut(self, field, pressed_keys):
|
def cut(self, field, pressed_keys):
|
||||||
if pressed_keys[K_c]:
|
if pressed_keys[K_c]:
|
||||||
field[self.position[0]][self.position[1]].free()
|
field[self.position[0]][self.position[1]].free()
|
||||||
|
|
||||||
|
def plant(self, field, plant, pressed_keys):
|
||||||
|
if field.planted == 0:
|
||||||
|
field.planted = plant
|
||||||
|
plant.field = field
|
||||||
|
Loading…
Reference in New Issue
Block a user