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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
/*
* $Id: screen_lyrics.c 3355 2006-09-1 17:44:04Z tradiaz $
*
* (c) 2006 by Kalle Wallin <kaw@linux.se>
* Tue Aug 1 23:17:38 2006
*
* This program 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; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <ncurses.h>
#include <expat.h>
#include <unistd.h>
#include <glib/gstdio.h>
#include <stdio.h>
#include "config.h"
#ifndef DISABLE_LYRICS_SCREEN
#include <sys/stat.h>
#include "ncmpc.h"
#include "options.h"
#include "mpdclient.h"
#include "command.h"
#include "screen.h"
#include "screen_utils.h"
#include "easy_download.h"
#include "strfsong.h"
#include "src_lyrics.h"
int src_selection;
static void lyrics_paint(screen_t *screen, mpdclient_t *c);
static FILE *create_lyr_file(char *artist, char *title)
{
char path[1024];
snprintf(path, 1024, "%s/.lyrics",
getenv("HOME"));
if(g_access(path, W_OK) != 0) if(mkdir(path, S_IRWXU) != 0) return NULL;
snprintf(path, 1024, "%s/.lyrics/%s",
getenv("HOME"), artist);
if(g_access(path, W_OK) != 0) if(mkdir(path, S_IRWXU) != 0) return NULL;
snprintf(path, 1024, "%s/.lyrics/%s/%s.lyric",
getenv("HOME"), artist, title);
return fopen(path, "w");
}
static int store_lyr_hd(void)
{
char artist[512];
char title[512];
static char path[1024];
FILE *lyr_file;
get_text_line(&lyr_text, 0, artist, 512);
get_text_line(&lyr_text, 1, title, 512);
artist[strlen(artist)-1] = '\0';
title[strlen(title)-1] = '\0';
snprintf(path, 1024, "%s/.lyrics/%s/%s.lyric",
getenv("HOME"), artist, title);
lyr_file = create_lyr_file(artist, title);
if (lyr_file == NULL)
return -1;
int i;
char line_buf[1024];
for (i = 3; i <= lyr_text.text->len; i++) {
if(get_text_line(&lyr_text, i, line_buf, 1024) == -1);
fputs(line_buf, lyr_file);
}
fclose(lyr_file);
return 0;
}
static void check_repaint(void)
{
if(screen_get_id("lyrics") == get_cur_mode_id())lyrics_paint(NULL, NULL);
}
static gpointer get_lyr(void *c)
{
mpd_Status *status = ((retrieval_spec*)c)->client->status;
mpd_Song *cur = ((retrieval_spec*)c)->client->song;
//mpdclient_update((mpdclient_t*)c);
if(!(IS_PAUSED(status->state)||IS_PLAYING(status->state))) {
formed_text_init(&lyr_text);
return NULL;
}
char artist[MAX_SONGNAME_LENGTH];
char title[MAX_SONGNAME_LENGTH];
lock=2;
result = 0;
formed_text_init(&lyr_text);
strfsong(artist, MAX_SONGNAME_LENGTH, "%artist%", cur);
strfsong(title, MAX_SONGNAME_LENGTH, "%title%", cur);
//write header..
formed_text_init(&lyr_text);
add_text_line(&lyr_text, artist, 0);
add_text_line(&lyr_text, title, 0);
add_text_line(&lyr_text, "", 0);
add_text_line(&lyr_text, "", 0);
if (((retrieval_spec*)c)->way != -1) /*till it'S of use*/ {
if(get_lyr_by_src (src_selection, artist, title) != 0) {
lock=0;
return NULL;
}
}
/*else{
if(get_lyr_hd(artist, title) != 0)
{
if(get_lyr_hd(artist, title) != 0) return NULL;
}
else result |= 1;
}*/
//return NULL;
lw->start = 0;
check_repaint();
lock = 1;
return &lyr_text;
}
static const char *
list_callback(int index, int *highlight, void *data)
{
static char buf[512];
//i think i'ts fine to write it into the 1st line...
if ((index == lyr_text.lines->len && lyr_text.lines->len > 4) ||
((lyr_text.lines->len == 0 || lyr_text.lines->len == 4) &&
index == 0)) {
*highlight=3;
src_lyr* selected = g_array_index(src_lyr_stack, src_lyr*, src_selection);
if (selected != NULL)
return selected->description;
return "";
}
if (index < 2 && lyr_text.lines->len > 4)
*highlight=3;
else if(index >= lyr_text.lines->len ||
(index < 4 && index != 0 && lyr_text.lines->len < 5)) {
return "";
}
get_text_line(&lyr_text, index, buf, 512);
return buf;
}
static void
lyrics_init(WINDOW *w, int cols, int rows)
{
lw = list_window_init(w, cols, rows);
lw->flags = LW_HIDE_CURSOR;
//lyr_text.lines = g_array_new(FALSE, TRUE, 4);
formed_text_init(&lyr_text);
if (!g_thread_supported())
g_thread_init(NULL);
}
static void
lyrics_resize(int cols, int rows)
{
lw->cols = cols;
lw->rows = rows;
}
static void
lyrics_exit(void)
{
list_window_free(lw);
}
static const char *
lyrics_title(char *str, size_t size)
{
static GString *msg;
if (msg == NULL)
msg = g_string_new ("");
else g_string_erase (msg, 0, -1);
g_string_append (msg, "Lyrics [");
if (src_selection > src_lyr_stack->len - 1)
g_string_append (msg, "No plugin available");
else {
src_lyr* selected = g_array_index (src_lyr_stack, src_lyr*, src_selection);
if (selected != NULL)
g_string_append (msg, selected->name);
else
g_string_append (msg, "NONE");
}
if(lyr_text.lines->len == 4) {
if(lock == 1) {
if(!(result & 1)) {
g_string_append (msg, " - ");
if(!(result & 2)) g_string_append (msg, _("No access"));
else if(!(result & 4)||!(result & 16)) g_string_append (msg, _("Not found"));
}
}
if(lock == 2) {
g_string_append (msg, " - ");
g_string_append (msg, _("retrieving"));
}
}
g_string_append_c (msg, ']');
return msg->str;
}
static void
lyrics_paint(screen_t *screen, mpdclient_t *c)
{
lw->clear = 1;
list_window_paint(lw, list_callback, NULL);
wrefresh(lw->w);
}
static void
lyrics_update(screen_t *screen, mpdclient_t *c)
{
if( lw->repaint ) {
list_window_paint(lw, list_callback, NULL);
wrefresh(lw->w);
lw->repaint = 0;
}
}
static int
lyrics_cmd(screen_t *screen, mpdclient_t *c, command_t cmd)
{
static retrieval_spec spec;
lw->repaint=1;
switch(cmd) {
case CMD_LIST_NEXT:
if( lw->start+lw->rows < lyr_text.lines->len+1 )
lw->start++;
return 1;
case CMD_LIST_PREVIOUS:
if( lw->start >0 )
lw->start--;
return 1;
case CMD_LIST_FIRST:
lw->start = 0;
return 1;
case CMD_LIST_LAST:
lw->start = lyrics_text_rows-lw->rows;
if( lw->start<0 )
lw->start = 0;
return 1;
case CMD_LIST_NEXT_PAGE:
lw->start = lw->start + lw->rows-1;
if( lw->start+lw->rows >= lyr_text.lines->len+1 )
lw->start = lyr_text.lines->len-lw->rows+1;
if( lw->start<0 )
lw->start = 0;
return 1;
case CMD_LIST_PREVIOUS_PAGE:
lw->start = lw->start - lw->rows;
if( lw->start<0 )
lw->start = 0;
return 1;
case CMD_SELECT:
spec.client = c;
spec.way = 0;
g_thread_create(get_lyr, &spec, FALSE, NULL);
return 1;
case CMD_INTERRUPT:
if(lock > 1) lock = 4;
return 1;
case CMD_ADD:
if(lock > 0 && lock != 4) {
if(store_lyr_hd() == 0)
screen_status_message (_("Lyrics saved!"));
}
return 1;
case CMD_LYRICS_UPDATE:
spec.client = c;
spec.way = 1;
g_thread_create(get_lyr, &spec, FALSE, NULL);
return 1;
case CMD_SEARCH_MODE:
//while (0==0) fprintf (stderr, "%i", src_lyr_stack->len);
if (src_selection == src_lyr_stack->len - 1)
src_selection = -1;
src_selection++;
return 1;
default:
break;
}
lw->selected = lw->start+lw->rows;
if (screen_find(screen,
lw, lyrics_text_rows,
cmd, list_callback, NULL)) {
/* center the row */
lw->start = lw->selected - (lw->rows / 2);
if (lw->start + lw->rows > lyrics_text_rows)
lw->start = lyrics_text_rows - lw->rows;
if (lw->start < 0)
lw->start = 0;
return 1;
}
return 0;
}
static list_window_t *
lyrics_lw(void)
{
return lw;
}
screen_functions_t *
get_screen_lyrics(void)
{
static screen_functions_t functions;
memset(&functions, 0, sizeof(screen_functions_t));
functions.init = lyrics_init;
functions.exit = lyrics_exit;
functions.open = NULL;
functions.close = NULL;
functions.resize = lyrics_resize;
functions.paint = lyrics_paint;
functions.update = lyrics_update;
functions.cmd = lyrics_cmd;
functions.get_lw = lyrics_lw;
functions.get_title = lyrics_title;
return &functions;
}
#endif /* ENABLE_LYRICS_SCREEN */
|