X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Flight.cpp;h=a0abfcf39e23ffb07c5904a02edd964ac035d2ab;hb=08ccb17345a52f5ffd8a5dd6ecf675cad55f16a7;hp=42dcc2c097a70302909e8c612e8cea407b04b99f;hpb=39c8f41f9d46e3d2b890961814193363f0fa10c5;p=supertux.git diff --git a/src/object/light.cpp b/src/object/light.cpp index 42dcc2c09..a0abfcf39 100644 --- a/src/object/light.cpp +++ b/src/object/light.cpp @@ -1,3 +1,22 @@ +// $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 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. + #include #include "light.hpp" @@ -8,7 +27,7 @@ #include "player.hpp" #include "sector.hpp" -Light::Light(const lisp::Lisp& ) +Light::Light(const Vector& center, const Color& color) : position(center), color(color) { sprite = sprite_manager->create("images/objects/lightmap_light/lightmap_light.sprite"); } @@ -28,10 +47,11 @@ Light::draw(DrawingContext& context) { context.push_target(); context.set_target(DrawingContext::LIGHTMAP); - - sprite->draw(context, Sector::current()->player->get_pos(), 0); - + + sprite->set_color(color); + sprite->set_blend(Blend(GL_SRC_ALPHA, GL_ONE)); + sprite->set_angle(90); // FIXME: color won't get applied for angle=0 + sprite->draw(context, position, 0); + context.pop_target(); } - -IMPLEMENT_FACTORY(Light, "light");