This repository was archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement.py
67 lines (57 loc) · 1.98 KB
/
element.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
import pygame, pygame.gfxdraw, TextProvider, copy
from pygame.locals import *
from constants import *
#UUUGLY global data structure
activeDict = {}
def initializeActive():
for e in ElementData.keys():
activeDict[e] = ElementData[e][2]
def activate(e):
activeDict[e] = True
def isActive(e):
return activeDict[e]
class Element(pygame.sprite.Sprite):
def __init__(self, type,game):
super().__init__()
self.type = type
self.label = ElementData[self.type][0]
self.game = game
self.active = True
self.radius = ELEMENT_RADIUS
def draw(self, pos):
self.coords = (35 + pos*65,51)
self.drawfree()
def isClicked(self,pos):
posSprite = pygame.sprite.Sprite()
posSprite.rect = pygame.Rect(pos[0],pos[1],0,0)
if pygame.sprite.collide_circle(self,posSprite):
return True
else:
return False
def drawfree(self):
frame = pygame.image.load(PATH + 'empty.png')
try:
ele = pygame.image.load(PATH + self.type + '.png')
except:
ele = pygame.image.load(PATH + 'noimg.png')
eleRect = ele.get_rect()
eleRect.center = frame.get_rect().center
frame.blit(ele,eleRect)
frameRect = frame.get_rect()
frameRect.center = self.coords
self.rect = frameRect
text = TextProvider.captionText.render(self.label, True, BLACK)
textRect = text.get_rect()
textRect.center = (self.coords[0],self.coords[1]+35)
self.game.screen.blit(frame, frameRect)
self.game.screen.blit(text, textRect)
def handleClick(self):
if self in self.game.reactants:
self.game.reactants.remove(self)
self.game.sprites.remove(self)
self.game.react()
self.game.pickup = self
else:
self.game.pickup = copy.copy(self)
def isActive(self):
return activeDict[self.type]