X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fobject%2Fgradient.cpp;h=896f30b1053a8beb49c0528e0fa2acaa4cce2401;hb=18c69f4aa24d496f84a088d60c18b180c293dace;hp=d89996bb2921f42273e86a57d0da47c282e8db94;hpb=a113d3bd1feddd510e3b2852b0d42522735eee40;p=supertux.git diff --git a/src/object/gradient.cpp b/src/object/gradient.cpp index d89996bb2..896f30b10 100644 --- a/src/object/gradient.cpp +++ b/src/object/gradient.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // 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 @@ -14,34 +12,28 @@ // 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. - -#include +// along with this program. If not, see . -#include -#include "gradient.hpp" -#include "camera.hpp" -#include "video/drawing_context.hpp" -#include "lisp/lisp.hpp" -#include "lisp/writer.hpp" -#include "object_factory.hpp" -#include "resources.hpp" -#include "main.hpp" -#include "log.hpp" +#include "object/gradient.hpp" +#include "supertux/object_factory.hpp" +#include "util/reader.hpp" -Gradient::Gradient() - : layer(LAYER_BACKGROUND0) +Gradient::Gradient() : + layer(LAYER_BACKGROUND0), + gradient_top(), + gradient_bottom() { } -Gradient::Gradient(const lisp::Lisp& reader) - : layer(LAYER_BACKGROUND0) +Gradient::Gradient(const Reader& reader) : + layer(LAYER_BACKGROUND0), + gradient_top(), + gradient_bottom() { reader.get("layer", layer); std::vector bkgd_top_color, bkgd_bottom_color; - if(!reader.get_vector("top_color", bkgd_top_color) || - !reader.get_vector("bottom_color", bkgd_bottom_color)) + if(!reader.get("top_color", bkgd_top_color) || + !reader.get("bottom_color", bkgd_bottom_color)) throw std::runtime_error("Must specify top_color and bottom_color in gradient"); gradient_top = Color(bkgd_top_color); @@ -53,26 +45,6 @@ Gradient::~Gradient() } void -Gradient::write(lisp::Writer& writer) -{ - writer.start_list("gradient"); - - std::vector bkgd_top_color, bkgd_bottom_color; - bkgd_top_color.push_back(gradient_top.red); - bkgd_top_color.push_back(gradient_top.green); - bkgd_top_color.push_back(gradient_top.blue); - bkgd_bottom_color.push_back(gradient_bottom.red); - bkgd_bottom_color.push_back(gradient_bottom.green); - bkgd_bottom_color.push_back(gradient_bottom.blue); - writer.write_float_vector("top_color", bkgd_top_color); - writer.write_float_vector("bottom_color", bkgd_bottom_color); - - writer.write_int("layer", layer); - - writer.end_list("gradient"); -} - -void Gradient::update(float) { } @@ -84,10 +56,10 @@ Gradient::set_gradient(Color top, Color bottom) gradient_bottom = bottom; if (gradient_top.red > 1.0 || gradient_top.green > 1.0 - || gradient_top.blue > 1.0 || gradient_top.alpha > 1.0) + || gradient_top.blue > 1.0 || gradient_top.alpha > 1.0) log_warning << "top gradient color has values above 1.0" << std::endl; if (gradient_bottom.red > 1.0 || gradient_bottom.green > 1.0 - || gradient_bottom.blue > 1.0 || gradient_bottom.alpha > 1.0) + || gradient_bottom.blue > 1.0 || gradient_bottom.alpha > 1.0) log_warning << "bottom gradient color has values above 1.0" << std::endl; } @@ -101,3 +73,5 @@ Gradient::draw(DrawingContext& context) } IMPLEMENT_FACTORY(Gradient, "gradient"); + +/* EOF */