92 lines
2.2 KiB
Python
92 lines
2.2 KiB
Python
'''
|
|
|
|
Game: Angry Birds
|
|
File: main.py
|
|
|
|
Contents: The Main file to Start the Game!
|
|
|
|
Requirements: Pygame, sys, random, math
|
|
Supporting Modules: interface.py, physics_engine.py, maps.py, objects.py
|
|
|
|
Usage:
|
|
Angry_Birds/$ python3 main.py or
|
|
Angry_Birds/$ python main.py
|
|
|
|
By: Jatin Kumar Mandav
|
|
|
|
Blog: https://www.jatinmandav.wordpress.com
|
|
Twitter: @jatinmandav
|
|
YouTube: https://www.youtube.com/mandav
|
|
|
|
'''
|
|
import pygame
|
|
import sys
|
|
import random
|
|
from math import *
|
|
|
|
import physics_engine
|
|
import objects
|
|
import maps
|
|
import interface
|
|
|
|
pygame.init()
|
|
width = 1800
|
|
height = 700
|
|
display = pygame.display.set_mode((width, height))
|
|
clock = pygame.time.Clock()
|
|
|
|
physics_engine.init(display)
|
|
objects.init(display)
|
|
maps.init(display)
|
|
interface.init(display)
|
|
|
|
background = (51, 51, 51)
|
|
|
|
def close():
|
|
pygame.quit()
|
|
sys.exit()
|
|
|
|
def start_game(map):
|
|
map.draw_map()
|
|
|
|
def GAME():
|
|
map = maps.Maps()
|
|
|
|
welcome = interface.Label(700, 100, 400, 200, None, background)
|
|
welcome.add_text("ANGRY BIRDS", 80, "Fonts/arfmoochikncheez.ttf", (236, 240, 241))
|
|
|
|
start = interface.Button(500, 400, 300, 100, start_game, (244, 208, 63), (247, 220, 111))
|
|
start.add_text("START GAME", 60, "Fonts/arfmoochikncheez.ttf", background)
|
|
|
|
exit = interface.Button(1000, 400, 300, 100, close, (241, 148, 138), (245, 183, 177))
|
|
exit.add_text("QUIT", 60, "Fonts/arfmoochikncheez.ttf", background)
|
|
|
|
mandav = interface.Button(width - 300, height - 80, 300, 100, None, background)
|
|
mandav.add_text("MANDAV", 60, "Fonts/arfmoochikncheez.ttf", (41, 41, 41))
|
|
|
|
while True:
|
|
for event in pygame.event.get():
|
|
if event.type == pygame.QUIT:
|
|
close()
|
|
if event.type == pygame.KEYDOWN:
|
|
if event.key == pygame.K_q:
|
|
close()
|
|
|
|
if event.type == pygame.MOUSEBUTTONDOWN:
|
|
if exit.isActive():
|
|
exit.action()
|
|
if start.isActive():
|
|
start_game(map)
|
|
|
|
display.fill(background)
|
|
|
|
start.draw()
|
|
exit.draw()
|
|
welcome.draw()
|
|
mandav.draw()
|
|
|
|
pygame.display.update()
|
|
clock.tick(60)
|
|
|
|
GAME()
|