-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBaseModule.py
284 lines (207 loc) · 7.45 KB
/
BaseModule.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import pygame
import math
from Constants import *
from MagicModule import *
class GameObject:
def __init__(self, x, y, w, h, game=None, speed=[0, 0]):
self.bounds = [x, y, w, h]
self.update_rect()
self.speed = speed
self.game = game
@property
def left(self):
return self.bounds[0]
@property
def right(self):
return self.bounds[0] + self.bounds[2]
@property
def top(self):
return self.bounds[1]
@property
def bottom(self):
return self.bounds[1] + self.bounds[3]
@property
def width(self):
return self.bounds[2]
@property
def height(self):
return self.bounds[3]
@property
def center(self):
return (self.centerx, self.centery)
@property
def centerx(self):
return self.bounds[0] + self.bounds[2] / 2
@property
def centery(self):
return self.bounds[1] + self.bounds[3] / 2
def move(self, dx, dy):
self.bounds[0] += dx
self.bounds[1] += dy
self.update_rect()
def set_x(self, x):
self.bounds[0] = x
self.update_rect()
def set_y(self, y):
self.bounds[1] = y
self.update_rect()
def update(self):
self.move(*self.speed)
def update_rect(self):
self.rect = pygame.Rect(self.left, self.top, self.width, self.height)
class Item:
def __init__(self, function=lambda: None, name=''):
self.function = function
self.name = name
self.icon = None
def use(self, obj):
self.function(obj)
def load_icon(self, icon):
self.icon = icon
def get_icon(self):
return self.icon
def set_name(self, name):
self.name = name
def get_name(self):
return self.name
class Weapon(Item):
def __init__(self, attack_radius, *args, **kwargs):
super().__init__(*args, **kwargs)
self.attack_radius = attack_radius
def get_attack_radius(self):
return self.attack_radius
def set_attack_radiue(self, attack_radius):
self.attack_radius = attack_radius
def use(self, obj):
for e in obj.get_attacked_enemies(self.get_attack_radius()):
super().use(e)
class Particle(GameObject):
def __init__(self, x, y, w, h, time):
super().__init__(x, y, w, h)
self.pixmap_ticks = 0
self.time = time
self.ticks = 0
def load_pixmaps(self, pixmaps):
self.pixmaps = pixmaps
def is_active(self):
if self.ticks <= self.time:
return True
return False
def draw(self):
if self.is_active():
return self.pixmaps[self.pixmap_ticks]
return None
def calculate_ticks(self):
self.period = self.time // len(self.pixmaps)
def update(self):
self.pixmap_ticks = self.ticks // self.period
if self.pixmap_ticks >= len(self.pixmaps):
self.pixmap_ticks = len(self.pixmaps) - 1
self.ticks += 1
class HealthUpPotion(Item):
def __init__(self):
super().__init__(self.use, "Зелье лечения")
self.load_icon(load_image("textures/items/potions/health_up_potion.png"))
def use(self, obj):
effect = IncreaseHealthEffect(60, 0.2)
obj.affect_effect(effect)
obj.remove_item(self)
class MagicUpPotion(Item):
def __init__(self):
super().__init__(self.use, "Зелье магии")
self.load_icon(load_image("textures/items/potions/magic_up_potion.png"))
def use(self, obj):
effect = IncreaseManaEffect(60, 0.2)
obj.affect_effect(effect)
obj.remove_item(self)
class IntelligenceUpPotion(Item):
def __init__(self):
super().__init__(self.use, "Зелье интеллекта")
self.load_icon(load_image("textures/items/potions/intelligence_up_potion.png"))
def use(self, obj):
effect = IncreaseIntelligenceEffect(600, 10)
obj.affect_effect(effect)
obj.remove_item(self)
class StrengthUpPotion(Item):
def __init__(self):
super().__init__(self.use, "Зелье силы")
self.load_icon(load_image("textures/items/potions/strength_up_potion.png"))
def use(self, obj):
effect = IncreaseStrengthEffect(600, 10)
obj.affect_effect(effect)
obj.remove_item(self)
class SpeedUpPotion(Item):
def __init__(self):
super().__init__(self.use, "Зелье скорости")
self.load_icon(load_image("textures/items/potions/speed_up_potion.png"))
def use(self, obj):
effect = IncreaseSpeedEffect(600, 10)
obj.affect_effect(effect)
obj.remove_item(self)
class DamageParticle(Particle):
def __init__(self):
self.load_pixmaps([load_image("textures/damage/damage_1.png"),
load_image("textures/damage/damage_2.png"),
load_image("textures/damage/damage_3.png"),
load_image("textures/damage/damage_4.png")])
def spawn(self, x, y, w, h, time):
p = Particle(x, y, w, h, time)
p.pixmaps = self.pixmaps
p.calculate_ticks()
return p
class ExplosionParticle(Particle):
def __init__(self):
self.load_pixmaps([load_image("textures/damage/boom_1.png"),
load_image("textures/damage/boom_2.png"),
load_image("textures/damage/boom_3.png"),
load_image("textures/damage/boom_4.png")])
def spawn(self, x, y, w, h, time):
p = Particle(x, y, w, h, time)
p.pixmaps = self.pixmaps
p.calculate_ticks()
return p
class FrozenExplosionParticle(Particle):
def __init__(self):
self.load_pixmaps([load_image("textures/damage/frozenboom_1.png"),
load_image("textures/damage/frozenboom_2.png"),
load_image("textures/damage/frozenboom_3.png"),
load_image("textures/damage/frozenboom_4.png")])
def spawn(self, x, y, w, h, time):
p = Particle(x, y, w, h, time)
p.pixmaps = self.pixmaps
p.calculate_ticks()
return p
class Drop(GameObject):
def __init__(self, x, y, game, item):
self.icon = item.get_icon()
self.item = item
super().__init__(x, y, self.icon.get_rect().width,
self.icon.get_rect().height,
game)
self.ticks = 0
def draw(self):
return self.icon
def get(self, obj):
if obj.get_item(self.item) is False:
return
self.game.delete_object(self)
if obj is self.game.get_main_player():
self.game.get_main_gui().add_info(self.item.get_name(), 120)
class MagicDrop(GameObject):
def __init__(self, x, y, game, magic):
self.icon = magic.get_icon()
self.magic = magic
super().__init__(x, y, self.icon.get_rect().width,
self.icon.get_rect().height,
game)
self.ticks = 0
def draw(self):
return self.icon
def get(self, obj):
obj.add_magic(self.magic)
self.game.delete_object(self)
if obj is self.game.get_main_player():
self.game.get_main_gui().add_info("Вы выучили заклинание: " + self.magic.get_name(), 120)
DamageParticleInstance = DamageParticle()
ExplosionParticleInstance = ExplosionParticle()
FrozenExplosionParticleInstance = FrozenExplosionParticle()