aboutsummaryrefslogtreecommitdiff
path: root/openguilion.py
blob: 2449d8d914634a1fd57ebb45d511bec219bc342b (plain)
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
from openguilion.openguilionCommon import *
from openguilion.intruderAlert import *
from openguilion.caseResolution import *
from openguilion.phase01To17 import *
from openguilion.lost import *
from openguilion.mentalToxicity import *
from openguilion.stateEmergency import *

def main():
	running = True

	startDate = time.time()
	curTime = startDate
	animIndex = 0
	animTime = 0
	animations = [stateEmergency, intruderAlert, caseResolution, mentalToxicity, lost, phase01To17]

	while running:
		for event in pygame.event.get():
			keys = pygame.key.get_pressed()
			event = pygame.event.poll()
			if event.type == pygame.QUIT or keys[pygame.K_ESCAPE]:
				running = False
			if keys[pygame.K_a]:
				textX -= 1
				print(str(textX) + ", " + str(textY))
			if keys[pygame.K_d]:
				textX += 1
				print(str(textX) + ", " + str(textY))
			if keys[pygame.K_w]:
				textY -= 1
				print(str(textX) + ", " + str(textY))
			if keys[pygame.K_s]:
				textY += 1
				print(str(textX) + ", " + str(textY))

		animTime = time.time() - curTime
		if animations[animIndex % len(animations)](animTime):
			curTime = time.time()
			animIndex += 1
			animTime = 0

		pygame.display.update()

	pygame.quit()

if __name__ == "__main__":
	main()