]> icculus.org git repositories - taylor/freespace2.git/blob - src/network/multi_update.cpp
use a better multi_sw_ok_to_commit() check
[taylor/freespace2.git] / src / network / multi_update.cpp
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Network/multi_update.cpp $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * $Log$
16  * Revision 1.4  2005/03/31 00:04:25  taylor
17  * fix directory separator (thanks Pierre\!)
18  *
19  * Revision 1.3  2002/06/09 04:41:24  relnev
20  * added copyright header
21  *
22  * Revision 1.2  2002/05/26 20:22:48  theoddone33
23  * Most of network/ works
24  *
25  * Revision 1.1.1.1  2002/05/03 03:28:10  root
26  * Initial import.
27  * 
28  * 
29  * 9     10/14/99 3:35p Jefff
30  * new xstrs
31  * 
32  * 8     8/24/99 1:50a Dave
33  * Fixed client-side afterburner stuttering. Added checkbox for no version
34  * checking on PXO join. Made button info passing more friendly between
35  * client and server.
36  * 
37  * 7     8/22/99 1:19p Dave
38  * Fixed up http proxy code. Cleaned up scoring code. Reverse the order in
39  * which d3d cards are detected.
40  * 
41  * 6     5/19/99 4:07p Dave
42  * Moved versioning code into a nice isolated common place. Fixed up
43  * updating code on the pxo screen. Fixed several stub problems.
44  * 
45  * 5     2/04/99 6:29p Dave
46  * First full working rev of FS2 PXO support.  Fixed Glide lighting
47  * problems.
48  * 
49  * 4     11/05/98 4:18p Dave
50  * First run nebula support. Beefed up localization a bit. Removed all
51  * conditional compiles for foreign versions. Modified mission file
52  * format.
53  * 
54  * 3     10/09/98 2:57p Dave
55  * Starting splitting up OS stuff.
56  * 
57  * 2     10/07/98 10:53a Dave
58  * Initial checkin.
59  * 
60  * 1     10/07/98 10:50a Dave
61  * 
62  * 15    9/10/98 1:17p Dave
63  * Put in code to flag missions and campaigns as being MD or not in Fred
64  * and Freespace. Put in multiplayer support for filtering out MD
65  * missions. Put in multiplayer popups for warning of non-valid missions.
66  * 
67  * 14    9/09/98 5:53p Dave
68  * Put in new tracker packets in API. Change cfile to be able to checksum
69  * portions of a file.
70  * 
71  * 13    7/24/98 11:13a Allender
72  * change way that the version.nfo file is parsed so that bogus returns
73  * from the HTTP server are accurately caught
74  * 
75  * 12    7/20/98 12:51p Allender
76  * don't remove the version.nfo file if we are exiting to launcher for
77  * update.  The launcher asssumes that the file is already present.
78  * 
79  * 11    7/15/98 10:50a Allender
80  * changed web site to get version.nfo from
81  * 
82  * 10    7/15/98 10:17a Dave
83  * Made the website address lookup more robust.
84  * 
85  * 9     7/15/98 10:04a Dave
86  * Change connect() procedure so that it uses non blocking sockets and
87  * freespace doesn't "hang"
88  * 
89  * 8     7/13/98 10:30a Lawrance
90  * add index numbers for newly localized strings
91  * 
92  * 7     7/13/98 10:12a Dave
93  * Remove improperly localized strings.
94  * 
95  * 6     7/10/98 5:04p Dave
96  * Fix connection speed bug on standalone server.
97  * 
98  * 5     7/10/98 11:33a Dave
99  * Give the user extra options when the need for updating is detected on
100  * PXO screen. Send special command line arg to fslauncher.
101  * 
102  * 4     7/09/98 6:07p Dave
103  * Format the text in the error dialog better.
104  * 
105  * 3     7/09/98 6:01p Dave
106  * Firsts full version of PXO updater. Put in stub for displaying
107  * connection status.
108  * 
109  * 2     7/09/98 4:51p Dave
110  * First revision of PXO autoupdate check system.
111  * 
112  * 1     7/09/98 2:09p Dave
113  * 
114  *
115  * $NoKeywords: $
116  */
117
118 #ifndef PLAT_UNIX
119 #include <winsock2.h>
120 #endif
121 #include "multi_update.h"
122 #include "popup.h"
123 #include "gamesequence.h"
124 #include "osregistry.h"
125 #include "timer.h"
126 #include "version.h"
127 #include "inetgetfile.h"
128 #include "cfile.h"
129 #include "cfilesystem.h"
130
131 // -------------------------------------------------------------------------------------------------------------------
132 // MULTI UPDATE DEFINES/VARS
133 //
134
135 // file get object
136 InetGetFile *Multi_update_get = NULL;
137
138 // set this to be true so that game_shutdown() will fire up the launcher, then post a quit game event
139 int Multi_update_fireup_launcher_on_exit = 0;
140
141 // error code string for convenient reporting
142 char Multi_update_error_string[512];
143
144 // -------------------------------------------------------------------------------------------------------------------
145 // MULTI UPDATE FUNCTIONS
146 //
147
148 // initialize the http xfer of the version info file, return 1 on success
149 int multi_update_http_init()
150 {
151         char url_file[512] = "";
152         char local_file[MAX_PATH_LEN] = "";
153
154         // url
155         SDL_strlcpy(url_file, VERSION_URL, SDL_arraysize(url_file));
156
157         // local file
158         cf_create_default_path_string(local_file, CF_TYPE_DATA, VERSION_LOC_FNAME);
159
160         // new file     
161         Multi_update_get = new InetGetFile(url_file, local_file);
162         if(Multi_update_get == NULL){
163                 // error string
164                 SDL_strlcpy(Multi_update_error_string, XSTR("Could not get data from website", 977), SDL_arraysize(Multi_update_error_string));
165
166                 return 0;
167         }
168
169         return 1;
170 }
171
172 // do frame for the popup. returns 0 if not done yet, 1 if succeeded, 2 on error
173 int multi_update_http_do()
174 {
175         // sanity
176         if(Multi_update_get == NULL){
177                 // error string
178                 SDL_strlcpy(Multi_update_error_string, XSTR("Could not get data from website", 977), SDL_arraysize(Multi_update_error_string));
179
180                 return 2;
181         }
182
183         // error
184         if(Multi_update_get->IsFileError()){                    
185                 delete Multi_update_get;
186                 Multi_update_get = NULL;
187
188                 // error string
189                 SDL_strlcpy(Multi_update_error_string, XSTR("Could not get data from website", 977), SDL_arraysize(Multi_update_error_string));
190                 
191                 return 2;
192         }       
193
194         // done!
195         if(Multi_update_get->IsFileReceived()){
196                 delete Multi_update_get;
197                 Multi_update_get = NULL;
198                 return 1;
199         }
200         
201         // connecting, receiving
202         if(Multi_update_get->IsConnecting() || Multi_update_get->IsReceiving()){
203                 return 0;
204         }
205
206         return 0;
207 }
208
209 // close down the http xfer
210 void multi_update_http_close()
211 {       
212 }
213
214 // error verifying, prompt the user for some action
215 int multi_update_error_verifying()
216 {
217         char out_str[512];
218
219         memset(out_str, 0, 512);
220         SDL_snprintf(out_str, SDL_arraysize(out_str), "(%s)\n\n%s", Multi_update_error_string,
221                                 XSTR("There was an error verifying your version of Freespace, if you continue, you will not necessarily be up to date", 978));
222
223         switch(popup(PF_USE_AFFIRMATIVE_ICON | PF_USE_NEGATIVE_ICON, 2, XSTR("&Go back", 1524), XSTR("&Continue", 1525), out_str)){
224         // continue on in freespace like nothing happened
225         case 1:
226         case -1:
227                 return MULTI_UPDATE_CONTINUE;
228
229         // go back to the main menu
230         default:
231                 return MULTI_UPDATE_MAIN_MENU;
232         }
233 }
234
235 // check to see if the version of FS on this machine is not recent. run in a popup
236 // if the versions don't check out, bail to the launcher
237 // returns 0 if freespace should continue, 1 if freespace should go back to the main menu,
238 // and 2 if the "shutdown" event was posted
239 int multi_update_gobaby()
240 {                       
241         char msg[512] = "";
242         int ret_code;
243         int my_code = MULTI_UPDATE_MAIN_MENU;
244
245         // maybe skip
246         if ( os_config_read_uint("PXO", "SkipVerify", 0) ) {
247                 return MULTI_UPDATE_CONTINUE;
248         }
249
250         memset(Multi_update_error_string, 0, 512);      
251
252         // initialize the http connection
253         if(!multi_update_http_init()){          
254                 return multi_update_error_verifying();
255         }
256
257         // run the popup
258         extern char Multi_options_proxy[512];
259         extern ushort Multi_options_proxy_port;
260         if(strlen(Multi_options_proxy) > 0){
261                 SDL_snprintf(msg, SDL_arraysize(msg), "%s (%s : %d)", XSTR("Verifying Freespace Version",981), Multi_options_proxy, Multi_options_proxy_port);
262         } else {
263                 SDL_strlcpy(msg, XSTR("Verifying Freespace Version",981), SDL_arraysize(msg));
264         }
265         ret_code = popup_till_condition(multi_update_http_do, XSTR("Cancel",948), msg);         
266
267         // determine what to do now
268         switch(ret_code){
269         // success
270         case 1 : 
271                 // compare the versions
272                 switch(version_compare(VERSION_LOC_FNAME, NULL, NULL, NULL, NULL, NULL, NULL)){
273                 // error
274                 case -1:
275                         my_code = multi_update_error_verifying();
276                         break;
277
278                 // earlier version - need to update
279                 case 0:                 
280                         switch(popup(PF_USE_AFFIRMATIVE_ICON | PF_USE_NEGATIVE_ICON, 2, "&Update Later", "&Yes", XSTR("A new version of Freespace is available. You must update to the new version to play on PXO\n\nAuto update now?", 980))){
281                         // update later (go back to main hall for now
282                         case 0 :
283                         case -1:
284                                 my_code = MULTI_UPDATE_MAIN_MENU;                       
285                                 break;
286
287                         default:
288                                 // set things up so that the launcher is launched when Freespace is done closing
289                                 Multi_update_fireup_launcher_on_exit = 1;
290                                 gameseq_post_event(GS_EVENT_QUIT_GAME);
291
292                                 my_code = MULTI_UPDATE_SHUTTING_DOWN;                   
293                         }                               
294                         break;
295
296                 // same version or higher
297                 case 1:
298                 case 2:
299                         my_code = MULTI_UPDATE_CONTINUE;
300                         break;
301                 }
302                 break;
303
304         // error of some kind (should probably notify the user or something)
305         case 2: 
306                 my_code = multi_update_error_verifying();               
307                 break;
308
309         // this should never happen, but if it does, go back to the main menu
310         default :
311                 my_code = multi_update_error_verifying();               
312                 break;
313         }       
314
315         // close down
316         multi_update_http_close();
317         
318         return my_code;         
319 }
320