Mercurial > mplayer.hg
annotate gui/ui/render.c @ 35541:ded4a8c2aa70
Cosmetic: Add some blank lines.
author | ib |
---|---|
date | Sun, 09 Dec 2012 13:19:42 +0000 |
parents | 68a63175f140 |
children | f2093dc82b5f |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
18 |
33123
9566100d88a1
Replace inttypes.h by stdint.h and remove inttypes.h where unneeded.
ib
parents:
32982
diff
changeset
|
19 #include <stdint.h> |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
20 #include <stdio.h> |
32963 | 21 #include <stdlib.h> |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
22 #include <string.h> |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
23 |
33556 | 24 #include "render.h" |
32952 | 25 #include "gui/interface.h" |
26365
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
25603
diff
changeset
|
26 #include "gui/skin/font.h" |
34175 | 27 #include "gui/util/string.h" |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
28 |
32963 | 29 #include "access_mpcontext.h" |
30 #include "libavutil/avstring.h" | |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
31 #include "mixer.h" |
32954 | 32 #include "osdep/timer.h" |
32963 | 33 #include "stream/stream.h" |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
34 |
33269 | 35 #define DLABEL_DELAY 2500 // in milliseconds |
36 | |
32963 | 37 static char *image_buffer; |
38 static int image_width; | |
32956 | 39 |
32975
0dc9d64cd64e
Make functions static that are only used inside the file.
ib
parents:
32973
diff
changeset
|
40 static char *Translate(char *str) |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
41 { |
32963 | 42 static char trbuf[512]; |
43 char tmp[512]; | |
32972 | 44 unsigned int i, c; |
32963 | 45 int t; |
35536 | 46 mixer_t *mixer = NULL; |
32963 | 47 |
32972 | 48 *trbuf = 0; |
32963 | 49 |
32972 | 50 for (c = 0, i = 0; i < strlen(str); i++) { |
32963 | 51 if (str[i] != '$') { |
32972 | 52 if (c + 1 < sizeof(trbuf)) { |
32973 | 53 trbuf[c++] = str[i]; |
54 trbuf[c] = 0; | |
32972 | 55 } |
32963 | 56 } else { |
57 switch (str[++i]) { | |
58 case 't': | |
33555 | 59 snprintf(tmp, sizeof(tmp), "%02d", guiInfo.Track); |
32963 | 60 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
61 break; | |
62 | |
63 case 'o': | |
64 TranslateFilename(0, tmp, sizeof(tmp)); | |
65 av_strlcat(trbuf, tmp, sizeof(trbuf)); | |
66 break; | |
67 | |
68 case 'f': | |
69 TranslateFilename(1, tmp, sizeof(tmp)); | |
70 av_strlcat(trbuf, tmp, sizeof(trbuf)); | |
71 break; | |
72 | |
73 case 'F': | |
74 TranslateFilename(2, tmp, sizeof(tmp)); | |
75 av_strlcat(trbuf, tmp, sizeof(trbuf)); | |
76 break; | |
77 | |
78 case '6': | |
33897 | 79 t = guiInfo.RunningTime; |
32963 | 80 goto calclengthhhmmss; |
81 | |
82 case '1': | |
33897 | 83 t = guiInfo.ElapsedTime; |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
84 calclengthhhmmss: |
32963 | 85 snprintf(tmp, sizeof(tmp), "%02d:%02d:%02d", t / 3600, t / 60 % 60, t % 60); |
86 av_strlcat(trbuf, tmp, sizeof(trbuf)); | |
87 break; | |
88 | |
89 case '7': | |
33897 | 90 t = guiInfo.RunningTime; |
32963 | 91 goto calclengthmmmmss; |
92 | |
93 case '2': | |
33897 | 94 t = guiInfo.ElapsedTime; |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
95 calclengthmmmmss: |
32963 | 96 snprintf(tmp, sizeof(tmp), "%04d:%02d", t / 60, t % 60); |
97 av_strlcat(trbuf, tmp, sizeof(trbuf)); | |
98 break; | |
99 | |
100 case '3': | |
33897 | 101 snprintf(tmp, sizeof(tmp), "%02d", guiInfo.ElapsedTime / 3600); |
32963 | 102 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
103 break; | |
104 | |
105 case '4': | |
33897 | 106 snprintf(tmp, sizeof(tmp), "%02d", (guiInfo.ElapsedTime / 60) % 60); |
32963 | 107 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
108 break; | |
109 | |
110 case '5': | |
33897 | 111 snprintf(tmp, sizeof(tmp), "%02d", guiInfo.ElapsedTime % 60); |
32963 | 112 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
113 break; | |
114 | |
115 case '8': | |
33897 | 116 snprintf(tmp, sizeof(tmp), "%01d:%02d:%02d", guiInfo.ElapsedTime / 3600, (guiInfo.ElapsedTime / 60) % 60, guiInfo.ElapsedTime % 60); |
32963 | 117 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
118 break; | |
119 | |
120 case 'v': | |
33555 | 121 snprintf(tmp, sizeof(tmp), "%3.2f%%", guiInfo.Volume); |
32963 | 122 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
123 break; | |
124 | |
125 case 'V': | |
33555 | 126 snprintf(tmp, sizeof(tmp), "%3.1f", guiInfo.Volume); |
32963 | 127 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
128 break; | |
129 | |
130 case 'b': | |
33555 | 131 snprintf(tmp, sizeof(tmp), "%3.2f%%", guiInfo.Balance); |
32963 | 132 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
133 break; | |
134 | |
135 case 'B': | |
33555 | 136 snprintf(tmp, sizeof(tmp), "%3.1f", guiInfo.Balance); |
32963 | 137 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
138 break; | |
139 | |
140 case 'x': | |
33901 | 141 snprintf(tmp, sizeof(tmp), "%d", guiInfo.VideoWidth); |
32963 | 142 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
143 break; | |
144 | |
145 case 'y': | |
33901 | 146 snprintf(tmp, sizeof(tmp), "%d", guiInfo.VideoHeight); |
32963 | 147 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
148 break; | |
149 | |
150 case 'C': | |
35462 | 151 snprintf(tmp, sizeof(tmp), "%s", guiInfo.CodecName ? guiInfo.CodecName : ""); |
32963 | 152 av_strlcat(trbuf, tmp, sizeof(trbuf)); |
153 break; | |
154 | |
155 case 's': | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33556
diff
changeset
|
156 if (guiInfo.Playing == GUI_STOP) |
32963 | 157 av_strlcat(trbuf, "s", sizeof(trbuf)); |
158 break; | |
159 | |
33616 | 160 case 'l': // legacy |
161 case 'p': | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33556
diff
changeset
|
162 if (guiInfo.Playing == GUI_PLAY) |
32963 | 163 av_strlcat(trbuf, "p", sizeof(trbuf)); |
164 break; | |
165 | |
166 case 'e': | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33556
diff
changeset
|
167 if (guiInfo.Playing == GUI_PAUSE) |
32963 | 168 av_strlcat(trbuf, "e", sizeof(trbuf)); |
169 break; | |
170 | |
171 case 'a': | |
172 | |
35536 | 173 if (guiInfo.mpcontext) |
35538 | 174 mixer = mpctx_get_mixer(guiInfo.mpcontext); |
32967 | 175 |
35536 | 176 if (mixer && mixer->muted) { |
32963 | 177 av_strlcat(trbuf, "n", sizeof(trbuf)); |
178 break; | |
179 } | |
180 | |
33646 | 181 switch (guiInfo.AudioChannels) { |
32963 | 182 case 0: |
183 av_strlcat(trbuf, "n", sizeof(trbuf)); | |
184 break; | |
185 | |
186 case 1: | |
187 av_strlcat(trbuf, "m", sizeof(trbuf)); | |
188 break; | |
189 | |
190 case 2: | |
191 av_strlcat(trbuf, "t", sizeof(trbuf)); | |
192 break; | |
193 } | |
194 | |
195 break; | |
196 | |
197 case 'T': | |
33555 | 198 switch (guiInfo.StreamType) { |
32963 | 199 case STREAMTYPE_FILE: |
200 av_strlcat(trbuf, "f", sizeof(trbuf)); | |
201 break; | |
202 | |
34077 | 203 case STREAMTYPE_STREAM: |
204 av_strlcat(trbuf, "u", sizeof(trbuf)); | |
205 break; | |
206 | |
34387 | 207 case STREAMTYPE_CDDA: |
208 av_strlcat(trbuf, "a", sizeof(trbuf)); | |
209 break; | |
210 | |
32963 | 211 case STREAMTYPE_VCD: |
212 av_strlcat(trbuf, "v", sizeof(trbuf)); | |
213 break; | |
214 | |
215 case STREAMTYPE_DVD: | |
216 av_strlcat(trbuf, "d", sizeof(trbuf)); | |
217 break; | |
218 | |
219 default: | |
220 av_strlcat(trbuf, " ", sizeof(trbuf)); | |
221 break; | |
222 } | |
223 break; | |
224 | |
225 case '$': | |
226 av_strlcat(trbuf, "$", sizeof(trbuf)); | |
227 break; | |
228 | |
229 default: | |
230 continue; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
231 } |
32963 | 232 |
233 c = strlen(trbuf); | |
234 } | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
235 } |
32963 | 236 |
237 return trbuf; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
238 } |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
239 |
33555 | 240 static void PutImage(guiImage *bf, int x, int y, int max, int ofs) |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
241 { |
32963 | 242 int i = 0, ix, iy; |
243 uint32_t *buf = NULL; | |
244 uint32_t *drw = NULL; | |
245 register uint32_t tmp; | |
246 | |
247 /* register uint32_t yc; */ | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
248 |
32963 | 249 if (!bf || (bf->Image == NULL)) |
250 return; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
251 |
32963 | 252 i = bf->Width * (bf->Height / max) * ofs; |
253 buf = (uint32_t *)image_buffer; | |
254 drw = (uint32_t *)bf->Image; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
255 |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
256 #if 1 |
32963 | 257 for (iy = y; iy < (int)(y + bf->Height / max); iy++) |
258 for (ix = x; ix < (int)(x + bf->Width); ix++) { | |
259 tmp = drw[i++]; | |
260 | |
33534 | 261 if (!IS_TRANSPARENT(tmp)) |
32963 | 262 buf[iy * image_width + ix] = tmp; |
263 } | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
264 #else |
32963 | 265 yc = y * image_width; |
266 | |
267 for (iy = y; iy < (int)(y + bf->Height / max); iy++) { | |
268 for (ix = x; ix < (int)(x + bf->Width); ix++) { | |
269 tmp = drw[i++]; | |
270 | |
33534 | 271 if (!IS_TRANSPARENT(tmp)) |
32963 | 272 buf[yc + ix] = tmp; |
273 } | |
274 | |
275 yc += image_width; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
276 } |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
277 #endif |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
278 } |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
279 |
33555 | 280 static void SimplePotmeterPutImage(guiImage *bf, int x, int y, float frac) |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
281 { |
32963 | 282 int i = 0, w, r, ix, iy; |
283 uint32_t *buf = NULL; | |
284 uint32_t *drw = NULL; | |
285 register uint32_t tmp; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
286 |
32963 | 287 if (!bf || (bf->Image == NULL)) |
288 return; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
289 |
32963 | 290 buf = (uint32_t *)image_buffer; |
291 drw = (uint32_t *)bf->Image; | |
292 w = bf->Width * frac; | |
293 r = bf->Width - w; | |
294 | |
295 for (iy = y; iy < (int)(y + bf->Height); iy++) { | |
296 for (ix = x; ix < (int)(x + w); ix++) { | |
297 tmp = drw[i++]; | |
298 | |
33534 | 299 if (!IS_TRANSPARENT(tmp)) |
32963 | 300 buf[iy * image_width + ix] = tmp; |
301 } | |
302 | |
303 i += r; | |
304 } | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
305 } |
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
306 |
33548 | 307 void RenderAll(wsTWindow *window, wItem *Items, int nrItems, char *db) |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
308 { |
32963 | 309 wItem *item; |
33555 | 310 guiImage *image = NULL; |
32963 | 311 int i, ofs; |
312 | |
313 image_buffer = db; | |
314 image_width = window->Width; | |
315 | |
316 for (i = 0; i < nrItems + 1; i++) { | |
317 item = &Items[i]; | |
32966
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
318 |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
319 switch (item->pressed) { |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
320 case btnPressed: |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
321 ofs = 0; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
322 break; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
323 |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
324 case btnReleased: |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
325 ofs = 1; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
326 break; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
327 |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
328 default: |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
329 ofs = 2; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
330 break; |
1f51f39916e1
Replace ternary operator by more intelligible switch statement.
ib
parents:
32965
diff
changeset
|
331 } |
32963 | 332 |
333 switch (item->type) { | |
334 case itButton: | |
35541 | 335 |
32963 | 336 PutImage(&item->Bitmap, item->x, item->y, 3, ofs); |
337 break; | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
338 |
32963 | 339 case itPotmeter: |
35541 | 340 |
32963 | 341 if (item->numphases == 1) |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
342 SimplePotmeterPutImage(&item->Bitmap, item->x, item->y, item->value / 100.0); |
32963 | 343 else |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
344 PutImage(&item->Bitmap, item->x, item->y, item->numphases, (item->numphases - 1) * (item->value / 100.0)); |
35541 | 345 |
32963 | 346 break; |
347 | |
348 case itHPotmeter: | |
35541 | 349 |
32963 | 350 if (item->numphases == 1) |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
351 SimplePotmeterPutImage(&item->Bitmap, item->x, item->y, item->value / 100.0); |
32963 | 352 else |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
353 PutImage(&item->Bitmap, item->x, item->y, item->numphases, (item->numphases - 1) * (item->value / 100.0)); |
35541 | 354 |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
355 PutImage(&item->Mask, item->x + (item->width - item->pwidth) * (item->value / 100.0), item->y, 3, ofs); |
32963 | 356 break; |
357 | |
358 case itVPotmeter: | |
35541 | 359 |
32970
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
360 PutImage(&item->Bitmap, item->x, item->y, item->numphases, item->numphases * (1.0 - item->value / 100.0)); |
3673c28ce811
Use double constants for higher precision calculations.
ib
parents:
32969
diff
changeset
|
361 PutImage(&item->Mask, item->x, item->y + (item->height - item->pheight) * (1.0 - item->value / 100.0), 3, ofs); |
32963 | 362 break; |
363 | |
364 case itSLabel: | |
35541 | 365 |
32969 | 366 if (item->width == -1) |
367 item->width = fntTextWidth(item->fontid, item->label); | |
35541 | 368 |
33971 | 369 image = fntTextRender(item, 0, item->label); |
35541 | 370 |
32963 | 371 if (image) |
372 PutImage(image, item->x, item->y, 1, 0); | |
35541 | 373 |
32969 | 374 break; |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
375 |
32963 | 376 case itDLabel: |
377 { | |
378 int x; | |
379 unsigned int d; | |
380 char *t = Translate(item->label); | |
381 | |
382 if (!item->text || (strcmp(item->text, t) != 0)) { | |
383 free(item->text); | |
384 item->text = strdup(t); | |
385 item->textwidth = fntTextWidth(item->fontid, t); | |
386 item->starttime = GetTimerMS(); | |
387 item->last_x = 0; | |
32761
3ceeb62a1125
Improve the readability of dynamic labels which scroll.
ib
parents:
32759
diff
changeset
|
388 } |
32963 | 389 |
390 d = GetTimerMS() - item->starttime; | |
391 | |
32964 | 392 if (d < DLABEL_DELAY) |
32963 | 393 x = item->last_x; // don't scroll yet |
394 else { | |
395 int l; | |
396 char c[2]; | |
397 | |
398 l = (item->textwidth ? item->textwidth : item->width); | |
35362 | 399 x = (l ? l - ((d - DLABEL_DELAY) / 20) % l - 1 : 0); |
32963 | 400 c[0] = *item->text; |
401 c[1] = '\0'; | |
402 | |
403 if (x < (fntTextWidth(item->fontid, c) + 1) >> 1) { | |
404 item->starttime = GetTimerMS(); // stop again | |
405 item->last_x = x; // at current x pos | |
406 } | |
32761
3ceeb62a1125
Improve the readability of dynamic labels which scroll.
ib
parents:
32759
diff
changeset
|
407 } |
32963 | 408 |
33971 | 409 image = fntTextRender(item, x, t); |
32963 | 410 } |
411 | |
412 if (image) | |
413 PutImage(image, item->x, item->y, 1, 0); | |
414 | |
415 break; | |
416 } | |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
417 } |
32963 | 418 |
33548 | 419 wsConvert(window, db); |
25603
01754b23193e
Rename common.[ch], there are too many files by that name.
diego
parents:
diff
changeset
|
420 } |