annotate src/xs_title.c @ 540:3e4901a89f3d

Audacious kludging.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Feb 2007 03:39:00 +0000
parents 9d5e04cd0c97
children e795d8e73ebc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS)
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 Titlestring handling
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
324
dd201740a720 Changed copyright text.
Matti Hamalainen <ccr@tnsp.org>
parents: 233
diff changeset
6 Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org>
422
d2e6682d3ef8 Copyright year update
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
7 (C) Copyright 1999-2007 Tecnic Software productions (TNSP)
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 This program is free software; you can redistribute it and/or modify
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 it under the terms of the GNU General Public License as published by
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 the Free Software Foundation; either version 2 of the License, or
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 (at your option) any later version.
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 This program is distributed in the hope that it will be useful,
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 GNU General Public License for more details.
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
412
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
19 You should have received a copy of the GNU General Public License along
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
20 with this program; if not, write to the Free Software Foundation, Inc.,
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
21 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 */
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 #include "xs_title.h"
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 #include "xs_support.h"
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 #include "xs_config.h"
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
26 #ifdef AUDACIOUS_PLUGIN
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
27 #include <audacious/titlestring.h>
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
28 #else
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29 #include <xmms/titlestring.h>
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
30 #endif
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
31
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
32
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
33 static void xs_path_split(gchar *path, gchar **tmpFilename, gchar **tmpFilePath, gchar **tmpFileExt)
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
34 {
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
35 gchar *tmpStr;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
36
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
37 /* Split the filename into path */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
38 *tmpFilePath = g_strdup(path);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
39 tmpStr = xs_strrchr(*tmpFilePath, '/');
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
40 if (tmpStr) tmpStr[1] = 0;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
41
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
42 /* Filename */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
43 *tmpFilename = xs_strrchr(path, '/');
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
44 if (*tmpFilename)
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
45 *tmpFilename = g_strdup(*tmpFilename + 1);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
46 else
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
47 *tmpFilename = g_strdup(path);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
48
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
49 tmpStr = xs_strrchr(*tmpFilename, '.');
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
50 tmpStr[0] = 0;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
51
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
52 /* Extension */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
53 *tmpFileExt = xs_strrchr(path, '.');
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
54 }
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
55
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
56
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
57 #if defined(HAVE_XMMSEXTRA) || defined(AUDACIOUS_PLUGIN)
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
58 /* Tuple support
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
59 */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
60 static TitleInput * xs_get_titletuple(gchar *tmpFilename, gchar *tmpFilePath,
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
61 gchar *tmpFileExt, t_xs_tuneinfo *p, gint subTune)
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
62 {
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
63 TitleInput *pResult;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
64
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
65 #ifdef AUDACIOUS_PLUGIN
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
66 pResult = bmp_title_input_new();
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
67 #else
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
68 pResult = (TitleInput *) g_malloc0(sizeof(TitleInput));
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
69 pResult->__size = XMMS_TITLEINPUT_SIZE;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
70 pResult->__version = XMMS_TITLEINPUT_VERSION;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
71 #endif
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
72
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
73 /* Create the input fields */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
74 pResult->file_name = tmpFilename;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
75 pResult->file_ext = tmpFileExt;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
76 pResult->file_path = tmpFilePath;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
77
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
78 pResult->track_name = p->sidName;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
79 pResult->track_number = subTune;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
80 pResult->album_name = NULL;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
81 pResult->performer = p->sidComposer;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
82 pResult->date = (p->sidModel == XS_SIDMODEL_6581) ? "SID6581" : "SID8580";
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
83
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
84 pResult->year = 0;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
85 pResult->genre = "SID-tune";
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
86 pResult->comment = p->sidCopyright;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
87
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
88 return pResult;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
89 }
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
90
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
91 #ifdef AUDACIOUS_PLUGIN
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
92 TitleInput * xs_make_titletuple(t_xs_tuneinfo *p, gint subTune)
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
93 {
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
94 TitleInput *pResult;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
95 gchar *tmpFilename, *tmpFilePath, *tmpFileExt;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
96
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
97 xs_path_split(p->sidFilename, &tmpFilename,
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
98 &tmpFilePath, &tmpFileExt);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
99
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
100 pResult = xs_get_titletuple(tmpFilename, tmpFilePath,
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
101 tmpFileExt, p, subTune);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
102
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
103 g_free(tmpFilename);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
104 g_free(tmpFilePath);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
105
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
106 return pResult;
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
107 }
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
108 #endif
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
109 #endif
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
110
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112 /*
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113 * Create a title string based on given information and settings.
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
114 */
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
115 #define VPUTCH(MCH) \
392
b09d74eb71e6 Working on getting STIL and SLDB using completely dynamically allocated
Matti Hamalainen <ccr@tnsp.org>
parents: 377
diff changeset
116 if (iIndex < XS_BUF_SIZE) tmpBuf[iIndex++] = MCH;
b09d74eb71e6 Working on getting STIL and SLDB using completely dynamically allocated
Matti Hamalainen <ccr@tnsp.org>
parents: 377
diff changeset
117
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 #define VPUTSTR(MSTR) { \
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 if (MSTR) { \
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
120 if ((iIndex + strlen(MSTR) + 1) < XS_BUF_SIZE) { \
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 strcpy(&tmpBuf[iIndex], MSTR); \
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122 iIndex += strlen(MSTR); \
392
b09d74eb71e6 Working on getting STIL and SLDB using completely dynamically allocated
Matti Hamalainen <ccr@tnsp.org>
parents: 377
diff changeset
123 } else \
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
124 iIndex = XS_BUF_SIZE; \
392
b09d74eb71e6 Working on getting STIL and SLDB using completely dynamically allocated
Matti Hamalainen <ccr@tnsp.org>
parents: 377
diff changeset
125 } \
b09d74eb71e6 Working on getting STIL and SLDB using completely dynamically allocated
Matti Hamalainen <ccr@tnsp.org>
parents: 377
diff changeset
126 }
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
129 gchar *xs_make_titlestring(t_xs_tuneinfo *p, gint subTune)
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130 {
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
131 gchar *tmpFilename, *tmpFilePath, *tmpFileExt,
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
132 *pcStr, *pcResult, tmpStr[XS_BUF_SIZE], tmpBuf[XS_BUF_SIZE];
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
133 t_xs_subtuneinfo *subInfo;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
134 gint iIndex;
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
136 /* Get filename parts */
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
137 xs_path_split(p->sidFilename, &tmpFilename,
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
138 &tmpFilePath, &tmpFileExt);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
139
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
140 /* Get sub-tune information */
472
3f02945a0c48 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 422
diff changeset
141 if ((subTune > 0) && (subTune <= p->nsubTunes)) {
3f02945a0c48 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 422
diff changeset
142 subInfo = &(p->subTunes[subTune - 1]);
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
143 } else
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
144 subInfo = NULL;
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
146
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
147 /* Check if the titles are overridden or not */
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
148 #if defined(HAVE_XMMSEXTRA) || defined(AUDACIOUS_PLUGIN)
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
149 if (!xs_cfg.titleOverride) {
540
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
150 TitleInput *pTuple = xs_get_titletuple(
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
151 tmpFilename, tmpFilePath, tmpFileExt, p, subTune);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
152
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
153 pcResult = xmms_get_titlestring(xmms_get_gentitle_format(), pTuple);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
154 g_free(pTuple);
3e4901a89f3d Audacious kludging.
Matti Hamalainen <ccr@tnsp.org>
parents: 498
diff changeset
155 } else
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 #endif
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 {
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
158 /* Create the string */
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
159 pcStr = xs_cfg.titleFormat;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
160 iIndex = 0;
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
161 while (*pcStr && (iIndex < XS_BUF_SIZE)) {
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
162 if (*pcStr == '%') {
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
163 pcStr++;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
164 switch (*pcStr) {
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
165 case '%':
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
166 VPUTCH('%');
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
167 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
168 case 'f':
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
169 VPUTSTR(tmpFilename);
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
170 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
171 case 'F':
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
172 VPUTSTR(tmpFilePath);
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
173 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
174 case 'e':
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
175 VPUTSTR(tmpFileExt);
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
176 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
177 case 'p':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
178 VPUTSTR(p->sidComposer);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
179 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
180 case 't':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
181 VPUTSTR(p->sidName);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
182 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
183 case 'c':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
184 VPUTSTR(p->sidCopyright);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
185 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
186 case 's':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
187 VPUTSTR(p->sidFormat);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
188 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
189 case 'm':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
190 switch (p->sidModel) {
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
191 case XS_SIDMODEL_6581:
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
192 VPUTSTR("6581");
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
193 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
194 case XS_SIDMODEL_8580:
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
195 VPUTSTR("8580");
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
196 break;
479
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
197 case XS_SIDMODEL_ANY:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
198 VPUTSTR("ANY");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
199 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
200 default:
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
201 VPUTSTR("?");
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
202 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
203 }
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
204 break;
479
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
205 case 'C':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
206 if (subInfo && (subInfo->tuneSpeed > 0)) {
479
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
207 switch (subInfo->tuneSpeed) {
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
208 case XS_CLOCK_PAL:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
209 VPUTSTR("PAL");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
210 break;
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
211 case XS_CLOCK_NTSC:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
212 VPUTSTR("NTSC");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
213 break;
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
214 case XS_CLOCK_ANY:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
215 VPUTSTR("ANY");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
216 break;
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
217 case XS_CLOCK_VBI:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
218 VPUTSTR("VBI");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
219 break;
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
220 case XS_CLOCK_CIA:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
221 VPUTSTR("CIA");
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
222 break;
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
223 default:
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
224 g_snprintf(tmpStr, XS_BUF_SIZE,
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
225 "%iHz", subInfo->tuneSpeed);
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
226 VPUTSTR(tmpStr);
99f05a74de5b Improvements in titlestring handling and information passing in
Matti Hamalainen <ccr@tnsp.org>
parents: 472
diff changeset
227 }
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
228 } else
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
229 VPUTSTR("?");
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
230 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
231 case 'n':
472
3f02945a0c48 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 422
diff changeset
232 g_snprintf(tmpStr, XS_BUF_SIZE, "%i", subTune);
372
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
233 VPUTSTR(tmpStr);
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
234 break;
1222cff759c6 Titlestring tag %N for number of subtunes; Removed "SID" from SID model
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
235 case 'N':
402
f997b79a7251 More work on merging of improved STIL/SLDB handling code with completely
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
236 g_snprintf(tmpStr, XS_BUF_SIZE, "%i", p->nsubTunes);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
237 VPUTSTR(tmpStr);
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
238 break;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
239 }
498
9d5e04cd0c97 Remove useless block.
Matti Hamalainen <ccr@tnsp.org>
parents: 482
diff changeset
240 } else
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
241 VPUTCH(*pcStr);
498
9d5e04cd0c97 Remove useless block.
Matti Hamalainen <ccr@tnsp.org>
parents: 482
diff changeset
242
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
243 pcStr++;
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
244 }
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
245
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
246 tmpBuf[iIndex] = 0;
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
247
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
248 /* Make resulting string */
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
249 pcResult = g_strdup(tmpBuf);
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
250 }
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
251
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
252 /* Free temporary strings */
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
253 g_free(tmpFilename);
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
254 g_free(tmpFilePath);
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
255
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
256 return pcResult;
217
c1a5b5cf2f28 Titlestring handling
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
257 }