PlayCDTrack.htm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <html>
  2. <head>
  3. <title>Blitz3D Docs</title>
  4. <link rel=stylesheet href=../css/commands.css type=text/css>
  5. </head>
  6. <body>
  7. <h1>PlayCDTrack( track,[mode] )</h1>
  8. <h1>Parameters</h1>
  9. <table>
  10. <tr>
  11. <td>
  12. track = track number to play <br />
  13. mode = 1; play track once, 2; loop track, 3; play track to end of CD
  14. </td>
  15. </tr>
  16. </table>
  17. <h1>Description</h1>
  18. <table>
  19. <tr>
  20. <td>
  21. Plays a CD track and returns a sound channel. <br />
  22. <br />
  23. The optional mode parameter allows variations of playback. Remember, the playback happens through the CD cable inside the computer that attaches to the sound card. Many computers (for some reason), don't have this cable inside properly attached. If this is the case, you will NOT hear CD sound even though you hear other sound effects and music.
  24. </td>
  25. </tr>
  26. </table>
  27. <h1><a href=../2d_examples/PlayCDTrack.bb>Example</a></h1>
  28. <table>
  29. <tr>
  30. <td>
  31. ; PlayCDTrack example <br />
  32. <br />
  33. ; Get a track to play from user <br />
  34. track=Input$("Enter a CD track number to play:") <br />
  35. <br />
  36. ; Play the track, assign a channel - just play once <br />
  37. chnCD=PlayCDTrack(track,1) <br />
  38. <br />
  39. ; Figure out what time it is now <br />
  40. oldTime=MilliSecs() <br />
  41. ; Play until the channel is over or ESC <br />
  42. While ChannelPlaying(chnCD) And (Not KeyHit(1)) <br />
  43. ; clear and print the time elapsed <br />
  44. Cls <br />
  45. Locate 0,0 <br />
  46. Print "Time Elapsed (sec):" + ((MilliSecs()-oldTime)/1000) <br />
  47. Wend <br />
  48. <br />
  49. ; Stop the channel <br />
  50. StopChannel chnCD
  51. </td>
  52. </tr>
  53. </table>
  54. <br>
  55. <a target=_top href=../index.htm>Index</a><br>
  56. <br>
  57. Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=PlayCDTrack&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
  58. </html>