-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathplayer.py
115 lines (104 loc) · 3.16 KB
/
player.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import pygame
from support import import_sprite
class Player(pygame.sprite.Sprite):
def __init__(self, pos):
super().__init__()
self._import_character_assets()
self.frame_index = 0
self.animation_speed = 0.15
self.image = self.animations["idle"][self.frame_index]
self.rect = self.image.get_rect(topleft = pos)
self.mask = pygame.mask.from_surface(self.image)
# player movement
self.direction = pygame.math.Vector2(0, 0)
self.speed = 5
self.jump_move = -16
# player status
self.life = 5
self.game_over = False
self.win = False
self.status = "idle"
self.facing_right = True
self.on_ground = False
self.on_ceiling = False
self.on_left = False
self.on_right = False
# gets all the image needed for animating specific player action
def _import_character_assets(self):
character_path = "assets/player/"
self.animations = {
"idle": [],
"walk": [],
"jump": [],
"fall": [],
"lose": [],
"win": []
}
for animation in self.animations.keys():
full_path = character_path + animation
self.animations[animation] = import_sprite(full_path)
# animates the player actions
def _animate(self):
animation = self.animations[self.status]
# loop over frame index
self.frame_index += self.animation_speed
if self.frame_index >= len(animation):
self.frame_index = 0
image = animation[int(self.frame_index)]
image = pygame.transform.scale(image, (35, 50))
if self.facing_right:
self.image = image
else:
flipped_image = pygame.transform.flip(image, True, False)
self.image = flipped_image
# set the rect
if self.on_ground and self.on_right:
self.rect = self.image.get_rect(bottomright = self.rect.bottomright)
elif self.on_ground and self.on_left:
self.rect = self.image.get_rect(bottomleft = self.rect.bottomleft)
elif self.on_ground:
self.rect = self.image.get_rect(midbottom = self.rect.midbottom)
elif self.on_ceiling and self.on_right:
self.rect = self.image.get_rect(topright = self.rect.topright)
elif self.on_ceiling and self.on_left:
self.rect = self.image.get_rect(bottomleft = self.rect.topleft)
elif self.on_ceiling:
self.rect = self.image.get_rect(midtop = self.rect.midtop)
# checks if the player is moving towards left or right or not moving
def _get_input(self, player_event):
if player_event != False:
if player_event == "right":
self.direction.x = 1
self.facing_right = True
elif player_event == "left":
self.direction.x = -1
self.facing_right = False
else:
self.direction.x = 0
def _jump(self):
self.direction.y = self.jump_move
# identifies player action
def _get_status(self):
if self.direction.y < 0:
self.status = "jump"
elif self.direction.y > 1:
self.status = "fall"
elif self.direction.x != 0:
self.status = "walk"
else:
self.status = "idle"
# update the player's state
def update(self, player_event):
self._get_status()
if self.life > 0 and not self.game_over:
if player_event == "space" and self.on_ground:
self._jump()
else:
self._get_input(player_event)
elif self.game_over and self.win:
self.direction.x = 0
self.status = "win"
else:
self.direction.x = 0
self.status = "lose"
self._animate()