]> icculus.org git repositories - taylor/freespace2.git/blob - src/globalincs/version.cpp
Merge branch 'sdl2'
[taylor/freespace2.git] / src / globalincs / version.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/GlobalIncs/version.cpp $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  *
16  * $Log$
17  * Revision 1.3  2002/06/09 04:41:17  relnev
18  * added copyright header
19  *
20  * Revision 1.2  2002/05/07 03:16:45  theoddone33
21  * The Great Newline Fix
22  *
23  * Revision 1.1.1.1  2002/05/03 03:28:09  root
24  * Initial import.
25  *
26  * 
27  * 4     8/09/99 2:21p Andsager
28  * Fix patching from multiplayer direct to launcher update tab.
29  * 
30  * 3     8/06/99 3:32p Andsager
31  * Handle update when no registry is set
32  * 
33  * 2     5/19/99 4:07p Dave
34  * Moved versioning code into a nice isolated common place. Fixed up
35  * updating code on the pxo screen. Fixed several stub problems.
36  * 
37  * 1     5/18/99 4:28p Dave
38  * 
39  * $NoKeywords: $
40  */
41
42 #include <stdio.h>
43 #include <string.h>
44 #include "version.h"
45 #include "osregistry.h"
46 #include "pstypes.h"
47
48 // ----------------------------------------------------------------------------------------------------------------
49 // VERSION DEFINES/VARS
50 //
51
52 // Defines
53 #define VER(major, minor, build) (100*100*major+100*minor+build)
54 #define MAX_LINE_LENGTH 512
55
56
57 // ----------------------------------------------------------------------------------------------------------------
58 // VERSION FUNCTIONS
59 //
60
61 // compare version against the passed version file
62 // returns -1 on error 
63 // 0 if we are an earlier version
64 // 1 if same version
65 // 2 if higher version
66 // fills in user version and latest version values if non-NULL
67 int version_compare(const char *filename, int *u_major, int *u_minor, int *u_build, int *l_major, int *l_minor, int *l_build)
68 {       
69         int usr_major, usr_minor, usr_build;
70         int latest_major, latest_minor, latest_build;
71
72         // open file and try backup, if needed
73         FILE *f = fopen(filename, "rt");
74         if (f == NULL) {
75                 return -1;              
76         }
77
78         // grab the last line in file which isn't empty and isn't a comment
79         char buffer[MAX_LINE_LENGTH+1], verbuffer[MAX_LINE_LENGTH+1];
80
81         SDL_strlcpy(verbuffer, "", SDL_arraysize(verbuffer));
82         SDL_strlcpy(buffer, "", SDL_arraysize(buffer));
83         while ( !feof(f) ) {
84                 // Read the line into a temporary buffer
85                 fgets(buffer, MAX_LINE_LENGTH, f);
86
87                 // take the \n off the end of it
88                 if (strlen(buffer)>0 && buffer[strlen(buffer) - 1] == '\n')
89                         buffer[strlen(buffer) - 1] = 0;
90
91                 // If the line is empty, go get another one
92                 if (strlen(buffer) == 0) continue;
93
94                 // If the line is a comment, go get another one
95                 if (buffer[0] == VERSION_FILE_COMMENT_CHAR) continue;
96
97                 // Line is a good one, so save it...
98                 SDL_strlcpy(verbuffer, buffer, SDL_arraysize(verbuffer));
99         }
100         fclose(f);
101
102         // Make sure a version line was found
103         if (strlen(verbuffer) == 0) {
104                 // MessageBox(XSTR("Couldn't parse Version file!", 1205), XSTR("Error!", 1185), MB_OK|MB_ICONERROR);
105                 return -1;
106         }
107
108         // Get the most up to date Version number
109         latest_major = 0;
110         latest_minor = 0;
111         latest_build = 0;
112
113         if (sscanf(verbuffer, "%i %i %i", &latest_major, &latest_minor, &latest_build) != 3) {
114                 // MessageBox(XSTR("Couldn't parse Version file!", 1205), XSTR("Error!", 1185), MB_OK|MB_ICONERROR);
115                 return -1;
116         }
117
118         // retrieve the user's current version
119         usr_major = os_config_read_uint("Version", "Major", 0);
120         usr_minor = os_config_read_uint("Version", "Minor", 0);
121         usr_build = os_config_read_uint("Version", "Build", 0);
122         
123         // Make sure the user's Version was found!
124         if ( VER(usr_major, usr_minor, usr_build) == 0 ) {
125                 // MessageBox(XSTR("The Freespace 2 Auto-Update program could not find your current game Version in the system registry.\n\nThis should be corrected by starting up the game, exiting the game, and then running the Auto-Update program.", 1206), XSTR("Unable to Determine User's Version", 1207), MB_OK|MB_ICONERROR);
126                 return NO_VERSION_IN_REGISTRY;
127         }       
128
129         // stuff outgoing values
130         if(u_major != NULL){
131                 *u_major = usr_major;
132         }
133         if(u_minor != NULL){
134                 *u_minor = usr_minor;
135         }
136         if(u_build != NULL){
137                 *u_build = usr_build;
138         }
139         if(l_major != NULL){
140                 *l_major = latest_major;
141         }
142         if(l_minor != NULL){
143                 *l_minor = latest_minor;
144         }
145         if(l_build != NULL){
146                 *l_build = latest_build;
147         }
148
149         // check to see if the user's version is up to date
150         if (VER(usr_major, usr_minor, usr_build) < VER(latest_major, latest_minor, latest_build)) {             
151                 return 0;
152         }
153
154         // same version
155         return 1;
156 }
157