Mercurial > mplayer.hg
annotate gui/win32/interface.c @ 36839:8474d0444828
Cosmetic: Reformat and adjust indent.
author | ib |
---|---|
date | Tue, 25 Feb 2014 13:19:53 +0000 |
parents | f5320e43d458 |
children | 92e53547406d |
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> |
36775 | 33 #include <stdint.h> |
33358 | 34 |
34115 | 35 #if defined(__CYGWIN__) || defined(__WINE__) |
33358 | 36 #define _beginthreadex CreateThread |
34392 | 37 #ifdef __WINE__ |
38 #include <winioctl.h> | |
39 #define WINE_MOUNTMGR_EXTENSIONS | |
40 #include <ddk/mountmgr.h> | |
41 #endif | |
33358 | 42 #else |
43 #include <process.h> | |
44 #endif | |
45 | |
30901 | 46 #include "path.h" |
26372
76413880bfad
Update include paths to account for build system changes.
diego
parents:
26193
diff
changeset
|
47 #include "gui/interface.h" |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
48 #include "m_option.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
49 #include "mixer.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
50 #include "mp_msg.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
51 #include "help_mp.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
52 #include "codec-cfg.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
53 #include "stream/stream.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
54 #include "libmpdemux/demuxer.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
55 #include "libmpdemux/stheader.h" |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26457
diff
changeset
|
56 #ifdef CONFIG_DVDREAD |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
57 #include "stream/stream_dvd.h" |
23077 | 58 #endif |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
59 #include "input/input.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
60 #include "libvo/video_out.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
61 #include "libao2/audio_out.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
62 #include "access_mpcontext.h" |
30558 | 63 #include "libmpcodecs/vd.h" |
31425
2392ad3cec9c
Move af_cfg extern variable declaration to dec_audio.h.
diego
parents:
31312
diff
changeset
|
64 #include "libmpcodecs/dec_audio.h" |
33761 | 65 #include "gui/ui/actions.h" |
35528 | 66 #include "gui/ui/ui.h" |
33770 | 67 #include "gui/util/mem.h" |
33761 | 68 #include "gui/util/list.h" |
69 #include "gui/util/string.h" | |
30558 | 70 #include "mp_core.h" |
32093 | 71 #include "mpcommon.h" |
23077 | 72 #include "gui.h" |
73 #include "dialogs.h" | |
74 | |
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
75 #define SAME_STREAMTYPE (STREAMTYPE_DUMMY - 1) |
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34393
diff
changeset
|
76 |
23077 | 77 int guiWinID = 0; |
78 | |
79 char *skinName = NULL; | |
80 char *codecname = NULL; | |
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 */ |
35521 | 99 static char *unix_name (char *win_filename) |
34393
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 |
35521 | 105 if (*win_filename && (win_filename[1] == ':')) |
34393
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"); |
35521 | 108 wchar_conv = MultiByteToWideChar(CP_UNIXCP, 0, win_filename, -1, NULL, 0); |
34393
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)); |
35521 | 116 MultiByteToWideChar(CP_UNIXCP, 0, win_filename, -1, ntpath, wchar_conv); |
34393
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); |
35521 | 119 win_filename = unix_filename; |
34393
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 |
35521 | 125 return win_filename; |
34393
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); | |
35510 | 186 guiPlaylist(GUI_PLAYLIST_ADD, playtree, mconfig, 0); |
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 | |
35452 | 223 uiSetFile(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; |
35431 | 300 abs_seek_pos = SEEK_ABSOLUTE | SEEK_FACTOR; |
23077 | 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(); |
35430
2d55540614a9
Move uiProcessNextInPlaylist to the guiInfo structure.
ib
parents:
35376
diff
changeset
|
367 guiInfo.PlaylistNext = 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; | |
35452 | 424 uiSetFile(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; | |
35452 | 444 uiSetFile(NULL, mygui->playlist->tracks[(mygui->playlist->current)--]->filename, |
34075 | 445 STREAMTYPE_FILE); |
23077 | 446 break; |
447 } | |
448 mygui->startplay(mygui); | |
449 } | |
450 | |
35968 | 451 void uiSetFile(const char *dir, const 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__ |
35510 | 461 // When the GUI receives the files to be played in guiPlaylist(), |
462 // 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 { | |
35501 | 487 fullscreen = FALSE; |
23077 | 488 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; |
489 } else { | |
35501 | 490 fullscreen = TRUE; |
23077 | 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 { | |
35501 | 510 gtkAutoSyncOn = TRUE; |
23077 | 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 { |
36779 | 559 int idata = (intptr_t) data; |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
560 stream_t *stream = data; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26457
diff
changeset
|
561 #ifdef CONFIG_DVDREAD |
33730 | 562 dvd_priv_t *dvdp; |
23077 | 563 #endif |
35501 | 564 if(!mygui || !mygui->skin) return FALSE; |
23077 | 565 |
33555 | 566 if(guiInfo.mpcontext) |
23077 | 567 { |
33555 | 568 audio_out = mpctx_get_audio_out(guiInfo.mpcontext); |
569 video_out = mpctx_get_video_out(guiInfo.mpcontext); | |
570 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
571 playtree = mpctx_get_playtree_iter(guiInfo.mpcontext); | |
23077 | 572 } |
573 | |
33726 | 574 switch (what) |
23077 | 575 { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
576 case GUI_PREPARE: |
23077 | 577 { |
34052 | 578 audio_id = -1; |
579 video_id = -1; | |
580 dvdsub_id = -1; | |
581 vobsub_id = -1; | |
582 stream_cache_size = -1; | |
583 autosync = 0; | |
584 force_fps = 0; | |
35501 | 585 if(!mygui->playlist->tracks) return FALSE; |
34391 | 586 switch(guiInfo.StreamType) |
587 { | |
588 case STREAMTYPE_FILE: | |
589 case STREAMTYPE_STREAM: | |
35452 | 590 uiSetFile(NULL, mygui->playlist->tracks[mygui->playlist->current]->filename, SAME_STREAMTYPE); |
34391 | 591 guiInfo.Track = mygui->playlist->current + 1; |
592 break; | |
593 case STREAMTYPE_DVD: | |
594 { | |
595 char tmp[512]; | |
35168 | 596 #ifdef CONFIG_DVDREAD |
34391 | 597 dvd_chapter = guiInfo.Chapter; |
598 dvd_angle = guiInfo.Angle; | |
35168 | 599 #endif |
34391 | 600 sprintf(tmp,"dvd://%d", guiInfo.Track); |
35452 | 601 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
34391 | 602 break; |
603 } | |
604 } | |
35501 | 605 guiInfo.VideoWindow = TRUE; |
34610 | 606 if(gtkAONorm) listRepl(&af_cfg.list, "volnorm", "volnorm"); |
34052 | 607 if(gtkAOExtraStereo) |
608 { | |
609 char *name = malloc(12 + 20 + 1); | |
610 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
611 name[12 + 20] = 0; | |
34610 | 612 listRepl(&af_cfg.list, "extrastereo", name); |
34052 | 613 free(name); |
614 } | |
615 if(gtkCacheOn) stream_cache_size = gtkCacheSize; | |
616 if(gtkAutoSyncOn) autosync = gtkAutoSync; | |
33555 | 617 guiInfo.NewPlay = 0; |
23077 | 618 break; |
619 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
620 case GUI_SET_AUDIO: |
23077 | 621 { |
35501 | 622 if (data && !guiInfo.sh_video) guiInfo.VideoWindow = FALSE; |
34697 | 623 if(IsWindowVisible(mygui->videowindow) && !guiInfo.VideoWindow) |
624 ShowWindow(mygui->videowindow, SW_HIDE); | |
23077 | 625 break; |
626 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
627 case GUI_SET_CONTEXT: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
628 guiInfo.mpcontext = data; |
23077 | 629 break; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
630 case GUI_SET_VIDEO: |
23077 | 631 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
632 guiInfo.sh_video = data; |
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
633 if (data) |
23077 | 634 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33781
diff
changeset
|
635 sh_video_t *sh = data; |
23077 | 636 codecname = sh->codec->name; |
637 | |
34697 | 638 /* we have video, show the video window */ |
639 if(!IsWindowVisible(mygui->videowindow) || IsIconic(mygui->videowindow)) | |
640 ShowWindow(mygui->videowindow, SW_SHOWNORMAL); | |
23077 | 641 if(WinID == -1) |
34697 | 642 update_videowindow(); |
23077 | 643 |
644 } | |
645 break; | |
646 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
647 case GUI_SETUP_VIDEO_WINDOW: |
23077 | 648 { |
33901 | 649 guiInfo.VideoWidth = vo_dwidth; |
650 guiInfo.VideoHeight = vo_dheight; | |
23077 | 651 |
34697 | 652 video_aspect = (float)guiInfo.VideoWidth/guiInfo.VideoHeight; |
23077 | 653 if(WinID != -1) |
34697 | 654 update_videowindow(); |
23077 | 655 break; |
656 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
657 case GUI_SET_STREAM: |
23077 | 658 { |
33555 | 659 guiInfo.StreamType = stream->type; |
23077 | 660 switch(stream->type) |
661 { | |
662 case STREAMTYPE_DVD: | |
34451
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
663 guiInfo.Tracks = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
664 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
|
665 guiInfo.Chapters = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
666 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
|
667 guiInfo.Angles = 0; |
19277315b8c6
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34406
diff
changeset
|
668 stream_control(stream, STREAM_CTRL_GET_NUM_ANGLES, &guiInfo.Angles); |
36430
08f21a09a545
Don't discard current DVD track information without cause.
ib
parents:
36294
diff
changeset
|
669 if (stream_control(stream, STREAM_CTRL_GET_CURRENT_TITLE, &guiInfo.Track) == STREAM_OK) |
08f21a09a545
Don't discard current DVD track information without cause.
ib
parents:
36294
diff
changeset
|
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_STATE: |
23077 | 689 { |
36779 | 690 guiInfo.Playing = idata; |
33555 | 691 switch (guiInfo.Playing) |
23077 | 692 { |
33614 | 693 case GUI_PLAY: |
23077 | 694 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
695 guiInfo.Playing = GUI_PLAY; |
23077 | 696 break; |
697 } | |
33614 | 698 case GUI_STOP: |
23077 | 699 { |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
700 guiInfo.Playing = GUI_STOP; |
23077 | 701 if(movie_aspect >= 0) |
702 movie_aspect = -1; | |
34697 | 703 update_videowindow(); |
23077 | 704 break; |
705 } | |
33614 | 706 case GUI_PAUSE: |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
707 guiInfo.Playing = GUI_PAUSE; |
23077 | 708 break; |
709 } | |
710 break; | |
711 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
712 case GUI_RUN_COMMAND: |
23077 | 713 { |
36779 | 714 mp_msg(MSGT_GPLAYER,MSGL_V, "cmd: %d\n", idata); |
23077 | 715 /* MPlayer asks us to quit */ |
36779 | 716 switch(idata) |
23077 | 717 { |
31312
0b7792622c88
Remove Gui-specific slave commands and associated key-bindings and other code.
reimar
parents:
30901
diff
changeset
|
718 case MP_CMD_VO_FULLSCREEN: |
33555 | 719 uiFullScreen(); |
23077 | 720 break; |
721 case MP_CMD_QUIT: | |
722 { | |
723 mygui->uninit(mygui); | |
33770 | 724 nfree(mygui); |
30558 | 725 exit_player(EXIT_QUIT); |
35501 | 726 return TRUE; |
23077 | 727 } |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
728 case MP_CMD_PLAY_TREE_STEP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
729 guiSetEvent(evNext); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
730 break; |
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(evPrev); |
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_STOP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
735 guiSetEvent(evStop); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
736 break; |
23077 | 737 default: |
738 break; | |
739 } | |
740 break; | |
741 } | |
34339 | 742 case GUI_RUN_MESSAGE: |
743 break; | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
744 case GUI_SET_MIXER: |
23077 | 745 { |
746 if(audio_out) | |
747 { | |
748 /* Some audio_out drivers do not support balance e.g. dsound */ | |
749 /* FIXME this algo is not correct */ | |
750 float l, r; | |
751 mixer_getvolume(mixer, &l, &r); | |
33555 | 752 guiInfo.Volume = (r > l ? r : l); /* max(r,l) */ |
23077 | 753 if (r != l) |
33555 | 754 guiInfo.Balance = ((r-l) + 100.0f) * 0.5f; |
23077 | 755 else |
33555 | 756 guiInfo.Balance = 50.0f; |
23077 | 757 } |
758 break; | |
759 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
760 case GUI_END_FILE: |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
761 { |
35330 | 762 guiInfo.sh_video = NULL; |
763 | |
35430
2d55540614a9
Move uiProcessNextInPlaylist to the guiInfo structure.
ib
parents:
35376
diff
changeset
|
764 if(!guiInfo.PlaylistNext && guiInfo.Playing) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
765 { |
35501 | 766 guiInfo.PlaylistNext = TRUE; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
767 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
768 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
769 |
35430
2d55540614a9
Move uiProcessNextInPlaylist to the guiInfo structure.
ib
parents:
35376
diff
changeset
|
770 if(guiInfo.PlaylistNext && guiInfo.Playing && |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
771 (mygui->playlist->current < (mygui->playlist->trackcount - 1)) && |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
772 guiInfo.StreamType != STREAMTYPE_DVD && |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
773 guiInfo.StreamType != STREAMTYPE_DVDNAV) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
774 { |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
775 /* we've finished this file, reset the aspect */ |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
776 if(movie_aspect >= 0) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
777 movie_aspect = -1; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
778 |
35501 | 779 guiInfo.PlaylistNext = TRUE; |
33890 | 780 guiInfo.NewPlay = GUI_FILE_NEW; |
35452 | 781 uiSetFile(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
|
782 //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
|
783 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
784 |
33894 | 785 if(guiInfo.NewPlay == GUI_FILE_NEW) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
786 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
787 |
33897 | 788 guiInfo.ElapsedTime = 0; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
789 guiInfo.Position = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
790 guiInfo.AudioChannels = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
791 |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
792 guiInfo.Track = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
793 guiInfo.Chapter = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33791
diff
changeset
|
794 guiInfo.Angle = 1; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
795 |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
796 if (mygui->playlist->current == (mygui->playlist->trackcount - 1)) |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
797 mygui->playlist->current = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
798 |
35501 | 799 fullscreen = FALSE; |
34999 | 800 if(style == (WS_VISIBLE | WS_POPUP)) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
801 { |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
802 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; |
34697 | 803 SetWindowLong(mygui->videowindow, GWL_STYLE, style); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
804 } |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
805 gui(GUI_SET_STATE, (void *) GUI_STOP); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
806 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33691
diff
changeset
|
807 } |
23077 | 808 default: |
33726 | 809 mp_msg(MSGT_GPLAYER, MSGL_ERR, "[GUI] GOT UNHANDLED EVENT %i\n", what); |
23077 | 810 } |
35501 | 811 return TRUE; |
23077 | 812 } |
813 | |
814 /* This function adds/inserts one file into the gui playlist */ | |
35376 | 815 static int import_file_into_gui(char *pathname, int insert) |
23077 | 816 { |
35521 | 817 char file[MAX_PATH]; |
818 char *filepart = file; | |
23077 | 819 |
35376 | 820 if (strstr(pathname, "://")) |
23077 | 821 { |
35376 | 822 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding special %s\n", pathname); |
823 mygui->playlist->add_track(mygui->playlist, pathname, NULL, NULL, 0); | |
23077 | 824 return 1; |
825 } | |
35521 | 826 if (GetFullPathName(pathname, MAX_PATH, file, &filepart)) |
23077 | 827 { |
35521 | 828 if (!(GetFileAttributes(file) & FILE_ATTRIBUTE_DIRECTORY)) |
23077 | 829 { |
35521 | 830 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding filename: %s - fullpath: %s\n", filepart, file); |
831 mygui->playlist->add_track(mygui->playlist, file, NULL, filepart, 0); | |
23077 | 832 return 1; |
833 } | |
834 else | |
35521 | 835 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Cannot add %s\n", file); |
23077 | 836 } |
837 | |
838 return 0; | |
839 } | |
840 | |
35512 | 841 int guiPlaylist (int what, play_tree_t *playtree, m_config_t *config, int enqueue) |
35510 | 842 { |
35512 | 843 play_tree_iter_t *pt_iter = NULL; |
35520
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
844 char *file; |
35510 | 845 int added = FALSE; |
846 | |
847 switch (what) | |
848 { | |
35511 | 849 /* This function imports the initial playtree (based on cmd-line files) into the gui playlist |
850 by either: | |
851 - overwriting gui pl (enqueue=0) */ | |
852 case GUI_PLAYLIST_INIT: | |
23077 | 853 |
35511 | 854 if(!mygui) guiInit(); |
23077 | 855 |
35512 | 856 if((pt_iter = pt_iter_create(&playtree, config))) |
35511 | 857 { |
35520
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
858 while ((file = pt_iter_get_next_file(pt_iter)) != NULL) |
35511 | 859 { |
35520
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
860 if (parse_filename(file, playtree, config, 0)) |
35511 | 861 added = TRUE; |
35520
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
862 else if (import_file_into_gui(file, 0)) /* Add it to end of list */ |
35511 | 863 added = TRUE; |
864 } | |
865 } | |
866 guiInfo.PlaylistNext = TRUE; | |
23077 | 867 |
35511 | 868 if (added) |
869 { | |
870 mygui->playlist->current = 0; | |
871 uiSetFile(NULL, mygui->playlist->tracks[0]->filename, STREAMTYPE_FILE); | |
872 } | |
34084 | 873 |
35511 | 874 if (enqueue) filename = NULL; |
34084 | 875 |
35511 | 876 break; |
23077 | 877 |
35511 | 878 /* This function imports and inserts an playtree, that is created "on the fly", for example by |
879 parsing some MOV-Reference-File; or by loading an playlist with "File Open" | |
880 The file which contained the playlist is thereby replaced with it's contents. */ | |
35510 | 881 case GUI_PLAYLIST_ADD: |
23077 | 882 |
35512 | 883 if((pt_iter = pt_iter_create(&playtree, config))) |
35511 | 884 { |
35520
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
885 while ((file = pt_iter_get_next_file(pt_iter)) != NULL) |
ecbaf301748f
Don't unnecessarily use global MPlayer variable filename in Win32 GUI.
ib
parents:
35512
diff
changeset
|
886 if (import_file_into_gui(file, 1)) /* insert it into the list and set plCurrent = new item */ |
35511 | 887 added = TRUE; |
35512 | 888 pt_iter_destroy(&pt_iter); |
35511 | 889 } |
35510 | 890 |
35511 | 891 break; |
35510 | 892 } |
893 | |
35502 | 894 return added; |
23077 | 895 } |
896 | |
34697 | 897 static int update_videowindow(void) |
23077 | 898 { |
899 int x,y; | |
900 RECT rd; | |
901 WINDOWPOS wp; | |
902 | |
34697 | 903 if(!video_window) |
23077 | 904 { |
33567 | 905 WinID = -1; |
23077 | 906 |
34697 | 907 if(IsWindowVisible(mygui->videowindow) && guiInfo.sh_video && guiInfo.Playing) |
23077 | 908 { |
34697 | 909 ShowWindow(mygui->videowindow, SW_HIDE); |
23077 | 910 return 0; |
911 } | |
33901 | 912 else if(!guiInfo.VideoWindow) |
23077 | 913 return 0; |
34697 | 914 else ShowWindow(mygui->videowindow, SW_SHOW); |
23077 | 915 } |
916 | |
917 /* we've come out of fullscreen at the end of file */ | |
34697 | 918 if((!IsWindowVisible(mygui->videowindow) || IsIconic(mygui->videowindow)) && guiInfo.VideoWindow) |
919 ShowWindow(mygui->videowindow, SW_SHOWNORMAL); | |
23077 | 920 |
921 /* get our current window coordinates */ | |
34697 | 922 GetWindowRect(mygui->videowindow, &rd); |
23077 | 923 |
924 x = rd.left; | |
925 y = rd.top; | |
926 | |
34697 | 927 /* restore video window position when coming out of fullscreen */ |
23077 | 928 if(x <= 0) x = old_rect.left; |
929 if(y <= 0) y = old_rect.top; | |
930 | |
33555 | 931 if(!guiInfo.Playing) |
23077 | 932 { |
933 window *desc = NULL; | |
34996
ebcc17a3c165
Fix compiler warnings (comparison between signed and unsigned).
ib
parents:
34697
diff
changeset
|
934 unsigned int i; |
23077 | 935 |
936 for (i=0; i<mygui->skin->windowcount; i++) | |
34697 | 937 if(mygui->skin->windows[i]->type == wiVideo) |
23077 | 938 desc = mygui->skin->windows[i]; |
939 | |
940 rd.right = rd.left+desc->base->bitmap[0]->width; | |
941 rd.bottom = rd.top+desc->base->bitmap[0]->height; | |
34697 | 942 video_aspect = (float)(rd.right-rd.left)/(rd.bottom-rd.top); |
23077 | 943 } |
944 else | |
945 { | |
33901 | 946 rd.right = rd.left+guiInfo.VideoWidth; |
947 rd.bottom = rd.top+guiInfo.VideoHeight; | |
23077 | 948 |
949 if (movie_aspect > 0.0) // forced aspect from the cmdline | |
34697 | 950 video_aspect = movie_aspect; |
23077 | 951 } |
952 | |
953 | |
954 AdjustWindowRect(&rd, WS_OVERLAPPEDWINDOW | WS_SIZEBOX, 0); | |
34697 | 955 SetWindowPos(mygui->videowindow, 0, x, y, rd.right-rd.left, rd.bottom-rd.top, SWP_NOOWNERZORDER); |
23077 | 956 |
34697 | 957 wp.hwnd = mygui->videowindow; |
23077 | 958 wp.x = rd.left; |
959 wp.y = rd.top; | |
960 wp.cx = rd.right-rd.left; | |
961 wp.cy = rd.bottom-rd.top; | |
962 wp.flags = SWP_NOOWNERZORDER | SWP_SHOWWINDOW; | |
963 | |
964 /* erase the bitmap image if there's video */ | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
965 if(guiInfo.Playing != GUI_STOP && guiInfo.sh_video) |
34697 | 966 SendMessage(mygui->videowindow, WM_ERASEBKGND, (WPARAM)GetDC(mygui->videowindow), 0); |
23077 | 967 |
968 /* reset the window aspect */ | |
34697 | 969 SendMessage(mygui->videowindow, WM_WINDOWPOSCHANGED, 0, (LPARAM)&wp); |
23077 | 970 return 0; |
971 } |