a-robots-conundrum/robotgame/game.py

121 lines
3.5 KiB
Python
Raw Normal View History

2012-08-07 13:21:01 +02:00
# This file is part of ROBOTGAME
#
# ROBOTGAME is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# ROBOTGAME is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# ROBOTGAME. If not, see <http://www.gnu.org/licenses/>.
#
# ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
#
# game.py
# --------------------
# date created : Tue Aug 7 2012
# copyright : (C) 2012 Sakse Dalum
# maintained by : Sakse Dalum <don_s@hongabar.org>
"""
The game. Handles everything.
"""
2012-08-07 14:00:49 +02:00
import os
2012-08-07 13:21:01 +02:00
import pygame
import robotgame
2012-08-07 14:00:49 +02:00
import jukebox
2012-08-07 15:40:42 +02:00
import level
import main_menu
2012-08-07 17:26:49 +02:00
import game_menu
2012-08-07 14:00:49 +02:00
2012-08-07 13:21:01 +02:00
class Game(object):
"""Create an object to handle the game."""
def __init__(self, window, directory, disable_music,
running=False, speed=30, initial_goto_level=None):
2012-08-07 13:21:01 +02:00
self.__dict__.update(locals())
2012-08-07 14:00:49 +02:00
self.objs = []
2012-08-07 13:21:01 +02:00
self.clock = pygame.time.Clock()
2012-08-07 14:00:49 +02:00
self.ticks = self.prev_ticks = pygame.time.get_ticks()
self.load()
2012-08-07 13:21:01 +02:00
def start(self):
self.running = True
self.run()
def stop(self):
self.running = False
def load(self):
graphics_dir = os.path.join(self.directory, "resources", "graphics")
2012-08-07 17:26:49 +02:00
self.level = None
self.jukebox = jukebox.Jukebox(
os.path.join(self.directory, "resources", "music"),
["basshit.ogg"])
self.jukebox.stop()
2012-08-07 21:23:10 +02:00
if not self.disable_music:
self.jukebox.play()
if not self.initial_goto_level:
self.objs.append(main_menu.MainMenu(self, graphics_dir))
else:
exec 'from level%d import Level%d as level' % (self.initial_goto_level,
self.initial_goto_level)
self.goto_level(level(self, graphics_dir))
2012-08-07 13:21:01 +02:00
def run(self):
2012-08-07 14:00:49 +02:00
t = pygame.time.get_ticks()
dt = 0
2012-08-07 13:21:01 +02:00
while self.running:
dt = float(pygame.time.get_ticks() - t) / 1000
2012-08-07 14:00:49 +02:00
t = pygame.time.get_ticks()
self.update(t, dt)
2012-08-07 13:21:01 +02:00
self.draw()
self.clock.tick(self.speed)
2012-08-07 15:40:42 +02:00
def goto_level(self, level):
self.level = level
self.objs.append(self.level)
2012-08-07 15:40:42 +02:00
2012-08-07 14:00:49 +02:00
def update(self, t, dt):
"""
Update all game objects.
"""
# Retrieve and flush all events since last update call (this prevents
# event "bottlenecking"/lock-ups)
2012-08-07 15:40:42 +02:00
e = pygame.event.get()
for event in e:
2012-08-07 13:21:01 +02:00
# Stop the game when closing the window
if event.type == pygame.QUIT:
self.stop()
2012-08-07 14:00:49 +02:00
# Keep the music playing!
2012-08-07 21:23:10 +02:00
if not pygame.mixer.music.get_busy() and not self.disable_music:
2012-08-07 14:00:49 +02:00
self.jukebox.play()
# Update all objects
for obj in self.objs:
if hasattr(obj, 'update'):
2012-08-07 15:40:42 +02:00
obj.update(e, t, dt)
2012-08-07 13:21:01 +02:00
def draw(self):
2012-08-07 14:00:49 +02:00
"""
2012-08-07 15:40:42 +02:00
Draw all game objects.
2012-08-07 14:00:49 +02:00
"""
self.window.fill((0, 0, 0))
2012-08-07 14:00:49 +02:00
for obj in self.objs:
if hasattr(obj, 'draw'):
obj.draw(self.window)
pygame.display.flip()