X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftile.cpp;h=7c7204a82a7f49e586d461aa78113e230dd26438;hb=6e843b1780f62f45b7021bd8c38181aa211588ee;hp=2bd161d98a895898d4552369eaff85c1553a74bd;hpb=236df51d91f0845cd4e06b3269e262911d81f5db;p=supertux.git diff --git a/src/tile.cpp b/src/tile.cpp index 2bd161d98..7c7204a82 100644 --- a/src/tile.cpp +++ b/src/tile.cpp @@ -17,10 +17,12 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // 02111-1307, USA. +#include #include #include #include +#include #include "app/globals.h" #include "tile.h" @@ -98,7 +100,7 @@ std::vector create_surfaces(lisp_object_t* cur) } Tile::Tile() - : id(-1), attributes(0), data(0), next_tile(0), anim_speed(25) + : id(0), attributes(0), data(0), next_tile(0), anim_fps(1) { } @@ -114,19 +116,18 @@ Tile::~Tile() } } -int +void Tile::read(LispReader& reader) { - if(!reader.read_int("id", id)) { - std::cerr << "Missing tile-id.\n"; - return -1; + if(!reader.read_uint("id", id)) { + throw std::runtime_error("Missing tile-id."); } bool value; if(reader.read_bool("solid", value) && value) attributes |= SOLID; if(reader.read_bool("unisolid", value) && value) - attributes |= GOAL; + attributes |= UNISOLID | SOLID; if(reader.read_bool("brick", value) && value) attributes |= BRICK; if(reader.read_bool("ice", value) && value) @@ -145,23 +146,25 @@ Tile::read(LispReader& reader) attributes |= GOAL; reader.read_int("data", data); - reader.read_int("anim-speed", anim_speed); + reader.read_float("anim-fps", anim_fps); reader.read_int("next-tile", next_tile); - slope_angle = 0; - reader.read_float("slope-angle", slope_angle); - if(slope_angle != 0) - { // convert angle to radians from degrees: - slope_angle = (slope_angle * M_PI) / 180; - attributes |= SOLID; - } + if(reader.read_int("slope-type", data)) { + attributes |= SOLID | SLOPE; + } - // FIXME: make images and editor_images a sprite images = create_surfaces(reader.read_lisp("images")); editor_images = create_surfaces(reader.read_lisp("editor-images")); - - return id; } -/* EOF */ +void +Tile::draw(DrawingContext& context, const Vector& pos, int layer) const +{ + if(images.size() > 1) { + size_t frame = size_t(global_time * anim_fps) % images.size(); + context.draw_surface(images[frame], pos, layer); + } else if (images.size() == 1) { + context.draw_surface(images[0], pos, layer); + } +}