SDL_cdrom.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

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