forked from teamhimeh/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimticker.cc
175 lines (146 loc) · 3.72 KB
/
simticker.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic license.
* (see license.txt)
*/
#include <string.h>
#include "dataobj/koord.h"
#include "simdebug.h"
#include "simticker.h"
#include "display/simgraph.h"
#include "simcolor.h"
#include "tpl/slist_tpl.h"
#include "utils/simstring.h"
#include "gui/gui_frame.h"
// how much scrolling per call?
#define X_DIST 2
struct node {
char msg[256];
koord pos;
PLAYER_COLOR_VAL color;
sint16 xpos;
sint32 w;
};
static slist_tpl<node> list;
static koord default_pos = koord::invalid;
static bool redraw_all; // true, if also trigger background need redraw
static int next_pos;
bool ticker::empty()
{
return list.empty();
}
void ticker::clear_ticker()
{
if (!list.empty()) {
const int height = display_get_height();
const int width = display_get_width();
mark_rect_dirty_wc(0, height-TICKER_YPOS_BOTTOM, width, height);
}
list.clear();
}
void ticker::set_redraw_all(const bool b)
{
redraw_all=b;
}
void ticker::add_msg(const char* txt, koord pos, int color)
{
// don't store more than 4 messages, it's useless.
const int count = list.get_count();
if(count==0) {
redraw_all = true;
next_pos = display_get_width();
default_pos = koord::invalid;
}
if(count < 4) {
// Don't repeat messages
if (count == 0 || !strstart(list.back().msg, txt)) {
node n;
int i=0;
// remove breaks
for( int j=0; i<250 && txt[j]!=0; j++ ) {
if( txt[j]=='\n' ) {
if( i==0 || n.msg[i-1]==' ' ) {
continue;
}
n.msg[i++] = ' ';
}
else {
if( txt[j]==' ' && (i==0 || n.msg[i-1]==' ') ) {
// avoid double or leading spaces
continue;
}
n.msg[i++] = txt[j];
}
}
n.msg[i++] = 0;
n.pos = pos;
n.color = color;
n.xpos = next_pos;
n.w = proportional_string_width(n.msg);
next_pos += n.w + 18;
list.append(n);
}
}
}
koord ticker::get_welt_pos()
{
return default_pos;
}
void ticker::draw()
{
if (!list.empty()) {
const int start_y=display_get_height()-TICKER_YPOS_BOTTOM;
const int width = display_get_width();
// redraw whole ticker
if(redraw_all) {
redraw_ticker();
}
// redraw ticker partially
else {
display_scroll_band( start_y+1, X_DIST, TICKER_HEIGHT-1 );
display_fillbox_wh(width-X_DIST, start_y+1, X_DIST, TICKER_HEIGHT-1, SYSCOL_TICKER_BACKGROUND, true);
// ok, ready for the text
PUSH_CLIP( 0, start_y + 1, width - 1, TICKER_HEIGHT-1 );
FOR(slist_tpl<node>, & n, list) {
n.xpos -= X_DIST;
if (n.xpos < width) {
display_proportional_clip(n.xpos, start_y + 2, n.msg, ALIGN_LEFT, n.color, true);
default_pos = n.pos;
}
}
POP_CLIP();
}
// remove old news
while (!list.empty() && list.front().xpos + list.front().w < 0) {
list.remove_first();
}
if (list.empty()) {
// old: mark_rect_dirty_wc(0, start_y, width, start_y + TICKER_HEIGHT);
// now everything at the bottom to clear also tooltips and compass
mark_rect_dirty_wc(0, start_y-128, width, start_y + 128 +TICKER_HEIGHT);
}
if(next_pos>width) {
next_pos -= X_DIST;
}
redraw_all = false;
}
}
// complete redraw (after resizing)
void ticker::redraw_ticker()
{
if (!list.empty()) {
const int start_y=display_get_height()-TICKER_YPOS_BOTTOM;
const int width = display_get_width();
// just draw the ticker grey ... (to be sure ... )
display_fillbox_wh(0, start_y, width, 1, SYSCOL_TICKER_DIVIDER, true);
display_fillbox_wh(0, start_y+1, width, TICKER_HEIGHT-1, SYSCOL_TICKER_BACKGROUND, true);
FOR(slist_tpl<node>, & n, list) {
n.xpos -= X_DIST;
if (n.xpos < width) {
display_proportional_clip(n.xpos, start_y + 2, n.msg, ALIGN_LEFT, n.color, true);
default_pos = n.pos;
}
}
}
}