a-robots-conundrum/arobotsconundrum/boulder.py

100 lines
3.4 KiB
Python
Raw Normal View History

# This file is part of A Robot's Conundrum.
2012-08-08 16:46:26 +02:00
#
# A Robot's Conundrum 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.
2012-08-08 16:46:26 +02:00
#
# A Robot's Conundrum 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.
2012-08-08 16:46:26 +02:00
#
# You should have received a copy of the GNU General Public License along with
# A Robot's Conundrum. If not, see <http://www.gnu.org/licenses/>.
2012-08-08 16:46:26 +02:00
#
# ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
#
# boulder.py
# --------------------
# date created : Wed Aug 8 2012
# copyright : (C) 2012 Sakse Dalum
# maintained by : Sakse Dalum <don_s@hongabar.org>
"""
A rolling boulder.
"""
import pygame
import worldobject
2012-08-08 18:13:53 +02:00
import block
import player
2012-08-08 16:46:26 +02:00
class Boulder(worldobject.WorldObject):
def __init__(self, level, x, y, direction=(1, 0),
movable=True, rolling=False):
2012-08-08 16:46:26 +02:00
self.__dict__.update(locals())
worldobject.WorldObject.__init__(self, level, x, y, direction=direction,
2012-08-08 18:13:53 +02:00
movable=movable, speed=4)
2012-08-08 16:46:26 +02:00
2012-08-09 17:00:14 +02:00
self.falling = False
2012-08-08 16:46:26 +02:00
self.anim = 'boulder_right'
self.frame = 0
2012-08-08 22:40:27 +02:00
self.anim_speed = 60
2012-08-08 16:46:26 +02:00
self.ignore_list.append(player.Player)
2012-08-09 17:00:14 +02:00
def fall(self, setting):
if setting and not self.falling:
2012-08-09 17:00:14 +02:00
self.frame = 0
self.falling = True
2012-08-08 18:13:53 +02:00
def activate(self, setting):
self.rolling = True
def reset_pos(self):
worldobject.WorldObject.reset_pos(self)
2012-08-09 17:00:14 +02:00
self.frame = 0
2012-08-08 18:13:53 +02:00
self.rolling = False
2012-08-09 17:00:14 +02:00
self.falling = False
2012-08-08 18:13:53 +02:00
2012-08-08 16:46:26 +02:00
def update(self, e, t, dt):
# Update the animation
2012-08-08 18:13:53 +02:00
if self.rolling:
self.frame = ((self.frame + self.anim_speed * dt) %
len(self.level.imgs[self.anim]))
2012-08-09 17:00:14 +02:00
if self.falling:
self.frame = min(self.frame + self.anim_speed * dt,
len(self.level.imgs[self.anim]) - 1)
2012-08-08 16:46:26 +02:00
2012-08-09 17:00:14 +02:00
if self.falling:
self.anim = 'boulder_falling'
if self.frame == len(self.level.imgs[self.anim]) - 1:
self.reset_pos()
elif self.direction == (1, 0):
2012-08-08 16:46:26 +02:00
self.anim = 'boulder_right'
2012-08-09 17:00:14 +02:00
elif self.direction == (0, 1):
2012-08-08 16:46:26 +02:00
self.anim = 'boulder_down'
2012-08-09 17:00:14 +02:00
elif self.direction == (-1, 0):
2012-08-08 16:46:26 +02:00
self.anim = 'boulder_left'
2012-08-09 17:00:14 +02:00
elif self.direction == (0, -1):
2012-08-08 16:46:26 +02:00
self.anim = 'boulder_up'
2012-08-09 17:00:14 +02:00
if self.rolling and not self.falling:
2012-08-08 19:53:48 +02:00
if not self.is_moving:
tile_sharer = self.share_tile(block.ArrowBlock)
if tile_sharer:
self.direction = tile_sharer.direction
2012-08-08 18:13:53 +02:00
if not self.move(*self.direction) and not self.is_moving:
self.reset_pos()
2012-08-08 16:46:26 +02:00
worldobject.WorldObject.update(self, e, t, dt)
def draw(self, window):
self.img = self.level.imgs[self.anim][int(self.frame)]
window.blit(self.img, (self.x - 32 - self.level.camera_x,
self.y - self.img.get_size()[1] + 24
- self.level.camera_y))