2012-10-12 13:50:02 +02:00
|
|
|
# This file is part of A Robot's Conundrum.
|
2012-08-07 21:23:10 +02:00
|
|
|
#
|
2012-10-12 13:50:02 +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-07 21:23:10 +02:00
|
|
|
#
|
2012-10-12 13:50:02 +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-07 21:23:10 +02:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
2012-10-12 13:50:02 +02:00
|
|
|
# A Robot's Conundrum. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-07 21:23:10 +02:00
|
|
|
#
|
|
|
|
# ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
|
|
|
|
#
|
2012-08-07 23:21:44 +02:00
|
|
|
# tile.py
|
2012-08-07 21:23:10 +02:00
|
|
|
# --------------------
|
|
|
|
# date created : Tue Aug 7 2012
|
|
|
|
# copyright : (C) 2012 Sakse Dalum
|
|
|
|
# maintained by : Sakse Dalum <don_s@hongabar.org>
|
|
|
|
|
|
|
|
"""
|
2012-08-07 23:21:44 +02:00
|
|
|
A generic tile.
|
2012-08-07 21:23:10 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
import worldobject
|
|
|
|
|
|
|
|
class Tile(worldobject.WorldObject):
|
2012-08-07 23:21:44 +02:00
|
|
|
def __init__(self, level, x, y, img):
|
2012-08-07 21:23:10 +02:00
|
|
|
self.__dict__.update(locals())
|
2012-08-07 23:21:44 +02:00
|
|
|
worldobject.WorldObject.__init__(self, level, x, y)
|
2012-08-07 21:23:10 +02:00
|
|
|
|
|
|
|
def draw(self, window):
|
2012-08-08 13:50:48 +02:00
|
|
|
window.blit(self.img, (self.x - 32 - self.level.camera_x,
|
2012-08-08 14:52:08 +02:00
|
|
|
self.y - self.img.get_size()[1] + 24
|
2012-08-08 13:50:48 +02:00
|
|
|
- self.level.camera_y))
|
2012-08-21 18:36:51 +02:00
|
|
|
|
|
|
|
class NaiveTile(object):
|
|
|
|
def __init__(self, x, y, img):
|
|
|
|
self.__dict__.update(locals())
|
|
|
|
|
|
|
|
def draw(self, window):
|
|
|
|
window.blit(self.img, (self.x - 32,
|
|
|
|
self.y - self.img.get_size()[1] + 24))
|
|
|
|
|