-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
56 lines (45 loc) · 1.83 KB
/
main.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
import pygame as pg
from CONSTANTS import *
from global_vars import *
from entities import *
from Map import Map
from event_handler import EventHandler
#shot sounds credit to hosch (https://hosch.itch.io)
#https://opengameart.org/content/8-bit-sound-effects-2
#explosion sound: https://opengameart.org/content/big-explosion
#Background music credit to bart @ http://opengameart.org
if __name__ == "__main__":
#Initiate pygame
pg.init()
pg.font.init()
pg.mixer.init()
pg.display.set_caption("Tank Game")
pg.display.set_icon(pg.image.load("resources/sprites/tank_icon.png"))
handler = EventHandler()
map = Map(mainDisplay)
menu = handler.create_menu(map)
#Sprites
SPRITE = {"PLAYER1": Texture("resources/sprites/tankG.png", isAnimated = True, frames = 3, frameTime = 20),
"PLAYER2": Texture("resources/sprites/tankR.png", isAnimated = True, frames = 3, frameTime = 20)}
player1 = Player(1, texture = SPRITE["PLAYER1"], coord = (SCREEN_WIDTH/3, SCREEN_HEIGHT/2), controls=CONTROL_PRESET["WASD"])
player2 = Player(2, texture = SPRITE["PLAYER2"], coord = (SCREEN_WIDTH/3*2, SCREEN_HEIGHT/2), angleDeg=180, controls=CONTROL_PRESET["ARROWS"])
list_players.append(player1)
list_players.append(player2)
if not SKIP_SPLASH_SCREEN:
handler.control_splash_screen()
mainDisplay.fill('black')
menu.draw(mainDisplay)
menu.mainloop(mainDisplay)
while handler.programActive:
# ticks per seconds
clock.tick(SCREEN_FPS)
# stuff to update every tick
handler.keys = pg.key.get_pressed()
handler.events = pg.event.get()
handler.listen()
if handler.gameActive:
handler.runGame(map)
elif not menu.is_enabled():
menu.enable()
menu.mainloop(mainDisplay)
pg.display.update()