]> icculus.org git repositories - taylor/freespace2.git/blob - src/globalincs/version.cpp
added copyright header
[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
47 // ----------------------------------------------------------------------------------------------------------------
48 // VERSION DEFINES/VARS
49 //
50
51 // Defines
52 #define VER(major, minor, build) (100*100*major+100*minor+build)
53 #define MAX_LINE_LENGTH 512
54
55
56 // ----------------------------------------------------------------------------------------------------------------
57 // VERSION FUNCTIONS
58 //
59
60 // compare version against the passed version file
61 // returns -1 on error 
62 // 0 if we are an earlier version
63 // 1 if same version
64 // 2 if higher version
65 // fills in user version and latest version values if non-NULL
66 int version_compare(char *filename, int *u_major, int *u_minor, int *u_build, int *l_major, int *l_minor, int *l_build)
67 {       
68         int usr_major, usr_minor, usr_build;
69         int latest_major, latest_minor, latest_build;
70
71         // open file and try backup, if needed
72         FILE *f = fopen(filename, "rt");
73         if (f == NULL) {
74                 return -1;              
75         }
76
77         // grab the last line in file which isn't empty and isn't a comment
78         char buffer[MAX_LINE_LENGTH+1], verbuffer[MAX_LINE_LENGTH+1];
79
80         strcpy(verbuffer,"");
81         strcpy(buffer,"");
82         while ( !feof(f) ) {
83                 // Read the line into a temporary buffer
84                 fgets(buffer, MAX_LINE_LENGTH, f);
85
86                 // take the \n off the end of it
87                 if (strlen(buffer)>0 && buffer[strlen(buffer) - 1] == '\n')
88                         buffer[strlen(buffer) - 1] = 0;
89
90                 // If the line is empty, go get another one
91                 if (strlen(buffer) == 0) continue;
92
93                 // If the line is a comment, go get another one
94                 if (buffer[0] == VERSION_FILE_COMMENT_CHAR) continue;
95
96                 // Line is a good one, so save it...
97                 strcpy(verbuffer, buffer);
98         }
99         fclose(f);
100
101         // Make sure a version line was found
102         if (strlen(verbuffer) == 0) {
103                 // MessageBox(XSTR("Couldn't parse Version file!", 1205), XSTR("Error!", 1185), MB_OK|MB_ICONERROR);
104                 return -1;
105         }
106
107         // Get the most up to date Version number
108         latest_major = 0;
109         latest_minor = 0;
110         latest_build = 0;
111
112         if (sscanf(verbuffer, "%i %i %i", &latest_major, &latest_minor, &latest_build) != 3) {
113                 // MessageBox(XSTR("Couldn't parse Version file!", 1205), XSTR("Error!", 1185), MB_OK|MB_ICONERROR);
114                 return -1;
115         }
116
117         // retrieve the user's current version
118         usr_major = os_config_read_uint("Version", "Major", 0);
119         usr_minor = os_config_read_uint("Version", "Minor", 0);
120         usr_build = os_config_read_uint("Version", "Build", 0);
121         
122         // Make sure the user's Version was found!
123         if ( VER(usr_major, usr_minor, usr_build) == 0 ) {
124                 // 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);
125                 return NO_VERSION_IN_REGISTRY;
126         }       
127
128         // stuff outgoing values
129         if(u_major != NULL){
130                 *u_major = usr_major;
131         }
132         if(u_minor != NULL){
133                 *u_minor = usr_minor;
134         }
135         if(u_build != NULL){
136                 *u_build = usr_build;
137         }
138         if(l_major != NULL){
139                 *l_major = latest_major;
140         }
141         if(l_minor != NULL){
142                 *l_minor = latest_minor;
143         }
144         if(l_build != NULL){
145                 *l_build = latest_build;
146         }
147
148         // check to see if the user's version is up to date
149         if (VER(usr_major, usr_minor, usr_build) < VER(latest_major, latest_minor, latest_build)) {             
150                 return 0;
151         }
152
153         // same version
154         return 1;
155 }
156