annotate highlight.c @ 76:0e2abe7083de src

more consistent console output
author mroi
date Tue, 27 Aug 2002 19:15:08 +0000
parents 940b438a9c9f
children 129ac4af16a4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
1 /*
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
2 * Copyright (C) 2000 Rich Wareham <richwareham@users.sourceforge.net>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
3 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
4 * This file is part of libdvdnav, a DVD navigation library.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
5 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
6 * libdvdnav is free software; you can redistribute it and/or modify
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
7 * it under the terms of the GNU General Public License as published by
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
9 * (at your option) any later version.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
10 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
11 * libdvdnav is distributed in the hope that it will be useful,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
14 * GNU General Public License for more details.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
15 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
19 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
20 * $Id$
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
21 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
22 */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
23
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
24 #ifdef HAVE_CONFIG_H
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
25 #include "config.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
26 #endif
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
27
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
28 /*
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
29 #define BUTTON_TESTING
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
30 */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
31 #include <assert.h>
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
32
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
33 #include <dvdnav.h>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
34 #include "dvdnav_internal.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
35
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
36 #include "vm.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
37 #include <dvdread/nav_types.h>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
38
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
39 #ifdef BUTTON_TESTING
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
40 #include <dvdread/nav_print.h>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
41 #endif
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
42
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
43 /* Highlighting API calls */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
44
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
45 dvdnav_status_t dvdnav_get_current_highlight(dvdnav_t *this, int* button) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
46 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
47 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
48
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
49 /* Simply return the appropriate value based on the SPRM */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
50 (*button) = (this->vm->state.HL_BTNN_REG) >> 10;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
51
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
52 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
53 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
54
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
55 btni_t *__get_current_button(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
56 int button = 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
57
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
58 if(dvdnav_get_current_highlight(this, &button) != S_OK) {
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
59 printerr("Unable to get information on current highlight.");
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
60 return NULL;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
61 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
62 #ifdef BUTTON_TESTING
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
63 navPrint_PCI(&(this->pci));
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
64 #endif
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
65
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
66 return &(this->pci.hli.btnit[button-1]);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
67 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
68
29
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
69 dvdnav_status_t dvdnav_button_auto_action(dvdnav_t *this) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
70 btni_t *button_ptr;
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
71
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
72 if(!this)
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
73 return S_ERR;
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
74
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
75 if((button_ptr = __get_current_button(this)) == NULL) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
76 return S_ERR;
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
77 }
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
78 if (button_ptr->auto_action_mode == 1) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
79 return S_OK;
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
80 }
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
81 return S_ERR;
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
82 }
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
83
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
84
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
85 dvdnav_status_t dvdnav_upper_button_select(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
86 btni_t *button_ptr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
87
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
88 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
89 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
90
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
91 if((button_ptr = __get_current_button(this)) == NULL) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
92 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
93 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
94
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
95 dvdnav_button_select(this, button_ptr->up);
29
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
96 if (dvdnav_button_auto_action(this) ) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
97 dvdnav_button_activate(this);
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
98 }
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
99
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
100 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
101 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
102
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
103 dvdnav_status_t dvdnav_lower_button_select(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
104 btni_t *button_ptr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
105
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
106 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
107 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
108
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
109 if((button_ptr = __get_current_button(this)) == NULL) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
110 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
111 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
112
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
113 dvdnav_button_select(this, button_ptr->down);
29
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
114 if (dvdnav_button_auto_action(this) ) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
115 dvdnav_button_activate(this);
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
116 }
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
117
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
118 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
119 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
120
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
121 dvdnav_status_t dvdnav_right_button_select(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
122 btni_t *button_ptr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
123
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
124 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
125 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
126
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
127 if((button_ptr = __get_current_button(this)) == NULL) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
128 printerr("Error fetching information on current button.");
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
129 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
130 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
131
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
132 dvdnav_button_select(this, button_ptr->right);
29
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
133 if (dvdnav_button_auto_action(this) ) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
134 dvdnav_button_activate(this);
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
135 }
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
136
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
137 return S_OK;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
138 }
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
139
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
140 dvdnav_status_t dvdnav_left_button_select(dvdnav_t *this) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
141 btni_t *button_ptr;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
142
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
143 if(!this)
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
144 return S_ERR;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
145
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
146 if((button_ptr = __get_current_button(this)) == NULL) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
147 return S_ERR;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
148 }
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
149
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
150 dvdnav_button_select(this, button_ptr->left);
29
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
151 if (dvdnav_button_auto_action(this) ) {
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
152 dvdnav_button_activate(this);
c3c8b98d7e95 Enable auto action buttons.
jcdutton
parents: 26
diff changeset
153 }
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
154
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
155 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
156 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
157
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
158 dvdnav_status_t dvdnav_get_highlight_area(pci_t* nav_pci , int32_t button, int32_t mode,
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
159 dvdnav_highlight_area_t* highlight) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
160 btni_t *button_ptr;
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
161 #ifdef BUTTON_TESTING
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
162 fprintf(MSG_OUT, "libdvdnav: Button get_highlight_area %i\n", button);
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
163 #endif
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
164
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
165 /* Set the highlight SPRM if the passed button was valid*/
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
166 if((button <= 0) || (button > nav_pci->hli.hl_gi.btn_ns)) {
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
167 fprintf(MSG_OUT, "libdvdnav: Unable to select button number %i as it doesn't exist\n",
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
168 button);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
169 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
170 }
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
171 button_ptr = &nav_pci->hli.btnit[button-1];
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
172
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
173 highlight->sx = button_ptr->x_start;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
174 highlight->sy = button_ptr->y_start;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
175 highlight->ex = button_ptr->x_end;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
176 highlight->ey = button_ptr->y_end;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
177 if(button_ptr->btn_coln != 0) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
178 highlight->palette = nav_pci->hli.btn_colit.btn_coli[button_ptr->btn_coln-1][mode];
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
179 } else {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
180 highlight->palette = 0;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
181 }
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
182 highlight->pts = nav_pci->hli.hl_gi.hli_s_ptm;
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
183 highlight->buttonN = button;
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
184 #ifdef BUTTON_TESTING
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
185 fprintf(MSG_OUT, "libdvdnav: highlight.c:Highlight area is (%u,%u)-(%u,%u), display = %i, button = %u\n",
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
186 button_ptr->x_start, button_ptr->y_start,
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
187 button_ptr->x_end, button_ptr->y_end,
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
188 1,
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
189 button);
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
190 #endif
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
191
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
192 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
193 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
194
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
195 dvdnav_status_t dvdnav_button_activate(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
196 int button;
26
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
197 btni_t *button_ptr = NULL;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
198
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
199 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
200 return S_ERR;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
201 pthread_mutex_lock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
202
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
203 /* Precisely the same as selecting a button except we want
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
204 * a different palette */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
205 if(dvdnav_get_current_highlight(this, &button) != S_OK) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
206 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
207 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
208 }
57
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
209 /* FIXME: dvdnav_button_select should really return a
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
210 * special case for explicit NO-BUTTONS.
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
211 */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
212 if(dvdnav_button_select(this, button) != S_OK) {
57
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
213 /* Special code to handle still menus with no buttons.
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
214 * the navigation is expected to report to the appicatino that a STILL is
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
215 * underway. In turn, the application is supposed to report to the user
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
216 * that the playback is pause. The user is then expected to undo the pause.
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
217 * ie: hit play. At that point, the navigation should release the still and
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
218 * go to the next Cell.
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
219 * Explanation by Mathieu Lavage <mathieu_lacage@realmagic.fr>
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
220 * Code added by jcdutton.
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
221 */
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
222 if (this->position_current.still != 0) {
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
223 /* In still, but no buttons. */
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
224 vm_get_next_cell(this->vm);
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
225 this->position_current.still = 0;
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
226 pthread_mutex_unlock(&this->vm_lock);
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
227 return S_OK;
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
228 }
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
229 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
230 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
231 }
26
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
232 /* FIXME: The button command should really be passed in the API instead. */
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
233 button_ptr = __get_current_button(this);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
234 /* Finally, make the VM execute the appropriate code and
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
235 * scedule a jump */
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
236 #ifdef BUTTON_TESTING
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
237 fprintf(MSG_OUT, "libdvdnav: Evaluating Button Activation commands.\n");
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
238 #endif
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
239 if(vm_eval_cmd(this->vm, &(button_ptr->cmd)) == 1) {
26
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
240 /* Command caused a jump */
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
241 this->vm->hop_channel++;
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 22
diff changeset
242 this->position_current.still = 0;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
243 }
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
244 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
245 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
246 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
247
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
248 dvdnav_status_t dvdnav_button_select(dvdnav_t *this, int button) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
249
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
250 if(!this) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
251 printerrf("Unable to select button number %i as this state bad",
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
252 button);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
253 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
254 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
255
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
256 #ifdef BUTTON_TESTING
76
0e2abe7083de more consistent console output
mroi
parents: 69
diff changeset
257 fprintf(MSG_OUT, "libdvdnav: Button select %i\n", button);
31
8b08ee66cbff Quiet please!!!
jcdutton
parents: 30
diff changeset
258 #endif
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
259
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
260 /* Set the highlight SPRM if the passed button was valid*/
57
e1505b603eb8 Fix problem with Still menus that have NO BUTTONS.
jcdutton
parents: 42
diff changeset
261 /* FIXME: this->pci should be provided by the application. */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
262 if((button <= 0) || (button > this->pci.hli.hl_gi.btn_ns)) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
263 printerrf("Unable to select button number %i as it doesn't exist",
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
264 button);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
265 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
266 }
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
267 this->vm->state.HL_BTNN_REG = (button << 10);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
268
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
269 this->hli_state = 1; /* Selected */
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
270
64
2759605b41f6 We need to update the button info when moving around in menus.
mroi
parents: 57
diff changeset
271 this->position_current.button = -1; /* Force Highligh change */
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
272
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
273 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
274 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
275
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
276 dvdnav_status_t dvdnav_button_select_and_activate(dvdnav_t *this,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
277 int button) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
278 /* A trivial function */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
279 if(dvdnav_button_select(this, button) != S_ERR) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
280 return dvdnav_button_activate(this);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
281 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
282
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
283 /* Should never get here without an error */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
284 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
285 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
286
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
287 dvdnav_status_t dvdnav_mouse_select(dvdnav_t *this, int x, int y) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
288 int button, cur_button;
69
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
289 uint32_t best,dist;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
290 int mx,my,dx,dy,d;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
291
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
292 /* FIXME: At the moment, the case of no button matchin (x,y) is
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
293 * silently ignored, is this OK? */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
294 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
295 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
296
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
297 if(dvdnav_get_current_highlight(this, &cur_button) != S_OK) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
298 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
299 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
300
69
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
301 best = 0;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
302 dist = 0x08000000; /* >> than (720*720)+(567*567); */
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
303
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
304 /* Loop through each button */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
305 for(button=1; button <= this->pci.hli.hl_gi.btn_ns; button++) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
306 btni_t *button_ptr = NULL;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
307 button_ptr = &(this->pci.hli.btnit[button-1]);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
308 if((x >= button_ptr->x_start) && (x <= button_ptr->x_end) &&
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
309 (y >= button_ptr->y_start) && (y <= button_ptr->y_end)) {
69
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
310 mx = (button_ptr->x_start + button_ptr->x_end)/2;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
311 my = (button_ptr->y_start + button_ptr->y_end)/2;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
312 dx = mx - x;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
313 dy = my - y;
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
314 d = (dx*dx) + (dy*dy);
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
315 /* If the mouse is within the button and the mouse is closer
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
316 * to the center of this button then it is the best choice. */
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
317 if(d < dist) {
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
318 dist = d; best=button;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
319 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
320 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
321 }
69
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
322
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
323 if (best!=0) {
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
324 /* As an efficiency measure, only re-select the button
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
325 * if it is different to the previously selected one. */
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
326 if(best != cur_button) {
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
327 dvdnav_button_select(this, best);
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
328 }
940b438a9c9f Modified version of button selection patch from
richwareham
parents: 67
diff changeset
329 }
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
330
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
331 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
332 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
333
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
334 dvdnav_status_t dvdnav_mouse_activate(dvdnav_t *this, int x, int y) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
335 /* A trivial function */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
336 if(dvdnav_mouse_select(this, x,y) != S_ERR) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 10
diff changeset
337 return dvdnav_button_activate(this);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
338 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
339
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
340 /* Should never get here without an error */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
341 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
342 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
343