Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/tools/Timer.cc @ 1001

Last change on this file since 1001 was 995, checked in by landauf, 16 years ago

added 'delay time command' console command that executes 'command' after 'time' seconds. it uses a automatically destroying timer for every execution, so you can start several delayed commands at the same time without overwriting older entries.

and this is great:

append disco.txt delay 0.0 Ambient setAmbientLightTest 1,0,0,1
append disco.txt delay 0.2 Ambient setAmbientLightTest 0,1,0,1
append disco.txt delay 0.4 Ambient setAmbientLightTest 0,0,1,1
append disco.txt delay 0.6 exec disco.txt

exec disco.txt

and you'll have disco in space… forever! :D

File size: 2.1 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Fabian 'x3n' Landau
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28#include "core/Executor.h"
29#include "core/CoreIncludes.h"
30#include "core/ConsoleCommand.h"
31#include "core/CommandExecutor.h"
32#include "Timer.h"
33
34namespace orxonox
35{
36    ConsoleCommandShortcutExtern(delay, AccessLevel::None);
37
38    void delay(float delay, const std::string& command)
39    {
40        StaticTimer *delaytimer = new StaticTimer();
41        ExecutorStatic* delayexecutor = createExecutor(createFunctor(&executeDelayedCommand));
42        delayexecutor->setDefaultValues(delaytimer, command);
43        delaytimer->setTimer(delay, false, delayexecutor);
44    }
45
46    void executeDelayedCommand(StaticTimer* timer, const std::string& command)
47    {
48        CommandExecutor::execute(command);
49        delete timer;
50    }
51
52    /**
53        @brief Constructor: Sets the default-values.
54    */
55    TimerBase::TimerBase()
56    {
57        RegisterRootObject(TimerBase);
58
59        this->executor_ = 0;
60        this->interval_ = 0;
61        this->bLoop_ = false;
62        this->bActive_ = false;
63
64        this->time_ = 0;
65    }
66
67    TimerBase::~TimerBase()
68    {
69        delete this->executor_;
70    }
71
72    void TimerBase::run() const
73    {
74        (*this->executor_)();
75    }
76}
Note: See TracBrowser for help on using the repository browser.