-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.py
161 lines (132 loc) · 5 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
from math import sin
import pygame
from utilities import import_folder
class Player(pygame.sprite.Sprite):
def __init__(self, pos, surface, create_jump_particles, change_health):
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)
# dust particles
self.import_dust_run_particles()
self.dust_frame_index = 0
self.dust_animation_speed = 0.15
self.display_surface = surface
self.create_jump_particles = create_jump_particles
# player movement
self.direction = pygame.math.Vector2(0, 0)
self.speed = 8
self.gravity = 0.8
self.jump_speed = -16
# player status
self.status = 'idle'
self.facing_right = True
self.on_ground = False
# health managment
self.change_health = change_health
self.invincible = False
self.invincibility_duration = 1000
self.hurt_time = 0
# audio
self.jump_sound = pygame.mixer.Sound('audio/effects/jump.wav')
self.jump_sound.set_volume(0.5)
self.hit_sound = pygame.mixer.Sound('audio/effects/hit.wav')
def import_character_assets(self):
character_path = 'graphics/character/'
self.animations = {
'idle': [],
'run': [],
'jump': [],
'fall': []
}
for animation in self.animations.keys():
full_path = character_path + animation
self.animations[animation] = import_folder(full_path)
def import_dust_run_particles(self):
self.dust_run_particles = import_folder('graphics/character/dust_particles/run')
def run_dust_animate(self):
if self.status == 'run' and self.on_ground:
self.dust_frame_index += self.dust_animation_speed
if self.dust_frame_index >= len(self.dust_run_particles):
self.dust_frame_index = 0
dust_particle = self.dust_run_particles[int(self.dust_frame_index)]
if self.facing_right:
pos = self.rect.bottomleft - pygame.math.Vector2(6, 10)
self.display_surface.blit(dust_particle, pos)
else:
pos = self.rect.bottomright - pygame.math.Vector2(6, 10)
flipped_dust_particle = pygame.transform.flip(dust_particle, True, False)
self.display_surface.blit(flipped_dust_particle, pos)
def animate(self):
animation = self.animations[self.status]
self.frame_index += self.animation_speed
if self.frame_index >= len(animation):
self.frame_index = 0
image = animation[int(self.frame_index)]
if self.facing_right:
self.image = image
self.rect.bottomleft = self.rect.bottomleft
else:
flipped_image = pygame.transform.flip(image, True, False)
self.image = flipped_image
self.rect.bottomright = self.rect.bottomright
if self.invincible:
alpha = self.wave_value()
self.image.set_alpha(alpha)
else:
self.image.set_alpha(255)
self.rect = self.image.get_rect(midbottom=self.rect.midbottom)
def get_input(self):
keys = pygame.key.get_pressed()
if keys[pygame.K_RIGHT]:
self.direction.x = 1
self.facing_right = True
elif keys[pygame.K_LEFT]:
self.direction.x = -1
self.facing_right = False
else:
self.direction.x = 0
if keys[pygame.K_SPACE] and self.on_ground:
self.jump()
self.create_jump_particles(self.rect.midbottom)
def get_status(self):
if self.direction.y < 0:
self.status = 'jump'
elif self.direction.y > 1:
self.status = 'fall'
else:
if self.direction.x != 0:
self.status = 'run'
else:
self.status = 'idle'
def apply_gravity(self):
self.direction.y += self.gravity
self.rect.y += self.direction.y
def jump(self):
self.direction.y = self.jump_speed
self.jump_sound.play()
def get_damage(self):
if not self.invincible:
self.hit_sound.play()
self.change_health(-20)
self.invincible = True
self.hurt_time = pygame.time.get_ticks()
def invincibility_timer(self):
if self.invincible:
current_time = pygame.time.get_ticks()
if current_time - self.hurt_time >= self.invincibility_duration:
self.invincible = False
def wave_value(self):
value = sin(pygame.time.get_ticks())
if value >= 0:
return 255
return 0
def update(self):
self.get_input()
self.get_status()
self.animate()
self.run_dust_animate()
self.invincibility_timer()
self.wave_value()