d460135026002b7e79464d43bc23850862100f06
[omnplay] / src / omnplay.cpp
1 /*
2 * omnplay.c -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE
22 #endif
23
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkkeysyms.h>
33 #include <pthread.h>
34
35 #include "omnplay.h"
36 #include "ui.h"
37 #include "opts.h"
38 #include "timecode.h"
39
40 #include "omplrclnt.h"
41
42 int omnplay_get_content(omnplay_instance_t* app, playlist_item_t *items, int limit,
43 omnplay_get_content_cb_proc proc, void* data)
44 {
45 int r, c = 0;
46 OmPlrClipInfo clip_info;
47 char clip_name[omPlrMaxClipDirLen];
48
49 pthread_mutex_lock(&app->players.lock);
50
51 r = OmPlrClipGetFirst((OmPlrHandle)app->players.item[0].handle, clip_name, sizeof(clip_name));
52 for(; c < limit && !r;)
53 {
54 /* get clip info */
55 clip_info.maxMsTracks = 0;
56 clip_info.size = sizeof(clip_info);
57
58 r = OmPlrClipGetInfo((OmPlrHandle)app->players.item[0].handle, clip_name, &clip_info);
59
60 if(!r)
61 {
62 /* copy item props */
63 strncpy(items[c].id, clip_name, PATH_MAX);
64 items[c].in = clip_info.firstFrame;
65 items[c].dur = clip_info.lastFrame - clip_info.firstFrame;
66
67 /* callback */
68 pthread_mutex_unlock(&app->players.lock);
69 if(proc)
70 proc(app, &items[c], data);
71 pthread_mutex_lock(&app->players.lock);
72
73 c++;
74 };
75
76 r = OmPlrClipGetNext((OmPlrHandle)app->players.item[0].handle, clip_name, sizeof(clip_name));
77 };
78
79 pthread_mutex_unlock(&app->players.lock);
80
81 return c;
82 };
83
84
85 static gboolean on_main_window_delete_event( GtkWidget *widget, GdkEvent *event, gpointer user_data )
86 {
87 g_print ("delete event occurred [start]\n");
88 gdk_threads_leave();
89 omnplay_release((omnplay_instance_t*)user_data);
90 gdk_threads_enter();
91 g_print ("delete event occurred [finish]\n");
92
93 return FALSE;
94 }
95
96 static void on_main_window_destroy( GtkWidget *widget, gpointer user_data )
97 {
98 g_print ("destroy occurred\n");
99 gtk_main_quit();
100 }
101
102 omnplay_instance_t* omnplay_create(int argc, char** argv)
103 {
104 int i, c;
105 omnplay_instance_t* app;
106
107 /* prepare application instance */
108 app = (omnplay_instance_t*)malloc(sizeof(omnplay_instance_t));
109 memset(app, 0, sizeof(omnplay_instance_t));
110
111 /* load parameters from command line */
112 if(!omnplay_opt(argc, argv, app) && app->players.count)
113 app->window = ui_omnplay(app);
114 else
115 omnplay_usage();
116
117 return app;
118 };
119
120 void omnplay_destroy(omnplay_instance_t* app)
121 {
122 free(app);
123 };
124
125 static int find_index_of_playlist_item(omnplay_instance_t* app, int start, int idx)
126 {
127 while(1)
128 {
129 if(app->playlist.item[start].omn_idx == idx)
130 return start;
131
132 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_END)
133 break;
134
135 start++;
136 };
137
138 return -1;
139 };
140
141 static void omnplay_update_status(omnplay_player_t* player, OmPlrStatus *prev , OmPlrStatus *curr)
142 {
143 int idx;
144 char tc_cur[32], tc_rem[32], state[32], status[32];
145 const char *clip;
146
147 if(curr)
148 {
149 frames2tc(curr->pos - curr->minPos, 25.0, tc_cur);
150 frames2tc(curr->maxPos - curr->pos, 25.0, tc_rem);
151 strcpy(status, "ONLINE");
152 clip = curr->currClipName;
153
154 switch(curr->state)
155 {
156 case omPlrStateStopped: strcpy(state, "STOPPED"); break;
157 case omPlrStateCuePlay: strcpy(state, "CUE_PLAY"); break;
158 case omPlrStatePlay: strcpy(state, "PLAY"); break;
159 case omPlrStateCueRecord: strcpy(state, "CUE_RECORD"); break;
160 case omPlrStateRecord: strcpy(state, "RECORD"); break;
161 };
162 }
163 else
164 {
165 tc_cur[0] = 0;
166 tc_rem[0] = 0;
167 clip = "";
168 state[0] = 0;
169 strcpy(status, "OFFLINE");
170 };
171
172 /* update status in status page */
173 gdk_threads_enter();
174 gtk_label_set_text(GTK_LABEL (player->label_tc_cur), tc_cur);
175 gtk_label_set_text(GTK_LABEL (player->label_tc_rem), tc_rem);
176 gtk_label_set_text(GTK_LABEL (player->label_state), state);
177 gtk_label_set_text(GTK_LABEL (player->label_status), status);
178 gtk_label_set_text(GTK_LABEL (player->label_clip), clip);
179 gdk_flush();
180 gdk_threads_leave();
181
182 /* update remaining time */
183 gdk_threads_enter();
184 pthread_mutex_lock(&player->app->playlist.lock);
185 pthread_mutex_lock(&player->app->players.lock);
186 if(curr->state == omPlrStatePlay || curr->state == omPlrStateCuePlay)
187 {
188 idx = find_index_of_playlist_item(player->app, player->playlist_start, curr->currClipNum);
189 if(idx >= 0)
190 {
191 frames2tc(curr->currClipStartPos + curr->currClipLen - curr->pos, 25.0, tc_rem);
192 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
193 }
194 if(curr->currClipNum != prev->currClipNum && 1 != prev->numClips)
195 {
196 tc_rem[0] = 0;
197 idx = find_index_of_playlist_item(player->app, player->playlist_start, prev->currClipNum);
198 if(idx >= 0)
199 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
200 };
201 }
202 else
203 {
204 tc_rem[0] = 0;
205 idx = find_index_of_playlist_item(player->app, player->playlist_start, curr->currClipNum);
206 if(idx >= 0)
207 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
208 idx = find_index_of_playlist_item(player->app, player->playlist_start, prev->currClipNum);
209 if(idx >= 0)
210 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
211 };
212 pthread_mutex_unlock(&player->app->players.lock);
213 pthread_mutex_unlock(&player->app->playlist.lock);
214 gdk_flush();
215 gdk_threads_leave();
216
217
218 memcpy(prev, curr, sizeof(OmPlrStatus));
219 };
220
221 static void* omnplay_thread_proc(void* data)
222 {
223 int r;
224 OmPlrStatus st_curr, st_prev;
225 omnplay_player_t* player = (omnplay_player_t*)data;
226
227 /* connect */
228 pthread_mutex_lock(&player->app->players.lock);
229 r = OmPlrOpen(player->host, player->name, (OmPlrHandle*)&player->handle);
230 pthread_mutex_unlock(&player->app->players.lock);
231 if(r)
232 {
233 fprintf(stderr, "ERROR: OmPlrOpen(%s, %s) failed with 0x%.8X\n",
234 player->host, player->name, r);
235
236 return (void*)r;
237 };
238
239 /* setup to do not reconnect */
240 pthread_mutex_lock(&player->app->players.lock);
241 OmPlrSetRetryOpen((OmPlrHandle)player->handle, 0);
242 pthread_mutex_unlock(&player->app->players.lock);
243
244 /* setup directory */
245 if(player->app->players.path[0])
246 {
247 pthread_mutex_lock(&player->app->players.lock);
248 r = OmPlrClipSetDirectory((OmPlrHandle)player->handle, player->app->players.path);
249 pthread_mutex_unlock(&player->app->players.lock);
250
251 if(r)
252 {
253 fprintf(stderr, "ERROR: OmPlrClipSetDirectory(%s) failed with 0x%.8X\n",
254 player->app->players.path, r);
255
256 pthread_mutex_lock(&player->app->players.lock);
257 OmPlrClose((OmPlrHandle)player->handle);
258 pthread_mutex_unlock(&player->app->players.lock);
259
260 return (void*)r;
261 };
262 };
263
264 /* endless loop */
265 for(r = 0 ; !player->app->f_exit && !r;)
266 {
267 /* sleep */
268 usleep(100000);
269
270 /* get status */
271 pthread_mutex_lock(&player->app->players.lock);
272 st_curr.size = sizeof(OmPlrStatus);
273 r = OmPlrGetPlayerStatus((OmPlrHandle)player->handle, &st_curr);
274 pthread_mutex_unlock(&player->app->players.lock);
275
276 if(r)
277 fprintf(stderr, "ERROR: OmPlrGetPlayerStatus failed with 0x%.8X\n", r);
278 else
279 if(memcmp(&st_curr, &st_prev, sizeof(OmPlrStatus)))
280 omnplay_update_status(player, &st_prev , &st_curr);
281 };
282
283 pthread_mutex_lock(&player->app->players.lock);
284 OmPlrClose((OmPlrHandle)player->handle);
285 pthread_mutex_unlock(&player->app->players.lock);
286
287 return NULL;
288 };
289
290 void get_selected_items_playlist_proc(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
291 {
292 int idx, *list = (int*)data;
293 gtk_tree_model_get(model, iter, 7, &idx, -1);
294 list[list[0] + 1] = idx;
295 list[0] = list[0] + 1;
296 };
297
298 static int* get_selected_items_playlist(omnplay_instance_t* app)
299 {
300 int* list = NULL;
301 GtkTreeSelection *selection;
302
303 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid));
304 if(selection)
305 {
306 list = (int*)malloc(sizeof(int) * (MAX_PLAYLIST_ITEMS + 1));
307 memset(list, 0, sizeof(int) * (MAX_PLAYLIST_ITEMS + 1));
308
309 gtk_tree_selection_selected_foreach(
310 selection,
311 get_selected_items_playlist_proc,
312 list);
313
314 if(!list[0])
315 {
316 free(list);
317 list = NULL;
318 };
319 };
320
321 return list;
322 };
323
324 static int idx_in_players_range(omnplay_instance_t* app, int idx)
325 {
326 int i, r = 0;
327
328 for(i = 0; i < app->players.count && !r; i++)
329 {
330 int a, b;
331
332 a = app->players.item[i].playlist_start;
333 b = app->players.item[i].playlist_length;
334
335 if(b <= 0)
336 continue;
337
338 b = a + b - 1;
339
340 if(idx >= a && idx <= b) r = 1;
341 };
342
343 return r;
344 };
345
346 static int idxs_in_players_range(omnplay_instance_t* app, int start, int stop)
347 {
348 int i, r = 0;
349
350 for(i = 0; i < app->players.count && !r; i++)
351 {
352 int a, b;
353
354 a = app->players.item[i].playlist_start;
355 b = app->players.item[i].playlist_length;
356
357 if(b <= 0)
358 continue;
359
360 b = a + b - 1;
361
362 #define IN_RANGE(A,B,C) (A <= C && C <= B)
363 if( IN_RANGE(a,b,start) ||
364 IN_RANGE(a,b,stop) ||
365 IN_RANGE(start,stop,a) ||
366 IN_RANGE(start,stop,b))
367 r = 1;
368 };
369
370 return r;
371 };
372
373 static void omnplay_playlist_block(omnplay_instance_t* app, control_buttons_t button)
374 {
375 int start, stop, r, i;
376 int* list = get_selected_items_playlist(app);
377
378 if(!list)
379 return;
380
381 pthread_mutex_lock(&app->playlist.lock);
382 pthread_mutex_lock(&app->players.lock);
383
384 start = list[1];
385 stop = list[list[0]];
386
387 if(!idxs_in_players_range(app, start, stop))
388 {
389 int loop = (button == BUTTON_PLAYLIST_BLOCK_LOOP)?OMNPLAY_PLAYLIST_BLOCK_LOOP:0;
390
391 /* update selected item */
392 for(i = start; i <= stop; i++)
393 {
394 int t = OMNPLAY_PLAYLIST_BLOCK_BODY | loop;
395
396 if(i == start) t |= OMNPLAY_PLAYLIST_BLOCK_BEGIN;
397 if(i == stop) t |= OMNPLAY_PLAYLIST_BLOCK_END;
398
399 app->playlist.item[i].type = (playlist_item_type_t)t;
400
401 omnplay_playlist_draw_item(app, i);
402 };
403
404 /* update border items */
405 if(!start && !(app->playlist.item[start - 1].type & OMNPLAY_PLAYLIST_BLOCK_END))
406 {
407 app->playlist.item[start - 1].type = (playlist_item_type_t)(OMNPLAY_PLAYLIST_BLOCK_END
408 | app->playlist.item[start - 1].type);
409 omnplay_playlist_draw_item(app, start - 1);
410 };
411 if((stop + 1) < app->playlist.count && !(app->playlist.item[stop + 1].type & OMNPLAY_PLAYLIST_BLOCK_BEGIN))
412 {
413 app->playlist.item[stop + 1].type = (playlist_item_type_t)(OMNPLAY_PLAYLIST_BLOCK_BEGIN
414 | app->playlist.item[stop + 1].type);
415 omnplay_playlist_draw_item(app, stop + 1);
416 };
417 }
418 else
419 fprintf(stderr, "omnplay_playlist_block: range [%d %d] do OVERLAP player\n",
420 start, stop);
421
422 pthread_mutex_unlock(&app->players.lock);
423 pthread_mutex_unlock(&app->playlist.lock);
424
425 free(list);
426 };
427
428 static int get_first_selected_item_playlist(omnplay_instance_t* app)
429 {
430 int idx;
431 int* list = get_selected_items_playlist(app);
432 if(!list) return -1;
433 idx = list[1];
434 free(list);
435 return idx;
436 };
437
438 static int get_playlist_block(omnplay_instance_t* app, int idx, int* start_ptr, int* stop_ptr)
439 {
440 int start, stop;
441
442 for(start = idx; start >= 0; start--)
443 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_BEGIN)
444 break;
445
446 for(stop = idx; stop < app->playlist.count; stop++)
447 if(app->playlist.item[stop].type & OMNPLAY_PLAYLIST_BLOCK_END)
448 break;
449
450 fprintf(stderr, "get_playlist_block: range %d -> %d\n", start, stop);
451
452 /* check block range */
453 if(start >= 0 && stop < app->playlist.count)
454 {
455 *start_ptr = start;
456 *stop_ptr = stop;
457 return (stop - start + 1);
458 };
459
460 return -1;
461 };
462
463 static omnplay_player_t *get_player_at_pos(omnplay_instance_t* app, int pos)
464 {
465 /* check player range */
466 if(app->playlist.item[pos].player > -1 && app->playlist.item[pos].player < app->players.count)
467 return &app->players.item[app->playlist.item[pos].player];
468
469 return NULL;
470 };
471
472 static void omnplay_playlist_delete_items(omnplay_instance_t* app, int* idxs, int count)
473 {
474 int i, j, idx;
475 GtkTreePath* path;
476
477 pthread_mutex_lock(&app->playlist.lock);
478 pthread_mutex_lock(&app->players.lock);
479
480 for(j = 0; j < count; j++)
481 {
482 idx = idxs[j] - j;
483
484 /* fix block types */
485 if(idx)
486 app->playlist.item[idx - 1].type = (playlist_item_type_t)(app->playlist.item[idx - 1].type |
487 OMNPLAY_PLAYLIST_BLOCK_END);
488 if(idx + 1 < app->playlist.count)
489 app->playlist.item[idx + 1].type = (playlist_item_type_t)(app->playlist.item[idx + 1].type |
490 OMNPLAY_PLAYLIST_BLOCK_BEGIN);
491
492 /* shift playlist items */
493 memmove
494 (
495 &app->playlist.item[idx],
496 &app->playlist.item[idx + 1],
497 (app->playlist.count - idx - 1) * sizeof(playlist_item_t)
498 );
499
500 /* decrement items count */
501 app->playlist.count--;
502
503 /* increment servers indexes */
504 for(i = 0; i < app->players.count; i++)
505 if(app->players.item[i].playlist_start >= idx)
506 app->players.item[i].playlist_start--;
507
508
509 };
510
511 /* redraw playlist */
512 omnplay_playlist_draw(app);
513
514 /* select */
515 path = gtk_tree_path_new_from_indices(idxs[0], -1);
516 gtk_tree_selection_select_path(gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid)), path);
517 gtk_tree_view_set_cursor(GTK_TREE_VIEW(app->playlist_grid), path, NULL, FALSE);
518 gtk_tree_path_free(path);
519
520
521 pthread_mutex_unlock(&app->players.lock);
522 pthread_mutex_unlock(&app->playlist.lock);
523 };
524
525 static void omnplay_playlist_item_del(omnplay_instance_t* app)
526 {
527 int i, idx, c;
528 int *list, *list2;
529
530 list = get_selected_items_playlist(app);
531 if(!list) return;
532
533 list2 = (int*)malloc(sizeof(int) * list[0]);
534
535 for(i = 0, c = 0; i < list[0]; i++)
536 {
537 /* check for playing block */
538 if(idx_in_players_range(app, list[i + 1]))
539 continue;
540
541 /* save index */
542 list2[c++] = list[i + 1];
543 };
544
545 if(c)
546 omnplay_playlist_delete_items(app, list2, c);
547
548 free(list2);
549 free(list);
550 };
551
552 static int omnplay_playlist_insert_check(omnplay_instance_t* app, int idx, playlist_item_type_t* t)
553 {
554 *t = OMNPLAY_PLAYLIST_ITEM_BLOCK_SINGLE;
555
556 /* before or after playlist */
557 if(!idx || idx == app->playlist.count)
558 return 1;
559
560 /* check for block borders */
561 if( app->playlist.item[idx - 1].type & OMNPLAY_PLAYLIST_BLOCK_END &&
562 app->playlist.item[idx + 0].type & OMNPLAY_PLAYLIST_BLOCK_BEGIN)
563 return 1;
564
565 /* check for playing block */
566 if(idx_in_players_range(app, idx))
567 return 0;
568
569 if(app->playlist.item[idx].type & OMNPLAY_PLAYLIST_BLOCK_LOOP)
570 *t = OMNPLAY_PLAYLIST_ITEM_LOOP_BODY;
571 else
572 *t = OMNPLAY_PLAYLIST_ITEM_BLOCK_BODY;
573
574 return 1;
575 };
576
577 static void omnplay_playlist_insert_items(omnplay_instance_t* app, int idx,
578 playlist_item_t* items, int count)
579 {
580 int i;
581 GtkTreePath* path;
582
583 pthread_mutex_lock(&app->playlist.lock);
584 pthread_mutex_lock(&app->players.lock);
585
586 /* shift playlist items */
587 memmove
588 (
589 &app->playlist.item[idx + count],
590 &app->playlist.item[idx],
591 (app->playlist.count - idx) * sizeof(playlist_item_t)
592 );
593
594 /* copy new items */
595 memcpy
596 (
597 &app->playlist.item[idx],
598 items,
599 count * sizeof(playlist_item_t)
600 );
601
602 /* increment servers indexes */
603 for(i = 0; i < app->players.count; i++)
604 if(app->players.item[i].playlist_start >= idx)
605 app->players.item[i].playlist_start += idx;
606
607 /* increment items count */
608 app->playlist.count += count;
609
610 /* redraw playlist */
611 omnplay_playlist_draw(app);
612
613 /* select */
614 path = gtk_tree_path_new_from_indices(idx + count, -1);
615 gtk_tree_selection_select_path(gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid)), path);
616 gtk_tree_view_set_cursor(GTK_TREE_VIEW(app->playlist_grid), path, NULL, FALSE);
617 gtk_tree_path_free(path);
618
619 pthread_mutex_unlock(&app->players.lock);
620 pthread_mutex_unlock(&app->playlist.lock);
621 };
622
623 static void omnplay_playlist_item_add(omnplay_instance_t* app, int after)
624 {
625 int idx;
626 playlist_item_t item;
627 playlist_item_type_t t;
628
629 /* find insert position */
630 idx = get_first_selected_item_playlist(app);
631 if(idx < 0)
632 idx = 0;
633 else
634 idx += (after)?1:0;
635
636 if(!omnplay_playlist_insert_check(app, idx, &t))
637 return;
638
639 fprintf(stderr, "allowed insert into idx=%d\n", idx);
640
641 /* clear item */
642 memset(&item, 0, sizeof(playlist_item_t));
643 if(ui_playlist_item_dialog(app, &item))
644 {
645 item.type = t;
646 omnplay_playlist_insert_items(app, idx, &item, 1);
647 };
648 };
649
650 static void omnplay_playlist_item_edit(omnplay_instance_t* app)
651 {
652 int idx;
653 playlist_item_t item;
654
655 /* find insert position */
656 idx = get_first_selected_item_playlist(app);
657
658 if(idx < 0)
659 return;
660
661 /* check for playing block */
662 if(idx_in_players_range(app, idx))
663 return;
664
665 item = app->playlist.item[idx];
666
667 if(ui_playlist_item_dialog(app, &item))
668 {
669 app->playlist.item[idx] = item;
670 omnplay_playlist_draw_item(app, idx);
671 };
672 };
673
674 static void omnplay_ctl(omnplay_instance_t* app, control_buttons_t button)
675 {
676 int i, r;
677 int idx, start, stop;
678 omnplay_player_t *player;
679
680 pthread_mutex_lock(&app->playlist.lock);
681
682 idx = get_first_selected_item_playlist(app);
683
684 if(idx < 0)
685 {
686 pthread_mutex_unlock(&app->playlist.lock);
687 return;
688 };
689
690 fprintf(stderr, "cue: selected item is %d\n", idx);
691
692 if(get_playlist_block(app, idx, &start, &stop) < 0)
693 {
694 pthread_mutex_unlock(&app->playlist.lock);
695 return;
696 };
697
698 fprintf(stderr, "cue: range %d -> %d\n", start, stop);
699
700 player = get_player_at_pos(app, start);
701
702 if(!player)
703 {
704 pthread_mutex_unlock(&app->playlist.lock);
705 return;
706 };
707
708 pthread_mutex_lock(&app->players.lock);
709
710 if(BUTTON_PLAYER_STOP == button || BUTTON_PLAYER_CUE == button)
711 {
712 /* stop */
713 OmPlrStop((OmPlrHandle)player->handle);
714
715 /* detach previous clips */
716 player->playlist_length = -1;
717 OmPlrDetachAllClips((OmPlrHandle)player->handle);
718 };
719
720 if(BUTTON_PLAYER_CUE == button)
721 {
722 int o, c, p = 0;
723
724 /* Attach clips to timeline */
725 for(i = start, c = 0, o = 0; i <= stop; i++)
726 {
727 OmPlrClipInfo clip;
728
729 /* get clip info */
730 clip.maxMsTracks = 0;
731 clip.size = sizeof(clip);
732 r = OmPlrClipGetInfo((OmPlrHandle)player->handle, app->playlist.item[i].id, &clip);
733
734 if(!r)
735 {
736 unsigned int l;
737
738 fprintf(stderr, "OmPlrClipGetInfo(%s): firstFrame=%d, lastFrame=%d\n",
739 app->playlist.item[i].id, clip.firstFrame, clip.lastFrame);
740
741 /* should we fix playlist clip timings */
742 if(!(
743 app->playlist.item[i].in >= clip.firstFrame &&
744 app->playlist.item[i].in + app->playlist.item[i].dur <= clip.lastFrame) ||
745 !app->playlist.item[i].dur)
746 {
747 fprintf(stderr, "cue: item [%s] will be updated [%d;%d]->[%d;%d]\n",
748 app->playlist.item[i].id,
749 app->playlist.item[i].in, app->playlist.item[i].dur,
750 clip.firstFrame, clip.lastFrame - clip.firstFrame);
751
752 app->playlist.item[i].in = clip.firstFrame;
753 app->playlist.item[i].dur = clip.lastFrame - clip.firstFrame;
754 omnplay_playlist_draw_item(app, i);
755 };
756
757 r = OmPlrAttach((OmPlrHandle)player->handle,
758 app->playlist.item[i].id,
759 app->playlist.item[i].in,
760 app->playlist.item[i].in + app->playlist.item[i].dur,
761 0, omPlrShiftModeAfter, &l);
762 };
763
764 if(r)
765 {
766 fprintf(stderr, "cue: failed with %d, %s\n", r, OmPlrGetErrorString((OmPlrError)r));
767 app->playlist.item[i].omn_idx = -1;
768 app->playlist.item[i].omn_offset = -1;
769 }
770 else
771 {
772 app->playlist.item[i].omn_idx = c;
773 app->playlist.item[i].omn_offset = o;
774
775 /* save selected item offset */
776 if(i == idx) p = o;
777
778 c++;
779 o += app->playlist.item[i].dur;
780 };
781 };
782
783 if(c)
784 {
785 OmPlrStatus hs;
786
787 /* Set timeline min/max */
788 OmPlrSetMinPosMin((OmPlrHandle)player->handle);
789 OmPlrSetMaxPosMax((OmPlrHandle)player->handle);
790
791 /* Set timeline position */
792 hs.minPos = 0;
793 hs.size = sizeof(OmPlrStatus);
794 OmPlrGetPlayerStatus((OmPlrHandle)player->handle, &hs);
795 OmPlrSetPos((OmPlrHandle)player->handle, hs.minPos + p);
796
797 /* setup loop */
798 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_LOOP)
799 OmPlrLoop((OmPlrHandle)player->handle, hs.minPos, hs.maxPos);
800 else
801 OmPlrLoop((OmPlrHandle)player->handle, hs.minPos, hs.minPos);
802
803 player->playlist_start = start;
804 player->playlist_length = stop - start + 1;
805
806 /* Cue */
807 OmPlrCuePlay((OmPlrHandle)player->handle, 0.0);
808 };
809 };
810
811 if(BUTTON_PLAYER_PLAY == button)
812 {
813 /* play */
814 OmPlrPlay((OmPlrHandle)player->handle, 1.0);
815 };
816
817 if(BUTTON_PLAYER_PAUSE == button)
818 /* pause */
819 OmPlrPlay((OmPlrHandle)player->handle, 0.0);
820
821 pthread_mutex_unlock(&app->players.lock);
822
823 pthread_mutex_unlock(&app->playlist.lock);
824 };
825
826 static void omnplay_playlist_item_swap(omnplay_instance_t* app, int dir)
827 {
828 int sel, a, b;
829 GtkTreePath* path;
830 playlist_item_t item;
831
832 /* find insert position */
833 sel = get_first_selected_item_playlist(app);
834 if(sel < 0)
835 return;
836
837 if(dir < 0)
838 {
839 a = sel - 1;
840 b = sel;
841 sel = a;
842 }
843 else
844 {
845 a = sel;
846 b = sel + 1;
847 sel = b;
848 };
849
850 /* check for playing block */
851 if(idx_in_players_range(app, a) || idx_in_players_range(app, b))
852 return;
853
854 pthread_mutex_lock(&app->playlist.lock);
855 pthread_mutex_lock(&app->players.lock);
856
857 /* swap */
858 item = app->playlist.item[a];
859 app->playlist.item[a] = app->playlist.item[b];
860 app->playlist.item[b] = item;
861
862 /* rewite type */
863 app->playlist.item[a].type = OMNPLAY_PLAYLIST_ITEM_BLOCK_SINGLE;
864 app->playlist.item[b].type = OMNPLAY_PLAYLIST_ITEM_BLOCK_SINGLE;
865
866 /* redraw main items */
867 omnplay_playlist_draw_item(app, a);
868 omnplay_playlist_draw_item(app, b);
869
870 /* fix block types */
871 if(a)
872 {
873 app->playlist.item[a - 1].type = (playlist_item_type_t)(app->playlist.item[a - 1].type |
874 OMNPLAY_PLAYLIST_BLOCK_END);
875 omnplay_playlist_draw_item(app, a - 1);
876 };
877 if(b + 1 < app->playlist.count)
878 {
879 app->playlist.item[b + 1].type = (playlist_item_type_t)(app->playlist.item[b + 1].type |
880 OMNPLAY_PLAYLIST_BLOCK_BEGIN);
881 omnplay_playlist_draw_item(app, b + 1);
882 };
883
884 /* select */
885 path = gtk_tree_path_new_from_indices(sel, -1);
886 gtk_tree_selection_select_path(gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid)), path);
887 gtk_tree_view_set_cursor(GTK_TREE_VIEW(app->playlist_grid), path, NULL, FALSE);
888 gtk_tree_path_free(path);
889
890 pthread_mutex_unlock(&app->players.lock);
891 pthread_mutex_unlock(&app->playlist.lock);
892 };
893
894 static gboolean omnplay_button_click(omnplay_instance_t* app, control_buttons_t button)
895 {
896 switch(button)
897 {
898 case BUTTON_PLAYLIST_ITEM_ADD:
899 omnplay_playlist_item_add(app, 0);
900 break;
901 case BUTTON_PLAYLIST_ITEM_DEL:
902 omnplay_playlist_item_del(app);
903 break;
904 case BUTTON_PLAYLIST_ITEM_EDIT:
905 omnplay_playlist_item_edit(app);
906 break;
907 case BUTTON_PLAYLIST_LOAD:
908 omnplay_playlist_load(app);
909 break;
910 case BUTTON_PLAYLIST_SAVE:
911 omnplay_playlist_save(app);
912 break;
913 case BUTTON_PLAYLIST_BLOCK_SINGLE:
914 case BUTTON_PLAYLIST_BLOCK_LOOP:
915 omnplay_playlist_block(app, button);
916 break;
917 case BUTTON_PLAYLIST_ITEM_UP:
918 omnplay_playlist_item_swap(app, -1);
919 break;
920 case BUTTON_PLAYLIST_ITEM_DOWN:
921 omnplay_playlist_item_swap(app, +1);
922 break;
923 case BUTTON_PLAYER_CUE:
924 case BUTTON_PLAYER_PLAY:
925 case BUTTON_PLAYER_PAUSE:
926 case BUTTON_PLAYER_STOP:
927 omnplay_ctl(app, button);
928 break;
929 case BUTTON_LIBRARY_ADD:
930 break;
931 case BUTTON_LIBRARY_REFRESH:
932 omnplay_library_refresh(app);
933 break;
934 };
935
936 return TRUE;
937 };
938
939 static gboolean on_button_click(GtkWidget *button, gpointer user_data)
940 {
941 int i;
942 omnplay_instance_t* app = (omnplay_instance_t*)user_data;
943
944 for(i = 1; i < BUTTON_LAST; i++)
945 if(app->buttons[i] == button)
946 return omnplay_button_click(app, (control_buttons_t)i);
947
948 return FALSE;
949 };
950
951 static gboolean on_playlist_grid_key(GtkWidget *widget, GdkEventKey *event, gpointer data)
952 {
953 omnplay_instance_t* app = (omnplay_instance_t*)data;
954
955 switch(event->keyval)
956 {
957 case GDK_C:
958 case GDK_c:
959 if(event->state & GDK_CONTROL_MASK)
960 {
961 fprintf(stderr, "CTRL+c\n");
962 return TRUE;
963 };
964 break;
965 case GDK_V:
966 case GDK_v:
967 if(event->state & GDK_CONTROL_MASK)
968 {
969 fprintf(stderr, "CTRL+v\n");
970 return TRUE;
971 };
972 break;
973 case GDK_X:
974 case GDK_x:
975 if(event->state & GDK_CONTROL_MASK)
976 {
977 fprintf(stderr, "CTRL+x\n");
978 return TRUE;
979 };
980 break;
981 case GDK_KEY_space:
982 omnplay_ctl(app, BUTTON_PLAYER_PLAY);
983 return TRUE;
984 case GDK_KEY_Return:
985 omnplay_ctl(app, BUTTON_PLAYER_CUE);
986 return TRUE;
987 case GDK_KEY_Insert:
988 omnplay_playlist_item_add(app, 0);
989 return TRUE;
990 case GDK_KEY_Delete:
991 omnplay_playlist_item_del(app);
992 return TRUE;
993 case GDK_KEY_BackSpace:
994 omnplay_playlist_item_edit(app);
995 return TRUE;
996 };
997
998 return FALSE;
999 };
1000
1001 void omnplay_init(omnplay_instance_t* app)
1002 {
1003 int i;
1004 pthread_mutexattr_t attr;
1005
1006 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1007
1008 gtk_signal_connect( GTK_OBJECT( app->window ), "delete-event",
1009 GTK_SIGNAL_FUNC(on_main_window_delete_event), app);
1010
1011 gtk_signal_connect( GTK_OBJECT( app->window ), "destroy",
1012 GTK_SIGNAL_FUNC(on_main_window_destroy), app);
1013
1014 gtk_widget_add_events(app->playlist_grid, GDK_BUTTON_PRESS_MASK);
1015 gtk_signal_connect(GTK_OBJECT(app->playlist_grid), "key-press-event",
1016 GTK_SIGNAL_FUNC(on_playlist_grid_key), app);
1017
1018 /* create lock */
1019 pthread_mutex_init(&app->players.lock, &attr);
1020
1021 /* create a omneon status thread */
1022 for(i = 0; i < app->players.count; i++)
1023 pthread_create(&app->players.item[i].thread, NULL,
1024 omnplay_thread_proc, &app->players.item[i]);
1025
1026 /* create lock */
1027 pthread_mutex_init(&app->playlist.lock, &attr);
1028
1029 /* attach buttons click */
1030 for(i = 1; i < BUTTON_LAST; i++)
1031 gtk_signal_connect(GTK_OBJECT(app->buttons[i]), "clicked",
1032 GTK_SIGNAL_FUNC( on_button_click), app );
1033
1034 /* create lock */
1035 pthread_mutex_init(&app->library.lock, &attr);
1036
1037 /* load library */
1038 omnplay_library_load(app);
1039 };
1040
1041 void omnplay_release(omnplay_instance_t* app)
1042 {
1043 int i;
1044 void* r;
1045
1046 app->f_exit = 1;
1047
1048 for(i = 0; i < app->players.count; i++)
1049 /* create a omneon status thread */
1050 pthread_join(app->players.item[i].thread, &r);
1051
1052 /* destroy lock */
1053 pthread_mutex_destroy(&app->players.lock);
1054
1055 /* destroy lock */
1056 pthread_mutex_destroy(&app->playlist.lock);
1057
1058 /* load library */
1059 omnplay_library_save(app);
1060
1061 /* destroy library lock */
1062 pthread_mutex_destroy(&app->library.lock);
1063 };