2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* timer.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2016-01-01 14:50:53 +01:00
|
|
|
/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "timer.h"
|
|
|
|
|
|
|
|
|
|
|
|
void Timer::_notification(int p_what) {
|
|
|
|
|
|
|
|
switch(p_what) {
|
|
|
|
|
|
|
|
|
|
|
|
case NOTIFICATION_READY: {
|
|
|
|
|
2014-10-12 07:13:22 +02:00
|
|
|
if (autostart) {
|
2014-10-14 06:01:25 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
2014-11-06 01:20:42 +01:00
|
|
|
if (get_tree()->is_editor_hint() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root()==this || get_tree()->get_edited_scene_root()->is_a_parent_of(this)))
|
2014-10-12 07:13:22 +02:00
|
|
|
break;
|
2014-12-07 06:04:20 +01:00
|
|
|
#endif
|
|
|
|
start();
|
2016-02-03 03:26:20 +01:00
|
|
|
autostart=false;
|
2014-10-12 07:13:22 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case NOTIFICATION_PROCESS: {
|
2015-05-10 16:00:26 +02:00
|
|
|
if (timer_process_mode == TIMER_PROCESS_FIXED || !is_processing())
|
2015-05-01 16:44:02 +02:00
|
|
|
return;
|
2014-02-10 02:10:30 +01:00
|
|
|
time_left -= get_process_delta_time();
|
|
|
|
|
|
|
|
if (time_left<0) {
|
|
|
|
if (!one_shot)
|
2015-05-10 16:00:26 +02:00
|
|
|
//time_left=wait_time+time_left;
|
|
|
|
time_left = wait_time;
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
|
|
|
stop();
|
|
|
|
|
|
|
|
emit_signal("timeout");
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
2015-05-10 16:00:26 +02:00
|
|
|
case NOTIFICATION_FIXED_PROCESS: {
|
|
|
|
if (timer_process_mode == TIMER_PROCESS_IDLE || !is_fixed_processing())
|
|
|
|
return;
|
|
|
|
time_left -= get_fixed_process_delta_time();
|
|
|
|
|
|
|
|
if (time_left<0) {
|
|
|
|
if (!one_shot)
|
|
|
|
//time_left = wait_time + time_left;
|
|
|
|
time_left = wait_time;
|
|
|
|
else
|
|
|
|
stop();
|
|
|
|
emit_signal("timeout");
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Timer::set_wait_time(float p_time) {
|
|
|
|
ERR_EXPLAIN("time should be greater than zero.");
|
|
|
|
ERR_FAIL_COND(p_time<=0);
|
|
|
|
wait_time=p_time;
|
|
|
|
|
|
|
|
}
|
|
|
|
float Timer::get_wait_time() const {
|
|
|
|
|
|
|
|
return wait_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::set_one_shot(bool p_one_shot) {
|
|
|
|
|
|
|
|
one_shot=p_one_shot;
|
|
|
|
}
|
|
|
|
bool Timer::is_one_shot() const {
|
|
|
|
|
|
|
|
return one_shot;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::set_autostart(bool p_start) {
|
|
|
|
|
|
|
|
autostart=p_start;
|
|
|
|
}
|
|
|
|
bool Timer::has_autostart() const {
|
|
|
|
|
|
|
|
return autostart;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::start() {
|
|
|
|
time_left=wait_time;
|
2015-05-10 16:00:26 +02:00
|
|
|
_set_process(true);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::stop() {
|
|
|
|
time_left=-1;
|
2015-05-10 16:00:26 +02:00
|
|
|
_set_process(false);
|
2014-02-10 02:10:30 +01:00
|
|
|
autostart=false;
|
|
|
|
}
|
|
|
|
|
|
|
|
float Timer::get_time_left() const {
|
|
|
|
|
|
|
|
return time_left >0 ? time_left : 0;
|
|
|
|
}
|
|
|
|
|
2015-05-10 16:00:26 +02:00
|
|
|
void Timer::set_timer_process_mode(TimerProcessMode p_mode) {
|
|
|
|
|
|
|
|
if (timer_process_mode == p_mode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (timer_process_mode) {
|
|
|
|
case TIMER_PROCESS_FIXED:
|
|
|
|
if (is_fixed_processing()) {
|
|
|
|
set_fixed_process(false);
|
|
|
|
set_process(true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TIMER_PROCESS_IDLE:
|
|
|
|
if (is_processing()) {
|
|
|
|
set_process(false);
|
|
|
|
set_fixed_process(true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
timer_process_mode = p_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
Timer::TimerProcessMode Timer::get_timer_process_mode() const{
|
|
|
|
|
|
|
|
return timer_process_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Timer::_set_process(bool p_process, bool p_force)
|
|
|
|
{
|
|
|
|
switch (timer_process_mode) {
|
|
|
|
case TIMER_PROCESS_FIXED: set_fixed_process(p_process); break;
|
|
|
|
case TIMER_PROCESS_IDLE: set_process(p_process); break;
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void Timer::_bind_methods() {
|
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("set_wait_time","time_sec"),&Timer::set_wait_time);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_wait_time"),&Timer::get_wait_time);
|
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("set_one_shot","enable"),&Timer::set_one_shot);
|
|
|
|
ObjectTypeDB::bind_method(_MD("is_one_shot"),&Timer::is_one_shot);
|
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("set_autostart","enable"),&Timer::set_autostart);
|
|
|
|
ObjectTypeDB::bind_method(_MD("has_autostart"),&Timer::has_autostart);
|
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("start"),&Timer::start);
|
|
|
|
ObjectTypeDB::bind_method(_MD("stop"),&Timer::stop);
|
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_time_left"),&Timer::get_time_left);
|
|
|
|
|
2015-05-10 16:00:26 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_timer_process_mode", "mode"), &Timer::set_timer_process_mode);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_timer_process_mode"), &Timer::get_timer_process_mode);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ADD_SIGNAL( MethodInfo("timeout") );
|
|
|
|
|
2015-09-25 20:45:00 +02:00
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::INT, "process_mode", PROPERTY_HINT_ENUM, "Fixed,Idle"), _SCS("set_timer_process_mode"), _SCS("get_timer_process_mode") );
|
2014-02-10 02:10:30 +01:00
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::REAL, "wait_time", PROPERTY_HINT_EXP_RANGE, "0.01,4096,0.01" ), _SCS("set_wait_time"), _SCS("get_wait_time") );
|
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::BOOL, "one_shot" ), _SCS("set_one_shot"), _SCS("is_one_shot") );
|
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::BOOL, "autostart" ), _SCS("set_autostart"), _SCS("has_autostart") );
|
|
|
|
|
2015-09-25 20:45:00 +02:00
|
|
|
BIND_CONSTANT( TIMER_PROCESS_FIXED );
|
|
|
|
BIND_CONSTANT( TIMER_PROCESS_IDLE );
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Timer::Timer() {
|
2015-05-10 16:00:26 +02:00
|
|
|
timer_process_mode = TIMER_PROCESS_IDLE;
|
2014-02-10 02:10:30 +01:00
|
|
|
autostart=false;
|
|
|
|
wait_time=1;
|
|
|
|
one_shot=false;
|
|
|
|
time_left=-1;
|
|
|
|
}
|