SDL_cdrom.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:6k
源码类别:

流媒体/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_cdrom.h,v 1.3 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* This is the CD-audio control API for Simple DirectMedia Layer */
  23. #ifndef _SDL_cdrom_h
  24. #define _SDL_cdrom_h
  25. #include "SDL_types.h"
  26. #include "begin_code.h"
  27. /* Set up for C function definitions, even when using C++ */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /* In order to use these functions, SDL_Init() must have been called
  32.    with the SDL_INIT_CDROM flag.  This causes SDL to scan the system
  33.    for CD-ROM drives, and load appropriate drivers.
  34. */
  35. /* The maximum number of CD-ROM tracks on a disk */
  36. #define SDL_MAX_TRACKS 99
  37. /* The types of CD-ROM track possible */
  38. #define SDL_AUDIO_TRACK 0x00
  39. #define SDL_DATA_TRACK 0x04
  40. /* The possible states which a CD-ROM drive can be in. */
  41. typedef enum {
  42. CD_TRAYEMPTY,
  43. CD_STOPPED,
  44. CD_PLAYING,
  45. CD_PAUSED,
  46. CD_ERROR = -1
  47. } CDstatus;
  48. /* Given a status, returns true if there's a disk in the drive */
  49. #define CD_INDRIVE(status) ((int)status > 0)
  50. typedef struct {
  51. Uint8 id; /* Track number */
  52. Uint8 type; /* Data or audio track */
  53. Uint16 unused;
  54. Uint32 length; /* Length, in frames, of this track */
  55. Uint32 offset; /* Offset, in frames, from start of disk */
  56. } SDL_CDtrack;
  57. /* This structure is only current as of the last call to SDL_CDStatus() */
  58. typedef struct SDL_CD {
  59. int id; /* Private drive identifier */
  60. CDstatus status; /* Current drive status */
  61. /* The rest of this structure is only valid if there's a CD in drive */
  62. int numtracks; /* Number of tracks on disk */
  63. int cur_track; /* Current track position */
  64. int cur_frame; /* Current frame offset within current track */
  65. SDL_CDtrack track[SDL_MAX_TRACKS+1];
  66. } SDL_CD;
  67. /* Conversion functions from frames to Minute/Second/Frames and vice versa */
  68. #define CD_FPS 75
  69. #define FRAMES_TO_MSF(f, M,S,F) {
  70. int value = f;
  71. *(F) = value%CD_FPS;
  72. value /= CD_FPS;
  73. *(S) = value%60;
  74. value /= 60;
  75. *(M) = value;
  76. }
  77. #define MSF_TO_FRAMES(M, S, F) ((M)*60*CD_FPS+(S)*CD_FPS+(F))
  78. /* CD-audio API functions: */
  79. /* Returns the number of CD-ROM drives on the system, or -1 if
  80.    SDL_Init() has not been called with the SDL_INIT_CDROM flag.
  81.  */
  82. extern DECLSPEC int SDLCALL SDL_CDNumDrives(void);
  83. /* Returns a human-readable, system-dependent identifier for the CD-ROM.
  84.    Example:
  85. "/dev/cdrom"
  86. "E:"
  87. "/dev/disk/ide/1/master"
  88. */
  89. extern DECLSPEC const char * SDLCALL SDL_CDName(int drive);
  90. /* Opens a CD-ROM drive for access.  It returns a drive handle on success,
  91.    or NULL if the drive was invalid or busy.  This newly opened CD-ROM
  92.    becomes the default CD used when other CD functions are passed a NULL
  93.    CD-ROM handle.
  94.    Drives are numbered starting with 0.  Drive 0 is the system default CD-ROM.
  95. */
  96. extern DECLSPEC SDL_CD * SDLCALL SDL_CDOpen(int drive);
  97. /* This function returns the current status of the given drive.
  98.    If the drive has a CD in it, the table of contents of the CD and current
  99.    play position of the CD will be stored in the SDL_CD structure.
  100. */
  101. extern DECLSPEC CDstatus SDLCALL SDL_CDStatus(SDL_CD *cdrom);
  102. /* Play the given CD starting at 'start_track' and 'start_frame' for 'ntracks'
  103.    tracks and 'nframes' frames.  If both 'ntrack' and 'nframe' are 0, play 
  104.    until the end of the CD.  This function will skip data tracks.
  105.    This function should only be called after calling SDL_CDStatus() to 
  106.    get track information about the CD.
  107.    For example:
  108. // Play entire CD:
  109. if ( CD_INDRIVE(SDL_CDStatus(cdrom)) )
  110. SDL_CDPlayTracks(cdrom, 0, 0, 0, 0);
  111. // Play last track:
  112. if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) {
  113. SDL_CDPlayTracks(cdrom, cdrom->numtracks-1, 0, 0, 0);
  114. }
  115. // Play first and second track and 10 seconds of third track:
  116. if ( CD_INDRIVE(SDL_CDStatus(cdrom)) )
  117. SDL_CDPlayTracks(cdrom, 0, 0, 2, 10);
  118.    This function returns 0, or -1 if there was an error.
  119. */
  120. extern DECLSPEC int SDLCALL SDL_CDPlayTracks(SDL_CD *cdrom,
  121. int start_track, int start_frame, int ntracks, int nframes);
  122. /* Play the given CD starting at 'start' frame for 'length' frames.
  123.    It returns 0, or -1 if there was an error.
  124. */
  125. extern DECLSPEC int SDLCALL SDL_CDPlay(SDL_CD *cdrom, int start, int length);
  126. /* Pause play -- returns 0, or -1 on error */
  127. extern DECLSPEC int SDLCALL SDL_CDPause(SDL_CD *cdrom);
  128. /* Resume play -- returns 0, or -1 on error */
  129. extern DECLSPEC int SDLCALL SDL_CDResume(SDL_CD *cdrom);
  130. /* Stop play -- returns 0, or -1 on error */
  131. extern DECLSPEC int SDLCALL SDL_CDStop(SDL_CD *cdrom);
  132. /* Eject CD-ROM -- returns 0, or -1 on error */
  133. extern DECLSPEC int SDLCALL SDL_CDEject(SDL_CD *cdrom);
  134. /* Closes the handle for the CD-ROM drive */
  135. extern DECLSPEC void SDLCALL SDL_CDClose(SDL_CD *cdrom);
  136. /* Ends C function definitions when using C++ */
  137. #ifdef __cplusplus
  138. }
  139. #endif
  140. #include "close_code.h"
  141. #endif /* _SDL_video_h */