a-robots-conundrum/robotgame/player.py

121 lines
4.1 KiB
Python

# 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/>.
#
# ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
#
# player.py
# --------------------
# date created : Tue Aug 7 2012
# copyright : (C) 2012 Sakse Dalum
# maintained by : Sakse Dalum <don_s@hongabar.org>
"""
A generic level.
"""
import pygame
import re
import os
import worldobject
class Player(worldobject.WorldObject):
def __init__(self, level, x, y, z=1, movable=True):
self.__dict__.update(locals())
worldobject.WorldObject.__init__(self, level, x, y,
z=z, movable=movable)
self.load()
self.anim = 'idle_right'
self.frame = 0
self.anim_speed = 30
def load(self):
self.imgs = {}
for anim, directory in (
[('idle_up', os.path.join('robot_idle', 'up')),
('idle_down', os.path.join('robot_idle', 'down')),
('idle_right', os.path.join('robot_idle', 'right')),
('idle_left', os.path.join('robot_idle', 'right'))]
):
self.imgs[anim] = []
# Find all image files for the given animation
anim_files = []
for root, dirs, files in os.walk(os.path.join(
self.level.graphics_dir, directory)):
for f in files:
if re.match(r"^.*\.(png)$", '/'.join([root, f])):
anim_files.append('/'.join([root, f]))
# Sort and load the files
for f in sorted(anim_files):
img = pygame.image.load(f)
# Special treatment:
if anim == 'idle_left':
img = pygame.transform.flip(img, 1, 0)
self.imgs[anim].append(img)
def touch(self, touch_x, touch_y):
for obj in self.level.objects:
if (obj.x == self.x + touch_x * self.tile_x
and obj.y == self.y + touch_y * self.tile_y
and obj != self):
obj.use(self)
def update(self, e, t, dt):
worldobject.WorldObject.update(self, e, t, dt)
for event in e:
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
if not self.holding:
self.direction = (0, -1)
self.anim = 'idle_up'
self.move(0, -1)
if event.key == pygame.K_DOWN:
if not self.holding:
self.direction = (0, 1)
self.anim = 'idle_down'
self.move(0, 1)
if event.key == pygame.K_RIGHT:
if not self.holding:
self.direction = (1, 0)
self.anim = 'idle_right'
self.move(1, 0)
if event.key == pygame.K_LEFT:
if not self.holding:
self.direction = (-1, 0)
self.anim = 'idle_left'
self.move(-1, 0)
if event.key == pygame.K_SPACE:
self.touch(*self.direction)
# Update the animation
self.frame = ((self.frame + self.anim_speed * dt) %
len(self.imgs[self.anim]))
def draw(self, window):
self.img = self.imgs[self.anim][int(self.frame)]
window.blit(self.img, (self.x - 32,
self.y - self.img.get_size()[1] + 32))