This repository was archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprites.py
139 lines (112 loc) · 4.19 KB
/
sprites.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
import pygame
from settings import *
from random import randint, choice
from timer import Timer
class Generic(pygame.sprite.Sprite):
def __init__(self, pos, surf, groups, z=LAYERS['main']):
super().__init__(groups)
self.image = surf
self.rect = self.image.get_rect(topleft=pos)
self.z = z
self.hitbox = self.rect.copy().inflate(-self.rect.width * 0.2, -self.rect.height * 0.75)
class Interaction(Generic):
def __init__(self, pos, size, groups, name):
surf = pygame.Surface(size)
super().__init__(pos, surf, groups)
self.name = name
class Water(Generic):
def __init__(self, pos, frames, groups):
# animation setup
self.frames = frames
self.frame_index = 0
# sprite setup
super().__init__(pos=pos,
surf=self.frames[self.frame_index],
groups=groups,
z=LAYERS['water']
)
def animate(self, dt):
self.frame_index += 4 * dt
if self.frame_index >= len(self.frames):
self.frame_index = 0
self.image = self.frames[int(self.frame_index)]
def update(self, dt):
self.animate(dt)
class WildFlower(Generic):
def __init__(self, pos, surf, groups):
super().__init__(pos, surf, groups)
self.hitbox = self.rect.copy().inflate(-20, -self.rect.height * 0.9)
class Partical(Generic):
def __init__(self, pos, surf, groups, z, duration=200):
super().__init__(pos, surf, groups, z)
self.start_time = pygame.time.get_ticks()
self.duration = duration
# white surface
mask_surf = pygame.mask.from_surface(self.image)
new_surf = mask_surf.to_surface()
new_surf.set_colorkey((0, 0, 0))
self.image = new_surf
def update(self, dt):
current_time = pygame.time.get_ticks()
if current_time - self.start_time > self.duration:
self.kill()
class Tree(Generic):
def __init__(self, pos, surf, groups, name, player_add):
super().__init__(pos, surf, groups)
# tree attributes
self.name = name
self.health = 5
self.alive = True
stump_path = f'./graphics/stumps/{"small" if name == "Small" else "large"}.png'
self.stump_surf = pygame.image.load(stump_path).convert_alpha()
# apples
self.apples_surf = pygame.image.load('./graphics/fruit/apple.png')
self.apple_pos = APPLE_POS[name]
self.apple_sprites = pygame.sprite.Group()
self.create_fruit()
# player item add
self.player_add = player_add
# sounds
self.axe_sound = pygame.mixer.Sound('./audio/axe.mp3')
def damage(self):
# damaging the tree
self.health -= 1
# play sound
self.axe_sound.play()
# remove an apple
if len(self.apple_sprites.sprites()) > 0:
random_apple = choice(self.apple_sprites.sprites())
Partical(
pos=random_apple.rect.topleft,
surf=random_apple.image,
groups=self.groups()[0],
z=LAYERS['fruit']
)
self.player_add('apple')
random_apple.kill()
def check_death(self):
if self.health <= 0:
Partical(
pos=self.rect.topleft,
surf=self.image,
groups=self.groups()[0],
z=LAYERS['fruit'],
duration=400
)
self.image = self.stump_surf
self.rect = self.image.get_rect(midbottom=self.rect.midbottom)
self.hitbox = self.rect.copy().inflate(-10, -self.rect.height * 0.6)
self.player_add('wood')
self.alive = False
def update(self, dt):
if self.alive:
self.check_death()
def create_fruit(self):
if not self.alive:
return
for pos in self.apple_pos:
if randint(0, 10) < 2:
x = pos[0] + self.rect.left
y = pos[1] + self.rect.top
# the first group is 'all_sprites'
Generic((x, y), self.apples_surf, [self.apple_sprites, self.groups()[0]], LAYERS['fruit'])