Mercurial > mplayer.hg
annotate gui/win32/interface.c @ 35376:02006c5b3b30
Move add_to_gui_playlist() to util/list.c.
It's not an interface related function, but a playlist utility one.
Additionally, add doxygen comments and change debug message.
As a result, the different implementation of add_to_gui_playlist() of
the Win32 GUI - the GUI uses code from util/list.c - can't have the same
name and thus will be renamed to import_file_into_gui() again, reverting
the r35467 and r35444 changes which were premature.
author | ib |
---|---|
date | Sun, 25 Nov 2012 11:51:35 +0000 |
parents | 8249c2131cd3 |
children | 2d55540614a9 |
rev | line source |
---|---|
23077 | 1 /* |
23079 | 2 * MPlayer GUI for Win32 |
3 * Copyright (C) 2003 Sascha Sommer <saschasommer@freenet.de> | |
4 * Copyright (C) 2006 Erik Augustson <erik_27can@yahoo.com> | |
5 * Copyright (C) 2006 Gianluigi Tiesi <sherpya@netfarm.it> | |
6 * | |
7 * This file is part of MPlayer. | |
8 * | |
9 * MPlayer is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * MPlayer is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
26457 | 19 * You should have received a copy of the GNU General Public License along |
20 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
23079 | 22 */ |
23077 | 23 |
34405
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
24 #include "config.h" |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
25 |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
26 #if defined(CONFIG_LIBCDIO) |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
27 #include <cdio/cdda.h> |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
28 #elif defined(CONFIG_CDDA) |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
29 #include <cdda_interface.h> |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
30 #endif |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
31 |
23077 | 32 #include <windows.h> |
33358 | 33 |
34115 | 34 #if defined(__CYGWIN__) || defined(__WINE__) |
33358 | 35 #define _beginthreadex CreateThread |
34392 | 36 #ifdef __WINE__ |
37 #include <winioctl.h> | |
38 #define WINE_MOUNTMGR_EXTENSIONS | |
39 #include <ddk/mountmgr.h> | |
40 #endif | |
33358 | 41 #else |
42 #include <process.h> | |
43 #endif | |
44 | |
30901 | 45 #include "path.h" |
26372
76413880bfad
Update include paths to account for build system changes.
diego
parents:
26193
diff
changeset
|
46 #include "gui/interface.h" |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
47 #include "m_option.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
48 #include "mixer.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
49 #include "mp_msg.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
50 #include "help_mp.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
51 #include "codec-cfg.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
52 #include "stream/stream.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
53 #include "libmpdemux/demuxer.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
54 #include "libmpdemux/stheader.h" |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26457
diff
changeset
|
55 #ifdef CONFIG_DVDREAD |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
56 #include "stream/stream_dvd.h" |
23077 | 57 #endif |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
58 #include "input/input.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
59 #include "libvo/video_out.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
60 #include "libao2/audio_out.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
61 #include "access_mpcontext.h" |
30558 | 62 #include "libmpcodecs/vd.h" |
31425
2392ad3cec9c
Move af_cfg extern variable declaration to dec_audio.h.
diego
parents:
31312
diff
changeset
|
63 #include "libmpcodecs/dec_audio.h" |
33761 | 64 #include "gui/ui/actions.h" |
33557 | 65 #include "gui/ui/gmplayer.h" |
33770 | 66 #include "gui/util/mem.h" |
33761 | 67 #include "gui/util/list.h" |
68 #include "gui/util/string.h" | |
30558 | 69 #include "mp_core.h" |
32093 | 70 #include "mpcommon.h" |
23077 | 71 #include "gui.h" |
72 #include "dialogs.h" | |
73 | |
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
74 #define SAME_STREAMTYPE (STREAMTYPE_DUMMY - 1) |
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
75 |
23077 | 76 int guiWinID = 0; |
77 | |
78 char *skinName = NULL; | |
79 char *codecname = NULL; | |
35374 | 80 int uiProcessNextInPlaylist = 1; |
23077 | 81 static gui_t *mygui = NULL; |
34697 | 82 static int update_videowindow(void); |
23077 | 83 static RECT old_rect; |
84 static DWORD style; | |
24992 | 85 static HANDLE hThread; |
86 static unsigned threadId; | |
25765
304fc0bbefe1
audio_out / video_out structs should be treated as const
reimar
parents:
24992
diff
changeset
|
87 const ao_functions_t *audio_out = NULL; |
304fc0bbefe1
audio_out / video_out structs should be treated as const
reimar
parents:
24992
diff
changeset
|
88 const vo_functions_t *video_out = NULL; |
23077 | 89 mixer_t *mixer = NULL; |
90 | |
34392 | 91 #ifdef __WINE__ |
92 /** | |
34393
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
93 * @brief Convert a Windows style path to a file name into an Unix style one. |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
94 * |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
95 * @param filename pointer to the file path to be converted |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
96 * |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
97 * @return pointer to the converted file path |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
98 */ |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
99 static char *unix_name (char *filename) |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
100 { |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
101 static char *unix_filename; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
102 LPSTR (*CDECL wine_get_unix_file_name_ptr)(LPCWSTR); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
103 int wchar_conv; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
104 |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
105 if (*filename && (filename[1] == ':')) |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
106 { |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
107 wine_get_unix_file_name_ptr = (void *) GetProcAddress(GetModuleHandleA("KERNEL32"), "wine_get_unix_file_name"); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
108 wchar_conv = MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, NULL, 0); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
109 |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
110 if (wine_get_unix_file_name_ptr && wchar_conv) |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
111 { |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
112 WCHAR *ntpath; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
113 char *unix_name; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
114 |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
115 ntpath = HeapAlloc(GetProcessHeap(), 0, sizeof(*ntpath) * (wchar_conv + 1)); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
116 MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, ntpath, wchar_conv); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
117 unix_name = wine_get_unix_file_name_ptr(ntpath); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
118 setdup(&unix_filename, unix_name); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
119 filename = unix_filename; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
120 HeapFree(GetProcessHeap(), 0, unix_name); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
121 HeapFree(GetProcessHeap(), 0, ntpath); |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
122 } |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
123 } |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
124 |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
125 return filename; |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
126 } |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
127 |
4c8bdc633648
Cosmetic: Collect together Wine port related functions.
ib
parents:
34392
diff
changeset
|
128 /** |
34392 | 129 * @brief Convert a Windows style device name into an Unix style one. |
130 * | |
131 * @param device pointer to the device name to be converted | |
132 * | |
133 * @return pointer to the converted device name | |
134 */ | |
135 static char *unix_device (char *device) | |
136 { | |
137 static char *unix_devname; | |
138 HANDLE mgr; | |
139 DWORD size = 1024; | |
140 | |
141 mgr = CreateFileW(MOUNTMGR_DOS_DEVICE_NAME, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0); | |
142 | |
143 if (mgr != INVALID_HANDLE_VALUE) | |
144 { | |
145 struct mountmgr_unix_drive input; | |
146 struct mountmgr_unix_drive *data; | |
147 | |
148 data = HeapAlloc(GetProcessHeap(), 0, size); | |
149 | |
150 if (data) | |
151 { | |
152 memset(&input, 0, sizeof(input)); | |
153 input.letter = *device; | |
154 | |
155 if (DeviceIoControl(mgr, IOCTL_MOUNTMGR_QUERY_UNIX_DRIVE, &input, sizeof(input), data, size, NULL, NULL)) | |
156 { | |
157 if (data->device_offset) | |
158 { | |
159 setdup(&unix_devname, (char *) data + data->device_offset); | |
160 device = unix_devname; | |
161 } | |
162 } | |
163 | |
164 HeapFree(GetProcessHeap(), 0, data); | |
165 } | |
166 | |
167 CloseHandle(mgr); | |
168 } | |
169 | |
170 return device; | |
171 } | |
172 #endif | |
173 | |
23077 | 174 /* test for playlist files, no need to specify -playlist on the commandline. |
175 * add any conceivable playlist extensions here. | |
176 * - Erik | |
177 */ | |
178 int parse_filename(char *file, play_tree_t *playtree, m_config_t *mconfig, int clear) | |
179 { | |
180 if(clear) | |
181 mygui->playlist->clear_playlist(mygui->playlist); | |
182 | |
183 if(strstr(file, ".m3u") || strstr(file, ".pls")) | |
184 { | |
185 playtree = parse_playlist_file(file); | |
33752 | 186 guiPlaylistAdd(playtree, mconfig); |
23077 | 187 return 1; |
188 } | |
189 return 0; | |
190 } | |
191 | |
192 /* this function gets called by the gui to update mplayer */ | |
193 static void guiSetEvent(int event) | |
194 { | |
33555 | 195 if(guiInfo.mpcontext) |
196 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
23077 | 197 |
198 switch(event) | |
199 { | |
200 case evPlay: | |
201 case evPlaySwitchToPause: | |
23148
71efd1fc20c8
add missing case value, fixes functionality when using some skins.
vayne
parents:
23147
diff
changeset
|
202 case evPauseSwitchToPlay: |
33555 | 203 uiPlay(); |
23077 | 204 break; |
205 case evPause: | |
33555 | 206 uiPause(); |
23077 | 207 break; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26457
diff
changeset
|
208 #ifdef CONFIG_DVDREAD |
23077 | 209 case evPlayDVD: |
210 { | |
211 static char dvdname[MAX_PATH]; | |
34391 | 212 guiInfo.Track = 1; |
213 guiInfo.Chapter = 1; | |
214 guiInfo.Angle = 1; | |
33890 | 215 guiInfo.NewPlay = GUI_FILE_SAME; |
23077 | 216 |
34392 | 217 #ifdef __WINE__ |
218 // dvd_device is in the Windows style (D:\), which needs to be | |
219 // converted for MPlayer, so that it will find the device in the | |
220 // Linux filesystem. | |
221 dvd_device = unix_device(dvd_device); | |
222 #endif | |
33555 | 223 uiSetFileName(NULL, dvd_device, STREAMTYPE_DVD); |
23077 | 224 dvdname[0] = 0; |
225 strcat(dvdname, "DVD Movie"); | |
226 GetVolumeInformation(dvd_device, dvdname, MAX_PATH, NULL, NULL, NULL, NULL, 0); | |
227 capitalize(dvdname); | |
228 mp_msg(MSGT_GPLAYER, MSGL_V, "Opening DVD %s -> %s\n", dvd_device, dvdname); | |
229 mygui->playlist->clear_playlist(mygui->playlist); | |
230 mygui->playlist->add_track(mygui->playlist, filename, NULL, dvdname, 0); | |
34391 | 231 uiPlay(); |
23077 | 232 break; |
233 } | |
234 #endif | |
34405
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
235 #ifdef CONFIG_CDDA |
23077 | 236 case evPlayCD: |
237 { | |
238 int i; | |
239 char track[10]; | |
240 char trackname[10]; | |
34405
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
241 #ifdef CONFIG_LIBCDIO |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
242 cdrom_drive_t *cd; |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
243 #else |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
244 cdrom_drive *cd; |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
245 #endif |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
246 int i_tracks; |
23077 | 247 |
34406 | 248 #ifdef __WINE__ |
249 // cdrom_device is in the Windows style (D:\), which needs to be | |
250 // converted for MPlayer, so that it will find the device in the | |
251 // Linux filesystem. | |
252 cdrom_device = unix_device(cdrom_device); | |
253 #endif | |
34405
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
254 cd = cdda_identify(cdrom_device, 0, NULL); |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
255 if (cd) |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
256 { |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
257 if (cdda_open(cd) != 0) |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
258 { |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
259 cdda_close(cd); |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
260 cd = NULL; |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
261 } |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
262 } |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
263 if(!cd) |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
264 { |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
265 printf("Couldn't find a driver.\n"); |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
266 break; |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
267 } |
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
268 i_tracks = cdda_tracks(cd); |
23077 | 269 |
270 mygui->playlist->clear_playlist(mygui->playlist); | |
271 for(i=0;i<i_tracks;i++) | |
272 { | |
273 sprintf(track, "cdda://%d", i+1); | |
274 sprintf(trackname, "Track %d", i+1); | |
275 mygui->playlist->add_track(mygui->playlist, track, NULL, trackname, 0); | |
276 } | |
34405
35fd66684548
Use cdparanoia compatibility names for CD function calls.
ib
parents:
34400
diff
changeset
|
277 cdda_close(cd); |
23077 | 278 mygui->startplay(mygui); |
279 break; | |
280 } | |
281 #endif | |
282 case evFullScreen: | |
283 mp_input_queue_cmd(mp_input_parse_cmd("vo_fullscreen")); | |
284 break; | |
285 case evExit: | |
286 { | |
287 /* We are asking mplayer to exit, later it will ask us after uninit is made | |
288 this should be the only safe way to quit */ | |
289 mygui->activewidget = NULL; | |
290 mp_input_queue_cmd(mp_input_parse_cmd("quit")); | |
291 break; | |
292 } | |
293 case evStop: | |
33555 | 294 if(guiInfo.Playing) |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
295 gui(GUI_SET_STATE, (void *) GUI_STOP); |
23077 | 296 break; |
297 case evSetMoviePosition: | |
298 { | |
33555 | 299 rel_seek_secs = guiInfo.Position / 100.0f; |
23077 | 300 abs_seek_pos = 3; |
301 break; | |
302 } | |
303 case evForward10sec: | |
304 { | |
305 rel_seek_secs = 10.0f; | |
306 abs_seek_pos = 0; | |
307 break; | |
308 } | |
309 case evBackward10sec: | |
310 { | |
311 rel_seek_secs = -10.0f; | |
312 abs_seek_pos = 0; | |
313 break; | |
314 } | |
315 case evSetBalance: | |
316 case evSetVolume: | |
317 { | |
318 float l,r; | |
319 | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
320 if (guiInfo.Playing == GUI_STOP) |
23077 | 321 break; |
322 | |
33555 | 323 if (guiInfo.Balance == 50.0f) |
324 mixer_setvolume(mixer, guiInfo.Volume, guiInfo.Volume); | |
23077 | 325 |
33555 | 326 l = guiInfo.Volume * ((100.0f - guiInfo.Balance) / 50.0f); |
327 r = guiInfo.Volume * ((guiInfo.Balance) / 50.0f); | |
23077 | 328 |
33555 | 329 if (l > guiInfo.Volume) l=guiInfo.Volume; |
330 if (r > guiInfo.Volume) r=guiInfo.Volume; | |
23077 | 331 mixer_setvolume(mixer, l, r); |
332 /* Check for balance support on mixer - there is a better way ?? */ | |
333 if (r != l) | |
334 { | |
335 mixer_getvolume(mixer, &l, &r); | |
336 if (r == l) | |
337 { | |
338 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Mixer doesn't support balanced audio\n"); | |
33555 | 339 mixer_setvolume(mixer, guiInfo.Volume, guiInfo.Volume); |
340 guiInfo.Balance = 50.0f; | |
23077 | 341 } |
342 } | |
343 break; | |
344 } | |
345 case evMute: | |
346 { | |
347 mp_cmd_t * cmd = calloc(1, sizeof(*cmd)); | |
348 cmd->id=MP_CMD_MUTE; | |
349 cmd->name=strdup("mute"); | |
350 mp_input_queue_cmd(cmd); | |
351 break; | |
352 } | |
353 case evLoadPlay: | |
354 { | |
33555 | 355 switch(guiInfo.StreamType) |
23077 | 356 { |
357 case STREAMTYPE_DVD: | |
358 { | |
33890 | 359 guiInfo.NewPlay = GUI_FILE_SAME; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
360 gui(GUI_SET_STATE, (void *) GUI_PLAY); |
23077 | 361 break; |
362 } | |
363 default: | |
364 { | |
33890 | 365 guiInfo.NewPlay = GUI_FILE_NEW; |
23077 | 366 update_playlistwindow(); |
35374 | 367 uiProcessNextInPlaylist = guiInfo.Playing? 0 : 1; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
368 gui(GUI_SET_STATE, (void *) GUI_STOP); |
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
369 gui(GUI_SET_STATE, (void *) GUI_PLAY); |
23077 | 370 break; |
371 } | |
372 } | |
373 break; | |
374 } | |
375 case evNext: | |
33555 | 376 uiNext(); |
23077 | 377 break; |
378 case evPrev: | |
33555 | 379 uiPrev(); |
23077 | 380 break; |
381 } | |
382 } | |
383 | |
33555 | 384 void uiPlay( void ) |
23077 | 385 { |
33555 | 386 if((!guiInfo.Filename ) || (guiInfo.Filename[0] == 0)) |
23077 | 387 return; |
388 | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
389 if(guiInfo.Playing > GUI_STOP) |
23077 | 390 { |
33555 | 391 uiPause(); |
23077 | 392 return; |
393 } | |
33890 | 394 guiInfo.NewPlay = GUI_FILE_NEW; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
395 gui(GUI_SET_STATE, (void *) GUI_PLAY); |
23077 | 396 } |
397 | |
33555 | 398 void uiPause( void ) |
23077 | 399 { |
33555 | 400 if(!guiInfo.Playing) return; |
23077 | 401 |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
402 if(guiInfo.Playing == GUI_PLAY) |
23077 | 403 { |
404 mp_cmd_t * cmd = calloc(1, sizeof(*cmd)); | |
405 cmd->id=MP_CMD_PAUSE; | |
406 cmd->name=strdup("pause"); | |
407 mp_input_queue_cmd(cmd); | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
408 } else guiInfo.Playing = GUI_PLAY; |
23077 | 409 } |
410 | |
33555 | 411 void uiNext(void) |
23077 | 412 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
413 if(guiInfo.Playing == GUI_PAUSE) return; |
33555 | 414 switch(guiInfo.StreamType) |
23077 | 415 { |
416 case STREAMTYPE_DVD: | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
417 if(guiInfo.Chapter == (guiInfo.Chapters - 1)) |
23077 | 418 return; |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
419 guiInfo.Chapter++; |
23077 | 420 break; |
421 default: | |
422 if(mygui->playlist->current == (mygui->playlist->trackcount - 1)) | |
423 return; | |
33555 | 424 uiSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)++]->filename, |
34075 | 425 STREAMTYPE_FILE); |
23077 | 426 break; |
427 } | |
428 mygui->startplay(mygui); | |
429 } | |
430 | |
33555 | 431 void uiPrev(void) |
23077 | 432 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
433 if(guiInfo.Playing == GUI_PAUSE) return; |
33555 | 434 switch(guiInfo.StreamType) |
23077 | 435 { |
436 case STREAMTYPE_DVD: | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
437 if(guiInfo.Chapter == 1) |
23077 | 438 return; |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
439 guiInfo.Chapter--; |
23077 | 440 break; |
441 default: | |
442 if(mygui->playlist->current == 0) | |
443 return; | |
33555 | 444 uiSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)--]->filename, |
34075 | 445 STREAMTYPE_FILE); |
23077 | 446 break; |
447 } | |
448 mygui->startplay(mygui); | |
449 } | |
450 | |
33555 | 451 void uiSetFileName(char *dir, char *name, int type) |
23077 | 452 { |
453 if(!name) return; | |
454 if(!dir) | |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33737
diff
changeset
|
455 setdup(&guiInfo.Filename, name); |
23077 | 456 else |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33737
diff
changeset
|
457 setddup(&guiInfo.Filename, dir, name); |
23077 | 458 |
34064 | 459 filename = guiInfo.Filename; |
34115 | 460 #ifdef __WINE__ |
34127
98f6d11e2ff3
Revise comment on filename conversion in the Wine port.
ib
parents:
34126
diff
changeset
|
461 // When the GUI receives the files to be played in guiPlaylistInitialize() |
35376 | 462 // and guiPlaylistAdd(), it calls import_file_into_gui() where the call of |
34127
98f6d11e2ff3
Revise comment on filename conversion in the Wine port.
ib
parents:
34126
diff
changeset
|
463 // Wine's GetFullPathName() converts each file name into the Windows style |
98f6d11e2ff3
Revise comment on filename conversion in the Wine port.
ib
parents:
34126
diff
changeset
|
464 // (C:\path\to\file), which needs to be reconverted for MPlayer, so that |
98f6d11e2ff3
Revise comment on filename conversion in the Wine port.
ib
parents:
34126
diff
changeset
|
465 // it will find the filename in the Linux filesystem. |
34123 | 466 filename = unix_name(filename); |
34115 | 467 #endif |
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
468 |
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
469 if (type != SAME_STREAMTYPE) |
34400 | 470 guiInfo.StreamType = type; |
34064 | 471 |
33897 | 472 nfree(guiInfo.AudioFilename); |
473 nfree(guiInfo.SubtitleFilename); | |
23077 | 474 } |
475 | |
33555 | 476 void uiFullScreen( void ) |
23077 | 477 { |
33555 | 478 if(!guiInfo.sh_video) return; |
23077 | 479 |
34697 | 480 if(video_window) |
23077 | 481 { |
34697 | 482 if(!fullscreen && IsWindowVisible(mygui->videowindow) && !IsIconic(mygui->videowindow)) |
483 GetWindowRect(mygui->videowindow, &old_rect); | |
23077 | 484 |
485 if(fullscreen) | |
486 { | |
487 fullscreen = 0; | |
488 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; | |
489 } else { | |
490 fullscreen = 1; | |
491 style = WS_VISIBLE | WS_POPUP; | |
492 } | |
34697 | 493 SetWindowLong(mygui->videowindow, GWL_STYLE, style); |
494 update_videowindow(); | |
23077 | 495 } |
496 video_out->control(VOCTRL_FULLSCREEN, 0); | |
34697 | 497 if(video_window) ShowWindow(mygui->videowindow, SW_SHOW); |
23077 | 498 } |
499 | |
24992 | 500 static unsigned __stdcall GuiThread(void* param) |
23077 | 501 { |
502 MSG msg; | |
503 | |
504 if(!skinName) skinName = strdup("Blue"); | |
33781 | 505 if(!mygui) mygui = create_gui(get_path("skins"), guiSetEvent); |
30558 | 506 if(!mygui) exit_player(EXIT_ERROR); |
23077 | 507 |
508 if(autosync && autosync != gtkAutoSync) | |
509 { | |
510 gtkAutoSyncOn = 1; | |
511 gtkAutoSync = autosync; | |
512 } | |
513 | |
24992 | 514 while(GetMessage(&msg, NULL, 0, 0)) |
23077 | 515 { |
516 TranslateMessage(&msg); | |
517 DispatchMessage(&msg); | |
518 } | |
23078 | 519 fprintf(stderr, "[GUI] GUI thread terminated.\n"); |
23077 | 520 fflush(stderr); |
521 return 0; | |
522 } | |
523 | |
524 void guiInit(void) | |
525 { | |
33555 | 526 memset(&guiInfo, 0, sizeof(guiInfo)); |
23077 | 527 /* Create The gui thread */ |
528 if (!mygui) | |
529 { | |
33358 | 530 hThread = _beginthreadex(NULL, 0, GuiThread, NULL, 0, &threadId); |
23077 | 531 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Creating GUI Thread 0x%04x\n", threadId); |
532 } | |
533 | |
534 /* Wait until the gui is created */ | |
535 while(!mygui) Sleep(100); | |
23078 | 536 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] GUI thread started.\n"); |
23077 | 537 } |
538 | |
539 void guiDone(void) | |
540 { | |
541 if(mygui) | |
542 { | |
543 fprintf(stderr, "[GUI] Closed by main mplayer window\n"); | |
544 fflush(stderr); | |
24992 | 545 PostThreadMessage(threadId, WM_QUIT, 0, 0); |
546 WaitForSingleObject(hThread, INFINITE); | |
547 CloseHandle(hThread); | |
23077 | 548 mygui->uninit(mygui); |
33770 | 549 nfree(mygui); |
23077 | 550 } |
551 /* Remove tray icon */ | |
552 Shell_NotifyIcon(NIM_DELETE, &nid); | |
553 cfg_write(); | |
554 } | |
555 | |
556 /* this function gets called by mplayer to update the gui */ | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
557 int gui(int what, void *data) |
23077 | 558 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
559 stream_t *stream = data; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26457
diff
changeset
|
560 #ifdef CONFIG_DVDREAD |
33730 | 561 dvd_priv_t *dvdp; |
23077 | 562 #endif |
563 if(!mygui || !mygui->skin) return 0; | |
564 | |
33555 | 565 if(guiInfo.mpcontext) |
23077 | 566 { |
33555 | 567 audio_out = mpctx_get_audio_out(guiInfo.mpcontext); |
568 video_out = mpctx_get_video_out(guiInfo.mpcontext); | |
569 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
570 playtree = mpctx_get_playtree_iter(guiInfo.mpcontext); | |
23077 | 571 } |
572 | |
33726 | 573 switch (what) |
23077 | 574 { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
575 case GUI_PREPARE: |
23077 | 576 { |
34052 | 577 audio_id = -1; |
578 video_id = -1; | |
579 dvdsub_id = -1; | |
580 vobsub_id = -1; | |
581 stream_cache_size = -1; | |
582 autosync = 0; | |
583 force_fps = 0; | |
584 if(!mygui->playlist->tracks) return 0; | |
34391 | 585 switch(guiInfo.StreamType) |
586 { | |
587 case STREAMTYPE_FILE: | |
588 case STREAMTYPE_STREAM: | |
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
589 uiSetFileName(NULL, mygui->playlist->tracks[mygui->playlist->current]->filename, SAME_STREAMTYPE); |
34391 | 590 guiInfo.Track = mygui->playlist->current + 1; |
591 break; | |
592 case STREAMTYPE_DVD: | |
593 { | |
594 char tmp[512]; | |
35168 | 595 #ifdef CONFIG_DVDREAD |
34391 | 596 dvd_chapter = guiInfo.Chapter; |
597 dvd_angle = guiInfo.Angle; | |
35168 | 598 #endif |
34391 | 599 sprintf(tmp,"dvd://%d", guiInfo.Track); |
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
600 uiSetFileName(NULL, tmp, SAME_STREAMTYPE); |
34391 | 601 break; |
602 } | |
603 } | |
34126 | 604 guiInfo.VideoWindow = 1; |
34610 | 605 if(gtkAONorm) listRepl(&af_cfg.list, "volnorm", "volnorm"); |
34052 | 606 if(gtkAOExtraStereo) |
607 { | |
608 char *name = malloc(12 + 20 + 1); | |
609 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
610 name[12 + 20] = 0; | |
34610 | 611 listRepl(&af_cfg.list, "extrastereo", name); |
34052 | 612 free(name); |
613 } | |
614 if(gtkCacheOn) stream_cache_size = gtkCacheSize; | |
615 if(gtkAutoSyncOn) autosync = gtkAutoSync; | |
33555 | 616 guiInfo.NewPlay = 0; |
23077 | 617 break; |
618 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
619 case GUI_SET_AUDIO: |
23077 | 620 { |
34126 | 621 if (data && !guiInfo.sh_video) guiInfo.VideoWindow = 0; |
34697 | 622 if(IsWindowVisible(mygui->videowindow) && !guiInfo.VideoWindow) |
623 ShowWindow(mygui->videowindow, SW_HIDE); | |
23077 | 624 break; |
625 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
626 case GUI_SET_CONTEXT: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
627 guiInfo.mpcontext = data; |
23077 | 628 break; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
629 case GUI_SET_VIDEO: |
23077 | 630 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
631 guiInfo.sh_video = data; |
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
632 if (data) |
23077 | 633 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
634 sh_video_t *sh = data; |
23077 | 635 codecname = sh->codec->name; |
636 | |
34697 | 637 /* we have video, show the video window */ |
638 if(!IsWindowVisible(mygui->videowindow) || IsIconic(mygui->videowindow)) | |
639 ShowWindow(mygui->videowindow, SW_SHOWNORMAL); | |
23077 | 640 if(WinID == -1) |
34697 | 641 update_videowindow(); |
23077 | 642 |
643 } | |
644 break; | |
645 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
646 case GUI_SETUP_VIDEO_WINDOW: |
23077 | 647 { |
33901 | 648 guiInfo.VideoWidth = vo_dwidth; |
649 guiInfo.VideoHeight = vo_dheight; | |
23077 | 650 |
34697 | 651 video_aspect = (float)guiInfo.VideoWidth/guiInfo.VideoHeight; |
23077 | 652 if(WinID != -1) |
34697 | 653 update_videowindow(); |
23077 | 654 break; |
655 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
656 case GUI_SET_STREAM: |
23077 | 657 { |
33555 | 658 guiInfo.StreamType = stream->type; |
23077 | 659 switch(stream->type) |
660 { | |
661 case STREAMTYPE_DVD: | |
34451
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
662 guiInfo.Tracks = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
663 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
664 guiInfo.Chapters = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
665 stream_control(stream, STREAM_CTRL_GET_NUM_CHAPTERS, &guiInfo.Chapters); |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
666 guiInfo.Angles = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
667 stream_control(stream, STREAM_CTRL_GET_NUM_ANGLES, &guiInfo.Angles); |
35170 | 668 guiInfo.Track = 0; |
669 stream_control(stream, STREAM_CTRL_GET_CURRENT_TITLE, &guiInfo.Track); | |
670 guiInfo.Track++; | |
35168 | 671 // guiInfo.Chapter will be set by mplayer |
672 guiInfo.Angle = 1; | |
673 stream_control(stream, STREAM_CTRL_GET_ANGLE, &guiInfo.Angle); | |
34454 | 674 #ifdef CONFIG_DVDREAD |
33730 | 675 dvdp = stream->priv; |
33902 | 676 guiInfo.AudioStreams = dvdp->nr_of_channels; |
677 memcpy(guiInfo.AudioStream, dvdp->audio_streams, sizeof(dvdp->audio_streams)); | |
678 guiInfo.Subtitles = dvdp->nr_of_subtitles; | |
679 memcpy(guiInfo.Subtitle, dvdp->subtitles, sizeof(dvdp->subtitles)); | |
34454 | 680 #endif |
23077 | 681 break; |
682 } | |
683 break; | |
684 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
685 case GUI_REDRAW: |
23077 | 686 mygui->updatedisplay(mygui, mygui->mainwindow); |
687 break; | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
688 case GUI_SET_AFILTER: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
689 guiInfo.afilter = data; |
23077 | 690 break; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
691 case GUI_SET_STATE: |
23077 | 692 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
693 guiInfo.Playing = (int) data; |
33555 | 694 switch (guiInfo.Playing) |
23077 | 695 { |
33614 | 696 case GUI_PLAY: |
23077 | 697 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
698 guiInfo.Playing = GUI_PLAY; |
23077 | 699 break; |
700 } | |
33614 | 701 case GUI_STOP: |
23077 | 702 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
703 guiInfo.Playing = GUI_STOP; |
23077 | 704 if(movie_aspect >= 0) |
705 movie_aspect = -1; | |
34697 | 706 update_videowindow(); |
23077 | 707 break; |
708 } | |
33614 | 709 case GUI_PAUSE: |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
710 guiInfo.Playing = GUI_PAUSE; |
23077 | 711 break; |
712 } | |
713 break; | |
714 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
715 case GUI_RUN_COMMAND: |
23077 | 716 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
717 mp_msg(MSGT_GPLAYER,MSGL_V, "cmd: %d\n", (int) data); |
23077 | 718 /* MPlayer asks us to quit */ |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
719 switch((int) data) |
23077 | 720 { |
31312
0b7792622c88
Remove Gui-specific slave commands and associated key-bindings and other code.
reimar
parents:
30901
diff
changeset
|
721 case MP_CMD_VO_FULLSCREEN: |
33555 | 722 uiFullScreen(); |
23077 | 723 break; |
724 case MP_CMD_QUIT: | |
725 { | |
726 mygui->uninit(mygui); | |
33770 | 727 nfree(mygui); |
30558 | 728 exit_player(EXIT_QUIT); |
33666
0f592e8530f1
Change return code of guiGetEvent() to indicate success.
ib
parents:
33661
diff
changeset
|
729 return 1; |
23077 | 730 } |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
731 case MP_CMD_PLAY_TREE_STEP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
732 guiSetEvent(evNext); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
733 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
734 case -MP_CMD_PLAY_TREE_STEP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
735 guiSetEvent(evPrev); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
736 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
737 case MP_CMD_STOP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
738 guiSetEvent(evStop); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
739 break; |
23077 | 740 default: |
741 break; | |
742 } | |
743 break; | |
744 } | |
34339 | 745 case GUI_RUN_MESSAGE: |
746 break; | |
33732 | 747 case GUI_HANDLE_EVENTS: |
748 break; | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
749 case GUI_SET_MIXER: |
23077 | 750 { |
751 if(audio_out) | |
752 { | |
753 /* Some audio_out drivers do not support balance e.g. dsound */ | |
754 /* FIXME this algo is not correct */ | |
755 float l, r; | |
756 mixer_getvolume(mixer, &l, &r); | |
33555 | 757 guiInfo.Volume = (r > l ? r : l); /* max(r,l) */ |
23077 | 758 if (r != l) |
33555 | 759 guiInfo.Balance = ((r-l) + 100.0f) * 0.5f; |
23077 | 760 else |
33555 | 761 guiInfo.Balance = 50.0f; |
23077 | 762 } |
763 break; | |
764 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
765 case GUI_END_FILE: |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
766 { |
35330 | 767 guiInfo.sh_video = NULL; |
768 | |
35374 | 769 if(!uiProcessNextInPlaylist && guiInfo.Playing) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
770 { |
35374 | 771 uiProcessNextInPlaylist = 1; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
772 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
773 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
774 |
35374 | 775 if(uiProcessNextInPlaylist && guiInfo.Playing && |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
776 (mygui->playlist->current < (mygui->playlist->trackcount - 1)) && |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
777 guiInfo.StreamType != STREAMTYPE_DVD && |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
778 guiInfo.StreamType != STREAMTYPE_DVDNAV) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
779 { |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
780 /* we've finished this file, reset the aspect */ |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
781 if(movie_aspect >= 0) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
782 movie_aspect = -1; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
783 |
35374 | 784 uiProcessNextInPlaylist = 1; |
33890 | 785 guiInfo.NewPlay = GUI_FILE_NEW; |
34075 | 786 uiSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)++]->filename, STREAMTYPE_FILE); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
787 //sprintf(guiInfo.Filename, mygui->playlist->tracks[(mygui->playlist->current)++]->filename); |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
788 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
789 |
33894 | 790 if(guiInfo.NewPlay == GUI_FILE_NEW) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
791 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
792 |
33897 | 793 guiInfo.ElapsedTime = 0; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
794 guiInfo.Position = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
795 guiInfo.AudioChannels = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
796 |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
797 guiInfo.Track = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
798 guiInfo.Chapter = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
799 guiInfo.Angle = 1; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
800 |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
801 if (mygui->playlist->current == (mygui->playlist->trackcount - 1)) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
802 mygui->playlist->current = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
803 |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
804 fullscreen = 0; |
34999 | 805 if(style == (WS_VISIBLE | WS_POPUP)) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
806 { |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
807 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; |
34697 | 808 SetWindowLong(mygui->videowindow, GWL_STYLE, style); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
809 } |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
810 gui(GUI_SET_STATE, (void *) GUI_STOP); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
811 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
812 } |
23077 | 813 default: |
33726 | 814 mp_msg(MSGT_GPLAYER, MSGL_ERR, "[GUI] GOT UNHANDLED EVENT %i\n", what); |
23077 | 815 } |
33666
0f592e8530f1
Change return code of guiGetEvent() to indicate success.
ib
parents:
33661
diff
changeset
|
816 return 1; |
23077 | 817 } |
818 | |
819 /* This function adds/inserts one file into the gui playlist */ | |
35376 | 820 static int import_file_into_gui(char *pathname, int insert) |
23077 | 821 { |
822 char filename[MAX_PATH]; | |
823 char *filepart = filename; | |
824 | |
35376 | 825 if (strstr(pathname, "://")) |
23077 | 826 { |
35376 | 827 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding special %s\n", pathname); |
828 mygui->playlist->add_track(mygui->playlist, pathname, NULL, NULL, 0); | |
23077 | 829 return 1; |
830 } | |
35376 | 831 if (GetFullPathName(pathname, MAX_PATH, filename, &filepart)) |
23077 | 832 { |
833 if (!(GetFileAttributes(filename) & FILE_ATTRIBUTE_DIRECTORY)) | |
834 { | |
835 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding filename: %s - fullpath: %s\n", filepart, filename); | |
836 mygui->playlist->add_track(mygui->playlist, filename, NULL, filepart, 0); | |
837 return 1; | |
838 } | |
839 else | |
840 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Cannot add %s\n", filename); | |
841 } | |
842 | |
843 return 0; | |
844 } | |
845 | |
846 /* This function imports the initial playtree (based on cmd-line files) into the gui playlist | |
847 by either: | |
848 - overwriting gui pl (enqueue=0) */ | |
849 | |
33752 | 850 int guiPlaylistInitialize(play_tree_t *my_playtree, m_config_t *config, int enqueue) |
23077 | 851 { |
852 play_tree_iter_t *my_pt_iter = NULL; | |
853 int result = 0; | |
854 | |
855 if(!mygui) guiInit(); | |
856 | |
857 if((my_pt_iter = pt_iter_create(&my_playtree, config))) | |
858 { | |
859 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
860 { | |
861 if (parse_filename(filename, my_playtree, config, 0)) | |
862 result = 1; | |
35376 | 863 else if (import_file_into_gui(filename, 0)) /* Add it to end of list */ |
23077 | 864 result = 1; |
865 } | |
866 } | |
35374 | 867 uiProcessNextInPlaylist = 1; |
23077 | 868 |
869 if (result) | |
870 { | |
871 mygui->playlist->current = 0; | |
34068 | 872 uiSetFileName(NULL, mygui->playlist->tracks[0]->filename, STREAMTYPE_FILE); |
23077 | 873 } |
34084 | 874 |
875 if (enqueue) filename = NULL; | |
876 | |
23077 | 877 return result; |
878 } | |
879 | |
880 /* This function imports and inserts an playtree, that is created "on the fly", for example by | |
881 parsing some MOV-Reference-File; or by loading an playlist with "File Open" | |
882 The file which contained the playlist is thereby replaced with it's contents. */ | |
883 | |
33752 | 884 int guiPlaylistAdd(play_tree_t *my_playtree, m_config_t *config) |
23077 | 885 { |
886 play_tree_iter_t *my_pt_iter = NULL; | |
887 int result = 0; | |
888 | |
889 if((my_pt_iter = pt_iter_create(&my_playtree, config))) | |
890 { | |
891 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
35376 | 892 if (import_file_into_gui(filename, 1)) /* insert it into the list and set plCurrent = new item */ |
23077 | 893 result = 1; |
894 pt_iter_destroy(&my_pt_iter); | |
895 } | |
896 return result; | |
897 } | |
898 | |
34697 | 899 static int update_videowindow(void) |
23077 | 900 { |
901 int x,y; | |
902 RECT rd; | |
903 WINDOWPOS wp; | |
904 | |
34697 | 905 if(!video_window) |
23077 | 906 { |
33567 | 907 WinID = -1; |
23077 | 908 |
34697 | 909 if(IsWindowVisible(mygui->videowindow) && guiInfo.sh_video && guiInfo.Playing) |
23077 | 910 { |
34697 | 911 ShowWindow(mygui->videowindow, SW_HIDE); |
23077 | 912 return 0; |
913 } | |
33901 | 914 else if(!guiInfo.VideoWindow) |
23077 | 915 return 0; |
34697 | 916 else ShowWindow(mygui->videowindow, SW_SHOW); |
23077 | 917 } |
918 | |
919 /* we've come out of fullscreen at the end of file */ | |
34697 | 920 if((!IsWindowVisible(mygui->videowindow) || IsIconic(mygui->videowindow)) && guiInfo.VideoWindow) |
921 ShowWindow(mygui->videowindow, SW_SHOWNORMAL); | |
23077 | 922 |
923 /* get our current window coordinates */ | |
34697 | 924 GetWindowRect(mygui->videowindow, &rd); |
23077 | 925 |
926 x = rd.left; | |
927 y = rd.top; | |
928 | |
34697 | 929 /* restore video window position when coming out of fullscreen */ |
23077 | 930 if(x <= 0) x = old_rect.left; |
931 if(y <= 0) y = old_rect.top; | |
932 | |
33555 | 933 if(!guiInfo.Playing) |
23077 | 934 { |
935 window *desc = NULL; | |
34996
ebcc17a3c165
Fix compiler warnings (comparison between signed and unsigned).
ib
parents:
34697
diff
changeset
|
936 unsigned int i; |
23077 | 937 |
938 for (i=0; i<mygui->skin->windowcount; i++) | |
34697 | 939 if(mygui->skin->windows[i]->type == wiVideo) |
23077 | 940 desc = mygui->skin->windows[i]; |
941 | |
942 rd.right = rd.left+desc->base->bitmap[0]->width; | |
943 rd.bottom = rd.top+desc->base->bitmap[0]->height; | |
34697 | 944 video_aspect = (float)(rd.right-rd.left)/(rd.bottom-rd.top); |
23077 | 945 } |
946 else | |
947 { | |
33901 | 948 rd.right = rd.left+guiInfo.VideoWidth; |
949 rd.bottom = rd.top+guiInfo.VideoHeight; | |
23077 | 950 |
951 if (movie_aspect > 0.0) // forced aspect from the cmdline | |
34697 | 952 video_aspect = movie_aspect; |
23077 | 953 } |
954 | |
955 | |
956 AdjustWindowRect(&rd, WS_OVERLAPPEDWINDOW | WS_SIZEBOX, 0); | |
34697 | 957 SetWindowPos(mygui->videowindow, 0, x, y, rd.right-rd.left, rd.bottom-rd.top, SWP_NOOWNERZORDER); |
23077 | 958 |
34697 | 959 wp.hwnd = mygui->videowindow; |
23077 | 960 wp.x = rd.left; |
961 wp.y = rd.top; | |
962 wp.cx = rd.right-rd.left; | |
963 wp.cy = rd.bottom-rd.top; | |
964 wp.flags = SWP_NOOWNERZORDER | SWP_SHOWWINDOW; | |
965 | |
966 /* erase the bitmap image if there's video */ | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
967 if(guiInfo.Playing != GUI_STOP && guiInfo.sh_video) |
34697 | 968 SendMessage(mygui->videowindow, WM_ERASEBKGND, (WPARAM)GetDC(mygui->videowindow), 0); |
23077 | 969 |
970 /* reset the window aspect */ | |
34697 | 971 SendMessage(mygui->videowindow, WM_WINDOWPOSCHANGED, 0, (LPARAM)&wp); |
23077 | 972 return 0; |
973 } |