2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD 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, version 2.
|
|
|
|
* OpenTTD 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 OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file texteff.cpp Handling of text effects. */
|
2007-04-04 03:21:14 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2007-06-21 16:17:47 +00:00
|
|
|
#include "texteff.hpp"
|
2007-11-10 01:17:15 +00:00
|
|
|
#include "transparency.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2009-12-25 23:15:08 +00:00
|
|
|
#include "core/smallvec_type.hpp"
|
2008-01-09 09:57:48 +00:00
|
|
|
#include "viewport_func.h"
|
2008-01-13 14:37:30 +00:00
|
|
|
#include "settings_type.h"
|
2023-04-13 15:18:27 +00:00
|
|
|
#include "command_type.h"
|
|
|
|
#include "timer/timer.h"
|
|
|
|
#include "timer/timer_window.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2009-12-22 12:50:41 +00:00
|
|
|
/** Container for all information about a text effect */
|
2010-02-10 17:37:47 +00:00
|
|
|
struct TextEffect : public ViewportSign {
|
2009-12-22 12:50:41 +00:00
|
|
|
uint64 params_1; ///< DParam parameter
|
2013-02-17 14:50:54 +00:00
|
|
|
uint64 params_2; ///< second DParam parameter
|
2009-12-25 23:22:41 +00:00
|
|
|
StringID string_id; ///< String to draw for the text effect, if INVALID_STRING_ID then it's not valid
|
|
|
|
uint8 duration; ///< How long the text effect should stay, in ticks (applies only when mode == TE_RISING)
|
2009-12-22 12:50:41 +00:00
|
|
|
TextEffectMode mode; ///< Type of text effect
|
|
|
|
|
|
|
|
/** Reset the text effect */
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
this->MarkDirty();
|
|
|
|
this->width_normal = 0;
|
|
|
|
this->string_id = INVALID_STRING_ID;
|
|
|
|
}
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2019-03-03 17:30:09 +00:00
|
|
|
static std::vector<struct TextEffect> _text_effects; ///< Text effects are stored there
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2007-09-09 10:13:17 +00:00
|
|
|
/* Text Effects */
|
2009-12-25 23:22:41 +00:00
|
|
|
TextEffectID AddTextEffect(StringID msg, int center, int y, uint8 duration, TextEffectMode mode)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-06-21 16:17:47 +00:00
|
|
|
if (_game_mode == GM_MENU) return INVALID_TE_ID;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2009-12-25 23:15:08 +00:00
|
|
|
TextEffectID i;
|
2018-09-23 11:23:54 +00:00
|
|
|
for (i = 0; i < _text_effects.size(); i++) {
|
2009-12-25 23:15:08 +00:00
|
|
|
if (_text_effects[i].string_id == INVALID_STRING_ID) break;
|
2007-06-21 16:17:47 +00:00
|
|
|
}
|
2019-02-18 22:39:06 +00:00
|
|
|
if (i == _text_effects.size()) _text_effects.emplace_back();
|
2007-06-21 16:17:47 +00:00
|
|
|
|
2019-02-18 22:39:06 +00:00
|
|
|
TextEffect &te = _text_effects[i];
|
2007-06-21 16:17:47 +00:00
|
|
|
|
|
|
|
/* Start defining this object */
|
2019-02-18 22:39:06 +00:00
|
|
|
te.string_id = msg;
|
|
|
|
te.duration = duration;
|
|
|
|
te.params_1 = GetDParam(0);
|
|
|
|
te.params_2 = GetDParam(1);
|
|
|
|
te.mode = mode;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-12-22 12:50:41 +00:00
|
|
|
/* Make sure we only dirty the new area */
|
2019-02-18 22:39:06 +00:00
|
|
|
te.width_normal = 0;
|
|
|
|
te.UpdatePosition(center, y, msg);
|
2007-06-21 16:17:47 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateTextEffect(TextEffectID te_id, StringID msg)
|
|
|
|
{
|
|
|
|
/* Update details */
|
2018-09-25 20:01:56 +00:00
|
|
|
TextEffect *te = _text_effects.data() + te_id;
|
2012-03-25 19:23:59 +00:00
|
|
|
if (msg == te->string_id && GetDParam(0) == te->params_1) return;
|
2007-06-21 16:17:47 +00:00
|
|
|
te->string_id = msg;
|
|
|
|
te->params_1 = GetDParam(0);
|
2013-02-17 14:50:54 +00:00
|
|
|
te->params_2 = GetDParam(1);
|
2007-06-21 16:17:47 +00:00
|
|
|
|
2021-05-02 09:43:14 +00:00
|
|
|
te->UpdatePosition(te->center, te->top, te->string_id, te->string_id - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateAllTextEffectVirtCoords()
|
|
|
|
{
|
|
|
|
for (auto &te : _text_effects) {
|
2021-05-03 14:12:47 +00:00
|
|
|
if (te.string_id == INVALID_STRING_ID) continue;
|
2021-05-02 09:43:14 +00:00
|
|
|
SetDParam(0, te.params_1);
|
|
|
|
SetDParam(1, te.params_2);
|
|
|
|
te.UpdatePosition(te.center, te.top, te.string_id, te.string_id - 1);
|
|
|
|
}
|
2007-06-21 16:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveTextEffect(TextEffectID te_id)
|
|
|
|
{
|
2009-12-25 23:15:08 +00:00
|
|
|
_text_effects[te_id].Reset();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-13 15:18:27 +00:00
|
|
|
/** Slowly move text effects upwards. */
|
|
|
|
IntervalTimer<TimerWindow> move_all_text_effects_interval = {std::chrono::milliseconds(30), [](uint count) {
|
|
|
|
if (_pause_mode && _game_mode != GM_EDITOR && _settings_game.construction.command_pause_level <= CMDPL_NO_CONSTRUCTION) return;
|
2018-05-11 16:52:06 +00:00
|
|
|
|
2019-02-17 11:20:52 +00:00
|
|
|
for (TextEffect &te : _text_effects) {
|
|
|
|
if (te.string_id == INVALID_STRING_ID) continue;
|
|
|
|
if (te.mode != TE_RISING) continue;
|
2009-12-25 23:22:41 +00:00
|
|
|
|
2019-02-17 11:20:52 +00:00
|
|
|
if (te.duration < count) {
|
|
|
|
te.Reset();
|
2009-12-25 23:22:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-02-17 11:20:52 +00:00
|
|
|
te.MarkDirty(ZOOM_LVL_OUT_8X);
|
|
|
|
te.duration -= count;
|
|
|
|
te.top -= count * ZOOM_LVL_BASE;
|
|
|
|
te.MarkDirty(ZOOM_LVL_OUT_8X);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2023-04-13 15:18:27 +00:00
|
|
|
}};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void InitTextEffects()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2018-09-23 16:16:49 +00:00
|
|
|
_text_effects.clear();
|
|
|
|
_text_effects.shrink_to_fit();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTextEffects(DrawPixelInfo *dpi)
|
|
|
|
{
|
2009-12-22 12:50:41 +00:00
|
|
|
/* Don't draw the text effects when zoomed out a lot */
|
2011-11-24 12:38:48 +00:00
|
|
|
if (dpi->zoom > ZOOM_LVL_OUT_8X) return;
|
2009-12-22 12:50:41 +00:00
|
|
|
|
2019-02-17 11:20:52 +00:00
|
|
|
for (TextEffect &te : _text_effects) {
|
|
|
|
if (te.string_id == INVALID_STRING_ID) continue;
|
|
|
|
if (te.mode == TE_RISING || (_settings_client.gui.loading_indicators && !IsTransparencySet(TO_LOADING))) {
|
|
|
|
ViewportAddString(dpi, ZOOM_LVL_OUT_8X, &te, te.string_id, te.string_id - 1, STR_NULL, te.params_1, te.params_2);
|
2009-12-22 12:50:41 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|