]> icculus.org git repositories - divverent/darkplaces.git/blob - cd_win.c
fix rtlights cubemapname load/save
[divverent/darkplaces.git] / cd_win.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // Quake is a trademark of Id Software, Inc., (c) 1996 Id Software, Inc. All
21 // rights reserved.
22
23 #include <windows.h>
24
25 #include "quakedef.h"
26
27
28 extern  HWND    mainwindow;
29
30 UINT    wDeviceID;
31
32 void CDAudio_SysEject(void)
33 {
34         DWORD   dwReturn;
35
36         if ((dwReturn = mciSendCommand(wDeviceID, MCI_SET, MCI_SET_DOOR_OPEN, (DWORD)NULL)))
37                 Con_DPrintf("MCI_SET_DOOR_OPEN failed (%i)\n", dwReturn);
38 }
39
40
41 void CDAudio_SysCloseDoor(void)
42 {
43         DWORD   dwReturn;
44
45         if ((dwReturn = mciSendCommand(wDeviceID, MCI_SET, MCI_SET_DOOR_CLOSED, (DWORD)NULL)))
46                 Con_DPrintf("MCI_SET_DOOR_CLOSED failed (%i)\n", dwReturn);
47 }
48
49 int CDAudio_SysGetAudioDiskInfo(void)
50 {
51         DWORD                           dwReturn;
52         MCI_STATUS_PARMS        mciStatusParms;
53
54         mciStatusParms.dwItem = MCI_STATUS_READY;
55         dwReturn = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM | MCI_WAIT, (DWORD) (LPVOID) &mciStatusParms);
56         if (dwReturn)
57         {
58                 Con_DPrintf("CDAudio: drive ready test - get status failed\n");
59                 return -1;
60         }
61         if (!mciStatusParms.dwReturn)
62         {
63                 Con_DPrintf("CDAudio: drive not ready\n");
64                 return -1;
65         }
66
67         mciStatusParms.dwItem = MCI_STATUS_NUMBER_OF_TRACKS;
68         dwReturn = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM | MCI_WAIT, (DWORD) (LPVOID) &mciStatusParms);
69         if (dwReturn)
70         {
71                 Con_DPrintf("CDAudio: get tracks - status failed\n");
72                 return -1;
73         }
74         if (mciStatusParms.dwReturn < 1)
75         {
76                 Con_DPrintf("CDAudio: no music tracks\n");
77                 return -1;
78         }
79
80         return mciStatusParms.dwReturn;
81 }
82
83
84 int CDAudio_SysPlay (qbyte track)
85 {
86         DWORD                           dwReturn;
87         MCI_PLAY_PARMS          mciPlayParms;
88         MCI_STATUS_PARMS        mciStatusParms;
89
90         // don't try to play a non-audio track
91         mciStatusParms.dwItem = MCI_CDA_STATUS_TYPE_TRACK;
92         mciStatusParms.dwTrack = track;
93         dwReturn = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM | MCI_TRACK | MCI_WAIT, (DWORD) (LPVOID) &mciStatusParms);
94         if (dwReturn)
95         {
96                 Con_DPrintf("MCI_STATUS failed (%i)\n", dwReturn);
97                 return -1;
98         }
99         if (mciStatusParms.dwReturn != MCI_CDA_TRACK_AUDIO)
100         {
101                 Con_Printf("CDAudio: track %i is not audio\n", track);
102                 return -1;
103         }
104
105         if (cdPlaying)
106                 CDAudio_Stop();
107
108         // get the length of the track to be played
109         mciStatusParms.dwItem = MCI_STATUS_LENGTH;
110         mciStatusParms.dwTrack = track;
111         dwReturn = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM | MCI_TRACK | MCI_WAIT, (DWORD) (LPVOID) &mciStatusParms);
112         if (dwReturn)
113         {
114                 Con_DPrintf("MCI_STATUS failed (%i)\n", dwReturn);
115                 return -1;
116         }
117
118         mciPlayParms.dwFrom = MCI_MAKE_TMSF(track, 0, 0, 0);
119         mciPlayParms.dwTo = (mciStatusParms.dwReturn << 8) | track;
120         mciPlayParms.dwCallback = (DWORD)mainwindow;
121         dwReturn = mciSendCommand(wDeviceID, MCI_PLAY, MCI_NOTIFY | MCI_FROM | MCI_TO, (DWORD)(LPVOID) &mciPlayParms);
122         if (dwReturn)
123         {
124                 Con_DPrintf("CDAudio: MCI_PLAY failed (%i)\n", dwReturn);
125                 return -1;
126         }
127
128         return 0;
129 }
130
131
132 int CDAudio_SysStop (void)
133 {
134         DWORD   dwReturn;
135
136         if ((dwReturn = mciSendCommand(wDeviceID, MCI_STOP, 0, (DWORD)NULL)))
137         {
138                 Con_DPrintf("MCI_STOP failed (%i)", dwReturn);
139                 return -1;
140         }
141         return 0;
142 }
143
144 int CDAudio_SysPause (void)
145 {
146         DWORD                           dwReturn;
147         MCI_GENERIC_PARMS       mciGenericParms;
148
149         mciGenericParms.dwCallback = (DWORD)mainwindow;
150         if ((dwReturn = mciSendCommand(wDeviceID, MCI_PAUSE, 0, (DWORD)(LPVOID) &mciGenericParms)))
151         {
152                 Con_DPrintf("MCI_PAUSE failed (%i)", dwReturn);
153                 return -1;
154         }
155         return 0;
156 }
157
158
159 int CDAudio_SysResume (void)
160 {
161         DWORD                   dwReturn;
162         MCI_PLAY_PARMS  mciPlayParms;
163
164         mciPlayParms.dwFrom = MCI_MAKE_TMSF(cdPlayTrack, 0, 0, 0);
165         mciPlayParms.dwTo = MCI_MAKE_TMSF(cdPlayTrack + 1, 0, 0, 0);
166         mciPlayParms.dwCallback = (DWORD)mainwindow;
167         dwReturn = mciSendCommand(wDeviceID, MCI_PLAY, MCI_TO | MCI_NOTIFY, (DWORD)(LPVOID) &mciPlayParms);
168         if (dwReturn)
169         {
170                 Con_DPrintf("CDAudio: MCI_PLAY failed (%i)\n", dwReturn);
171                 return -1;
172         }
173         return 0;       
174 }
175
176 LONG CDAudio_MessageHandler (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
177 {
178         if (lParam != (LPARAM)wDeviceID)
179                 return 1;
180
181         switch (wParam)
182         {
183                 case MCI_NOTIFY_SUCCESSFUL:
184                         if (cdPlaying)
185                         {
186                                 cdPlaying = false;
187                                 if (cdPlayLooping)
188                                         CDAudio_Play(cdPlayTrack, true);
189                         }
190                         break;
191
192                 case MCI_NOTIFY_ABORTED:
193                 case MCI_NOTIFY_SUPERSEDED:
194                         break;
195
196                 case MCI_NOTIFY_FAILURE:
197                         Con_DPrintf("MCI_NOTIFY_FAILURE\n");
198                         CDAudio_Stop ();
199                         cdValid = false;
200                         break;
201
202                 default:
203                         Con_DPrintf("Unexpected MM_MCINOTIFY type (%i)\n", wParam);
204                         return 1;
205         }
206
207         return 0;
208 }
209
210
211 int CDAudio_SysUpdate (void)
212 {
213         return 0;
214 }
215
216 void CDAudio_SysInit (void)
217 {
218 }
219
220 int CDAudio_SysStartup (void)
221 {
222         DWORD   dwReturn;
223         MCI_OPEN_PARMS  mciOpenParms;
224         MCI_SET_PARMS   mciSetParms;
225
226         mciOpenParms.lpstrDeviceType = "cdaudio";
227         if ((dwReturn = mciSendCommand(0, MCI_OPEN, MCI_OPEN_TYPE | MCI_OPEN_SHAREABLE, (DWORD) (LPVOID) &mciOpenParms)))
228         {
229                 Con_Printf("CDAudio_Init: MCI_OPEN failed (%i)\n", dwReturn);
230                 return -1;
231         }
232         wDeviceID = mciOpenParms.wDeviceID;
233
234         // Set the time format to track/minute/second/frame (TMSF).
235         mciSetParms.dwTimeFormat = MCI_FORMAT_TMSF;
236         if ((dwReturn = mciSendCommand(wDeviceID, MCI_SET, MCI_SET_TIME_FORMAT, (DWORD)(LPVOID) &mciSetParms)))
237         {
238                 Con_Printf("MCI_SET_TIME_FORMAT failed (%i)\n", dwReturn);
239                 mciSendCommand(wDeviceID, MCI_CLOSE, 0, (DWORD)NULL);
240                 return -1;
241         }
242
243         return 0;
244 }
245
246 void CDAudio_SysShutdown (void)
247 {
248         if (mciSendCommand(wDeviceID, MCI_CLOSE, MCI_WAIT, (DWORD)NULL))
249                 Con_DPrintf("CDAudio_Shutdown: MCI_CLOSE failed\n");
250 }