X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsprite%2Fsprite_data.hpp;h=78f51a91ecd136d6febe62e7815aff0e60d46bdd;hb=HEAD;hp=f9a87a3d2fa35186f99a6a597482a3df6365c8e7;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/sprite/sprite_data.hpp b/src/sprite/sprite_data.hpp index f9a87a3d2..78f51a91e 100644 --- a/src/sprite/sprite_data.hpp +++ b/src/sprite/sprite_data.hpp @@ -1,80 +1,79 @@ -// $Id$ -// // SuperTux -// Copyright (C) 2004 Ingo Ruhnke , -// (C) 2004 Matthias Braun +// Copyright (C) 2006 Matthias Braun // -// This program 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 2 -// of the License, or (at your option) any later version. +// This program 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. // // This program 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 this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#ifndef SUPERTUX_SPRITE_DATA_H -#define SUPERTUX_SPRITE_DATA_H +// along with this program. If not, see . + +#ifndef HEADER_SUPERTUX_SPRITE_SPRITE_DATA_HPP +#define HEADER_SUPERTUX_SPRITE_SPRITE_DATA_HPP -#include -#include #include +#include -#include "lisp/lisp.hpp" +#include "util/reader_fwd.hpp" #include "video/surface.hpp" class SpriteData { public: - /** cur has to be a pointer to data in the form of ((x-offset 5) - (y-offset 10) ...) */ - SpriteData(const lisp::Lisp* cur); - ~SpriteData(); + /** cur has to be a pointer to data in the form of ((hitbox 5 10 0 0) ...) */ + SpriteData(const Reader& cur, const std::string& basedir); + ~SpriteData(); - const std::string& get_name() const - { - return name; - } + const std::string& get_name() const + { + return name; + } private: - friend class Sprite; + friend class Sprite; + + struct Action + { + Action(); + ~Action(); + + std::string name; + + /** Position correction */ + float x_offset; + float y_offset; - struct Action - { - Action(); - ~Action(); - - std::string name; + /** Hitbox width */ + float hitbox_w; - /** Position correction */ - int x_offset; - int y_offset; - /** Drawing priority in queue */ - int z_order; + /** Hitbox height */ + float hitbox_h; - /** Frames per second */ - float fps; + /** Drawing priority in queue */ + int z_order; - /** Mirror is used to avoid duplicating left and right side - sprites */ - // bool mirror; + /** Frames per second */ + float fps; - std::vector surfaces; - }; + std::vector surfaces; + }; - typedef std::map Actions; - Actions actions; + typedef std::map Actions; - void parse_action(const lisp::Lisp* lispreader); - /** Get an action */ - Action* get_action(std::string act); + void parse_action(const Reader& lispreader, const std::string& basedir); + /** Get an action */ + const Action* get_action(const std::string& act); - std::string name; + Actions actions; + std::string name; }; #endif +/* EOF */