Home
last modified time | relevance | path

Searched refs:GetTimeExpired (Results 1 – 18 of 18) sorted by relevance

/dports/games/allacrost/allacrost-1.0.2/src/modes/battle/
H A Dbattle_indicators.cpp85 else if (_timer.GetTimeExpired() < INDICATOR_FADE_TIME) { in CalculateDrawAlpha()
86 …_alpha_color.SetAlpha(static_cast<float>(_timer.GetTimeExpired()) / static_cast<float>(INDICATOR_F… in CalculateDrawAlpha()
217 if (_timer.GetTimeExpired() <= INDICATOR_FADE_TIME) { in Draw()
222 else if (_timer.GetTimeExpired() <= (INDICATOR_FADE_TIME * 2)) { in Draw()
226 else if (_timer.GetTimeExpired() <= (INDICATOR_FADE_TIME * 3)) { in Draw()
227 _alpha_color.SetAlpha(static_cast<float>((INDICATOR_FADE_TIME * 3) - _timer.GetTimeExpired()) in Draw()
234 else if (_timer.GetTimeExpired() <= (INDICATOR_FADE_TIME * 4)) { in Draw()
H A Dbattle_actors.cpp381 uint32 dist = 120 * _animation_timer.GetTimeExpired() / _animation_timer.GetDuration(); in DrawSprite()
/dports/games/valyriatear/ValyriaTear-1.1.0/data/boot_menu/
H A Dboot.lua106 if (animation_timer:GetTimeExpired() > 1000
107 and animation_timer:GetTimeExpired() <= 4000) then
109 logo_alpha = (animation_timer:GetTimeExpired() - 1000) / (4000 - 1000);
111 elseif (animation_timer:GetTimeExpired() > 4000
112 and animation_timer:GetTimeExpired() <= 7000) then
114 bckgrnd_alpha = (animation_timer:GetTimeExpired() - 4000) / (7000 - 4000);
/dports/games/valyriatear/ValyriaTear-1.1.0/src/engine/
H A Dindicator_supervisor.cpp146 else if(_timer.GetTimeExpired() < INDICATOR_FADEIN_TIME) { in _ComputeDrawAlpha()
147 …_alpha_color.SetAlpha(static_cast<float>(_timer.GetTimeExpired()) / static_cast<float>(INDICATOR_F… in _ComputeDrawAlpha()
258 if(_timer.GetTimeExpired() <= INDICATOR_FADEIN_TIME) { in Draw()
262 else if(_timer.GetTimeExpired() <= INDICATOR_TIME / 4) { in Draw()
266 else if(_timer.GetTimeExpired() <= INDICATOR_TIME / 2) { in Draw()
267 _alpha_color.SetAlpha(static_cast<float>((INDICATOR_TIME / 2) - _timer.GetTimeExpired()) in Draw()
274 else if(_timer.GetTimeExpired() <= INDICATOR_TIME / 3 * 2) { in Draw()
H A Dindicator_supervisor.h95 return _timer.GetTimeExpired() > 0; in HasStarted()
H A Dsystem.h373 uint32_t GetTimeExpired() const { in GetTimeExpired() function
H A Dengine_bindings.cpp263 .def("GetTimeExpired", &SystemTimer::GetTimeExpired) in BindEngineCode()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/boot/
H A Dboot.cpp231 if (_boot_timer.GetTimeExpired() >= 4000.0 && in Update()
232 _boot_timer.GetTimeExpired() < 12000.0) { in Update()
237 else if (_boot_timer.GetTimeExpired() >= 12000.0 && in Update()
238 _boot_timer.GetTimeExpired() < 14000.0) { in Update()
/dports/games/allacrost/allacrost-1.0.2/src/engine/
H A Ddefs_engine.cpp144 .def("GetTimeExpired", &SystemTimer::GetTimeExpired) in BindEngineToLua()
H A Dsystem.h254 uint32 GetTimeExpired() const in GetTimeExpired() function
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/map/
H A Dmap_status_effects.cpp365 timer->GetDuration(), timer->GetTimeExpired()); in SaveActiveStatusEffects()
727 timer->GetDuration(), timer->GetTimeExpired()); in _SetActiveStatusEffects()
H A Dmap_mode.cpp1254 uint32_t time = _intro_timer.GetTimeExpired(); in _DrawGUI()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/battle/
H A Dbattle_sequence.cpp270 _sequence_timer.GetTimeExpired()); in _UpdateExitingSequence()
/dports/games/allacrost/allacrost-1.0.2/src/modes/shop/
H A Dshop_utils.cpp323 …float alpha = static_cast<float>(_transition_timer.GetTimeExpired()) / static_cast<float>(TRANSITI… in Draw()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/shop/
H A Dshop_utils.cpp384 …float alpha = static_cast<float>(_transition_timer.GetTimeExpired()) / static_cast<float>(TRANSITI… in Draw()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/battle/status_effects/
H A Dstatus_effects_supervisor.cpp61 timer->GetDuration(), timer->GetTimeExpired()); in SetActiveStatusEffects()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/battle/objects/
H A Dbattle_character.cpp288 120 * _state_timer.GetTimeExpired() / _state_timer.GetDuration() : in Update()
/dports/games/allacrost/allacrost-1.0.2/src/modes/map/
H A Dmap.cpp685 uint32 time = _intro_timer.GetTimeExpired(); in _DrawGUI()