X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Ffireworks.cpp;h=d3037ea6f65ae95dc6492b18b3524c5ef4246f81;hb=04a3157ef478169b5a3fc05dae00ed6ee6a1fae2;hp=1129097281766f7a6dbf423ca26d3f0bd67fa7b7;hpb=70fdbd45026801f0f0f312278c69b383eaca9d3a;p=supertux.git diff --git a/src/object/fireworks.cpp b/src/object/fireworks.cpp index 112909728..d3037ea6f 100644 --- a/src/object/fireworks.cpp +++ b/src/object/fireworks.cpp @@ -1,7 +1,7 @@ // $Id$ -// +// // SuperTux -// Copyright (C) 2005 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 @@ -12,11 +12,11 @@ // 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. +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #include #include "fireworks.hpp" @@ -27,10 +27,12 @@ #include "main.hpp" #include "video/drawing_context.hpp" #include "audio/sound_manager.hpp" +#include "random_generator.hpp" Fireworks::Fireworks() { - timer.start(.2); + timer.start(.2f); + sound_manager->preload("sounds/fireworks.wav"); } Fireworks::~Fireworks() @@ -43,16 +45,20 @@ Fireworks::update(float ) if(timer.check()) { Sector* sector = Sector::current(); Vector pos = sector->camera->get_translation(); - pos += Vector(SCREEN_WIDTH * ((float) rand() / RAND_MAX), - SCREEN_HEIGHT/2 * ((float) rand() / RAND_MAX)); + pos += Vector(systemRandom.randf(SCREEN_WIDTH), + systemRandom.randf(SCREEN_HEIGHT/2)); - float red = static_cast(rand() % 255) / 255.0; - float green = static_cast(rand() % ((int) red*255)) / 255.0; + float red = systemRandom.randf(1.0); + float green = systemRandom.randf(1.0); + //float red = 0.7; + //float green = 0.9; + (void) red; + (void) green; sector->add_object(new Particles(pos, 0, 360, Vector(140, 140), - Vector(0, 0), 45, Color(red, green, 0), 3, 1.3, + Vector(0, 0), 45, Color(red, green, 0), 3, 1.3f, LAYER_FOREGROUND1+1)); sound_manager->play("sounds/fireworks.wav"); - timer.start(((float) rand() / RAND_MAX) + .5); + timer.start(systemRandom.randf(1.0, 1.5)); } }