SDL_syscdrom.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_syscdrom.c,v 1.4 2002/04/22 21:38:02 wmay Exp $";
  21. #endif
  22. /* Functions for system-level CD-ROM audio control */
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #include <windows.h>
  26. #include <mmsystem.h>
  27. #include "SDL_error.h"
  28. #include "SDL_cdrom.h"
  29. #include "SDL_syscdrom.h"
  30. /* This really broken?? */
  31. #define BROKEN_MCI_PAUSE /* Pausing actually stops play -- Doh! */
  32. /* The maximum number of CD-ROM drives we'll detect (Don't change!) */
  33. #define MAX_DRIVES 26
  34. /* A list of available CD-ROM drives */
  35. static char *SDL_cdlist[MAX_DRIVES];
  36. static MCIDEVICEID SDL_mciID[MAX_DRIVES];
  37. #ifdef BROKEN_MCI_PAUSE
  38. static int SDL_paused[MAX_DRIVES];
  39. #endif
  40. /* The system-dependent CD control functions */
  41. static const char *SDL_SYS_CDName(int drive);
  42. static int SDL_SYS_CDOpen(int drive);
  43. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
  44. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
  45. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
  46. static int SDL_SYS_CDPause(SDL_CD *cdrom);
  47. static int SDL_SYS_CDResume(SDL_CD *cdrom);
  48. static int SDL_SYS_CDStop(SDL_CD *cdrom);
  49. static int SDL_SYS_CDEject(SDL_CD *cdrom);
  50. static void SDL_SYS_CDClose(SDL_CD *cdrom);
  51. /* Add a CD-ROM drive to our list of valid drives */
  52. static void AddDrive(char *drive)
  53. {
  54. int i;
  55. if ( SDL_numcds < MAX_DRIVES ) {
  56. /* Add this drive to our list */
  57. i = SDL_numcds;
  58. SDL_cdlist[i] = (char *)malloc(strlen(drive)+1);
  59. if ( SDL_cdlist[i] == NULL ) {
  60. SDL_OutOfMemory();
  61. return;
  62. }
  63. strcpy(SDL_cdlist[i], drive);
  64. ++SDL_numcds;
  65. #ifdef CDROM_DEBUG
  66.   fprintf(stderr, "Added CD-ROM drive: %sn", drive);
  67. #endif
  68. }
  69. }
  70. int  SDL_SYS_CDInit(void)
  71. {
  72. /* checklist: Drive 'A' - 'Z' */
  73. int i;
  74. char drive[4];
  75. /* Fill in our driver capabilities */
  76. SDL_CDcaps.Name = SDL_SYS_CDName;
  77. SDL_CDcaps.Open = SDL_SYS_CDOpen;
  78. SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
  79. SDL_CDcaps.Status = SDL_SYS_CDStatus;
  80. SDL_CDcaps.Play = SDL_SYS_CDPlay;
  81. SDL_CDcaps.Pause = SDL_SYS_CDPause;
  82. SDL_CDcaps.Resume = SDL_SYS_CDResume;
  83. SDL_CDcaps.Stop = SDL_SYS_CDStop;
  84. SDL_CDcaps.Eject = SDL_SYS_CDEject;
  85. SDL_CDcaps.Close = SDL_SYS_CDClose;
  86. /* Scan the system for CD-ROM drives */
  87. for ( i='A'; i<='Z'; ++i ) {
  88. sprintf(drive, "%c:\", i);
  89. if ( GetDriveType(drive) == DRIVE_CDROM ) {
  90. AddDrive(drive);
  91. }
  92. }
  93. memset(SDL_mciID, 0, sizeof(SDL_mciID));
  94. return(0);
  95. }
  96. /* General ioctl() CD-ROM command function */
  97. static int SDL_SYS_CDioctl(int id, UINT msg, DWORD flags, void *arg)
  98. {
  99. MCIERROR mci_error;
  100. mci_error = mciSendCommand(SDL_mciID[id], msg, flags, (DWORD)arg);
  101. if ( mci_error ) {
  102. char error[256];
  103. mciGetErrorString(mci_error, error, 256);
  104. SDL_SetError("mciSendCommand() error: %s", error);
  105. }
  106. return(!mci_error ? 0 : -1);
  107. }
  108. static const char *SDL_SYS_CDName(int drive)
  109. {
  110. return(SDL_cdlist[drive]);
  111. }
  112. static int SDL_SYS_CDOpen(int drive)
  113. {
  114. MCI_OPEN_PARMS mci_open;
  115. MCI_SET_PARMS mci_set;
  116. char device[3];
  117. DWORD flags;
  118. /* Open the requested device */
  119. mci_open.lpstrDeviceType = (LPCSTR) MCI_DEVTYPE_CD_AUDIO;
  120. device[0] = *SDL_cdlist[drive];
  121. device[1] = ':';
  122. device[2] = '';
  123. mci_open.lpstrElementName = device;
  124. flags =
  125.   (MCI_OPEN_TYPE|MCI_OPEN_SHAREABLE|MCI_OPEN_TYPE_ID|MCI_OPEN_ELEMENT);
  126. if ( SDL_SYS_CDioctl(0, MCI_OPEN, flags, &mci_open) < 0 ) {
  127. flags &= ~MCI_OPEN_SHAREABLE;
  128. if ( SDL_SYS_CDioctl(0, MCI_OPEN, flags, &mci_open) < 0 ) {
  129. return(-1);
  130. }
  131. }
  132. SDL_mciID[drive] = mci_open.wDeviceID;
  133. /* Set the minute-second-frame time format */
  134. mci_set.dwTimeFormat = MCI_FORMAT_MSF;
  135. SDL_SYS_CDioctl(drive, MCI_SET, MCI_SET_TIME_FORMAT, &mci_set);
  136. #ifdef BROKEN_MCI_PAUSE
  137. SDL_paused[drive] = 0;
  138. #endif
  139. return(drive);
  140. }
  141. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom)
  142. {
  143. MCI_STATUS_PARMS mci_status;
  144. int i, okay;
  145. DWORD flags;
  146. okay = 0;
  147. mci_status.dwItem = MCI_STATUS_NUMBER_OF_TRACKS;
  148. flags = MCI_STATUS_ITEM | MCI_WAIT;
  149. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags, &mci_status) == 0 ) {
  150. cdrom->numtracks = mci_status.dwReturn;
  151. if ( cdrom->numtracks > SDL_MAX_TRACKS ) {
  152. cdrom->numtracks = SDL_MAX_TRACKS;
  153. }
  154. /* Read all the track TOC entries */
  155. flags = MCI_STATUS_ITEM | MCI_TRACK | MCI_WAIT;
  156. for ( i=0; i<cdrom->numtracks; ++i ) {
  157. cdrom->track[i].id = i+1;
  158. mci_status.dwTrack = cdrom->track[i].id;
  159. #ifdef MCI_CDA_STATUS_TYPE_TRACK
  160. mci_status.dwItem = MCI_CDA_STATUS_TYPE_TRACK;
  161. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags,
  162. &mci_status) < 0 ) {
  163. break;
  164. }
  165. if ( mci_status.dwReturn == MCI_CDA_TRACK_AUDIO ) {
  166. cdrom->track[i].type = SDL_AUDIO_TRACK;
  167. } else {
  168. cdrom->track[i].type = SDL_DATA_TRACK;
  169. }
  170. #else
  171. cdrom->track[i].type = SDL_AUDIO_TRACK;
  172. #endif
  173. mci_status.dwItem = MCI_STATUS_POSITION;
  174. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags,
  175. &mci_status) < 0 ) {
  176. break;
  177. }
  178. cdrom->track[i].offset = MSF_TO_FRAMES(
  179. MCI_MSF_MINUTE(mci_status.dwReturn),
  180. MCI_MSF_SECOND(mci_status.dwReturn),
  181. MCI_MSF_FRAME(mci_status.dwReturn));
  182. cdrom->track[i].length = 0;
  183. if ( i > 0 ) {
  184. cdrom->track[i-1].length =
  185. cdrom->track[i].offset-
  186. cdrom->track[i-1].offset;
  187. }
  188. }
  189. if ( i == cdrom->numtracks ) {
  190. mci_status.dwTrack = cdrom->track[i - 1].id;
  191. mci_status.dwItem = MCI_STATUS_LENGTH;
  192. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags,
  193. &mci_status) == 0 ) {
  194. cdrom->track[i - 1].length = MSF_TO_FRAMES(
  195. MCI_MSF_MINUTE(mci_status.dwReturn),
  196. MCI_MSF_SECOND(mci_status.dwReturn),
  197. MCI_MSF_FRAME(mci_status.dwReturn)) + 1; /* +1 to fix */
  198. /* MCI last track length bug */
  199. /* compute lead-out offset */
  200. cdrom->track[i].offset = cdrom->track[i - 1].offset +
  201. cdrom->track[i - 1].length;
  202. cdrom->track[i].length = 0;
  203. okay = 1;
  204. }
  205. }
  206. }
  207. return(okay ? 0 : -1);
  208. }
  209. /* Get CD-ROM status */
  210. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position)
  211. {
  212. CDstatus status;
  213. MCI_STATUS_PARMS mci_status;
  214. DWORD flags;
  215. flags = MCI_STATUS_ITEM | MCI_WAIT;
  216. mci_status.dwItem = MCI_STATUS_MODE;
  217. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags, &mci_status) < 0 ) {
  218. status = CD_ERROR;
  219. } else {
  220. switch (mci_status.dwReturn) {
  221. case MCI_MODE_NOT_READY:
  222. case MCI_MODE_OPEN:
  223. status = CD_TRAYEMPTY;
  224. break;
  225. case MCI_MODE_STOP:
  226. #ifdef BROKEN_MCI_PAUSE
  227. if ( SDL_paused[cdrom->id] ) {
  228. status = CD_PAUSED;
  229. } else {
  230. status = CD_STOPPED;
  231. }
  232. #else
  233. status = CD_STOPPED;
  234. #endif /* BROKEN_MCI_PAUSE */
  235. break;
  236. case MCI_MODE_PLAY:
  237. #ifdef BROKEN_MCI_PAUSE
  238. if ( SDL_paused[cdrom->id] ) {
  239. status = CD_PAUSED;
  240. } else {
  241. status = CD_PLAYING;
  242. }
  243. #else
  244. status = CD_PLAYING;
  245. #endif /* BROKEN_MCI_PAUSE */
  246. break;
  247. case MCI_MODE_PAUSE:
  248. status = CD_PAUSED;
  249. break;
  250. default:
  251. status = CD_ERROR;
  252. break;
  253. }
  254. }
  255. if ( position ) {
  256. if ( status == CD_PLAYING || (status == CD_PAUSED) ) {
  257. mci_status.dwItem = MCI_STATUS_POSITION;
  258. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags,
  259. &mci_status) == 0 ) {
  260. *position = MSF_TO_FRAMES(
  261. MCI_MSF_MINUTE(mci_status.dwReturn),
  262. MCI_MSF_SECOND(mci_status.dwReturn),
  263. MCI_MSF_FRAME(mci_status.dwReturn));
  264. } else {
  265. *position = 0;
  266. }
  267. } else {
  268. *position = 0;
  269. }
  270. }
  271. return(status);
  272. }
  273. /* Start play */
  274. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length)
  275. {
  276. MCI_PLAY_PARMS mci_play;
  277. int m, s, f;
  278. DWORD flags;
  279. flags = MCI_FROM | MCI_TO | MCI_NOTIFY;
  280. mci_play.dwCallback = 0;
  281. FRAMES_TO_MSF(start, &m, &s, &f);
  282. mci_play.dwFrom = MCI_MAKE_MSF(m, s, f);
  283. FRAMES_TO_MSF(start+length, &m, &s, &f);
  284. mci_play.dwTo = MCI_MAKE_MSF(m, s, f);
  285. return(SDL_SYS_CDioctl(cdrom->id, MCI_PLAY, flags, &mci_play));
  286. }
  287. /* Pause play */
  288. static int SDL_SYS_CDPause(SDL_CD *cdrom)
  289. {
  290. #ifdef BROKEN_MCI_PAUSE
  291. SDL_paused[cdrom->id] = 1;
  292. #endif
  293. return(SDL_SYS_CDioctl(cdrom->id, MCI_PAUSE, MCI_WAIT, NULL));
  294. }
  295. /* Resume play */
  296. static int SDL_SYS_CDResume(SDL_CD *cdrom)
  297. {
  298. #ifdef BROKEN_MCI_PAUSE
  299. MCI_STATUS_PARMS mci_status;
  300. int okay;
  301. int flags;
  302. okay = 0;
  303. /* Play from the current play position to end of CD */
  304. flags = MCI_STATUS_ITEM | MCI_WAIT;
  305. mci_status.dwItem = MCI_STATUS_POSITION;
  306. if ( SDL_SYS_CDioctl(cdrom->id, MCI_STATUS, flags, &mci_status) == 0 ) {
  307. MCI_PLAY_PARMS mci_play;
  308. flags = MCI_FROM | MCI_NOTIFY;
  309. mci_play.dwCallback = 0;
  310. mci_play.dwFrom = mci_status.dwReturn;
  311. if (SDL_SYS_CDioctl(cdrom->id,MCI_PLAY,flags,&mci_play) == 0) {
  312. okay = 1;
  313. SDL_paused[cdrom->id] = 0;
  314. }
  315. }
  316. return(okay ? 0 : -1);
  317. #else
  318. return(SDL_SYS_CDioctl(cdrom->id, MCI_RESUME, MCI_WAIT, NULL));
  319. #endif /* BROKEN_MCI_PAUSE */
  320. }
  321. /* Stop play */
  322. static int SDL_SYS_CDStop(SDL_CD *cdrom)
  323. {
  324. return(SDL_SYS_CDioctl(cdrom->id, MCI_STOP, MCI_WAIT, NULL));
  325. }
  326. /* Eject the CD-ROM */
  327. static int SDL_SYS_CDEject(SDL_CD *cdrom)
  328. {
  329. return(SDL_SYS_CDioctl(cdrom->id, MCI_SET, MCI_SET_DOOR_OPEN, NULL));
  330. }
  331. /* Close the CD-ROM handle */
  332. static void SDL_SYS_CDClose(SDL_CD *cdrom)
  333. {
  334. SDL_SYS_CDioctl(cdrom->id, MCI_CLOSE, MCI_WAIT, NULL);
  335. }
  336. void SDL_SYS_CDQuit(void)
  337. {
  338. int i;
  339. if ( SDL_numcds > 0 ) {
  340. for ( i=0; i<SDL_numcds; ++i ) {
  341. free(SDL_cdlist[i]);
  342. }
  343. SDL_numcds = 0;
  344. }
  345. }