ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/Installer/trunk/source/globals.h
Revision: 487
Committed: Wed Dec 30 01:51:38 2009 UTC (15 years, 9 months ago) by iritscen
Content type: text/x-chdr
File size: 2882 byte(s)
Log Message:
Adding update feature; moving/neatening some code; adding globals.h

File Contents

# Content
1 /***************************************************************************\
2 | Project: AE Installer |
3 | By: Gumby & Iritscen |
4 | File: Globals.h |
5 | Function: Contains most of the includes needed by the source, and some |
6 | defines, structs, and prototypes that help bridge certain |
7 | source files that need to talk to each other. |
8 | Created: 04/11/2009 21:05:00 |
9 \***************************************************************************/
10
11
12 #pragma mark INCLUDES
13 #include <fstream>
14 #include <string>
15 #include <stdio.h>
16 #include <iostream>
17 #include <cctype>
18 #include <vector>
19 #include <errno.h>
20 #include <sstream>
21 #include "boost/thread.hpp"
22 #include "boost/tokenizer.hpp"
23 #include "boost/lexical_cast.hpp" // int -> string
24 #include "boost/algorithm/string.hpp"
25 #include "boost/filesystem.hpp" // includes all needed Boost.Filesystem declarations
26 using namespace boost::filesystem;
27 using namespace std;
28 #ifdef WIN32
29 #include <windows.h>
30 #else // assume we're on Mac
31 #include <stdlib.h>
32 #include <dirent.h>
33 #endif
34 #include "wx/wxprec.h"
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38 #ifndef WX_PRECOMP
39 #include "wx/wx.h"
40 #endif
41
42 #pragma mark DEFINES
43 #define INSTALLER_VERSION "1.1" // only place we need to change this
44 #define UPDATE_LOG_READ_ERR -1
45 #define UPDATE_INST_REPL_ERR -2
46 #define UPDATE_MNTH_REQD_ERR -3
47 #define UPDATE_NO_UPD_AVAIL 0
48 #define UPDATE_SIMP_AVAIL 1
49 #define UPDATE_GLOB_AVAIL 2
50 #define UPDATE_INST_AVAIL 3
51 #define UPDATE_CONT_UPD 4
52
53 #pragma mark STRUCTS
54 struct ModPackage
55 {
56 bool isInstalled; // replace with function
57 string name;
58 string modStringName;
59 int modStringVersion;
60 bool hasOnis;
61 bool hasDeltas;
62 bool hasBSL;
63 bool hasAddon;
64 bool hasDats;
65 string category;
66 string creator;
67 bool isEngine;
68 string readme;
69 bool globalNeeded;
70 ModPackage();
71
72 bool operator < (const ModPackage &fs) const
73 { return (name < fs.name);}
74
75 bool operator > (const ModPackage &fs) const
76 { return (name > fs.name);}
77
78 bool operator == (const ModPackage &fs) const
79 { return (name == fs.name);}
80 };
81
82 struct Install_info_cfg
83 {
84 string AEVersion, InstallerVersion, DaodanVersion, OniSplitVersion, WinGUIVersion, MacGUIVersion;
85 bool patch, globalizationRequired;
86 vector<string> deleteList;
87
88 Install_info_cfg();
89 };
90
91
92 #pragma mark PROTOTYPES
93 void recompileAll(vector<string>);
94 int globalizeData(void);
95 bool CheckForGlobalization(bool);
96 int GetUpdateStatus(Install_info_cfg *, Install_info_cfg *, bool *);
97 bool ProcessInstallerUpdate(Install_info_cfg *, Install_info_cfg *);
98 bool ProcessAEUpdate(Install_info_cfg *, Install_info_cfg *, bool *);
99 void callRefreshMods(void);
100 string escapePath(string input);
101 void setStatusArea(string);
102 void setProgressBar(int);
103 void copy_directory(const path &from_dir_ph, const path &to_dir_ph);
104 void copy(const path &from_file_ph, const path &to_file_ph);