-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmain.c
241 lines (202 loc) · 6.3 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#include "globals.h"
#include "main_menu.h"
#include "error_handlers.h"
#include "options.h"
#include "serial.h"
#include "version.h"
#include <string.h>
#if (defined ALLEGRO_DOS) || (defined ALLEGRO_STATICLINK)
// Define color depths used
BEGIN_COLOR_DEPTH_LIST
COLOR_DEPTH_8
END_COLOR_DEPTH_LIST
#endif
#define WINDOW_TITLE "ScanTool.net " SCANTOOL_VERSION_EX_STR
int display_mode;
char *code_defs_file_name;
char log_file_name[20];
char comm_log_file_name[20];
DATAFILE *datafile;
void write_log(const char *log_string)
{
FILE *logfile = NULL;
logfile = stderr;
if (logfile == NULL)
fatal_error("Could not open log file for writing!");
fprintf(logfile, "%s", log_string);
if (logfile != stderr)
fclose(logfile);
}
void write_comm_log(const char *marker, const char *data)
{
FILE *logfile = NULL;
if (!log_comms)
return;
logfile = fopen(comm_log_file_name, "a");
if (logfile == NULL)
fatal_error("Could not open comm log file for writing!");
fprintf(logfile, "[%s]%s[/%s]\n", marker, data, marker);
fclose(logfile);
}
static void init()
{
char temp_buf[256];
char *data_file_name;
/* initialize some varaibles with default values */
if (asprintf(&options_file_name, "%s/.scantoolrc", getenv("HOME")) < 0) {
perror("asprintf");
exit(1);
}
data_file_name = strdup("/usr/share/scantool/scantool.dat");
code_defs_file_name = strdup("/usr/share/scantool/codes.dat");
datafile = NULL;
comport.status = NOT_OPEN;
display_mode = 0;
set_uformat(U_ASCII);
/* initialize hardware */
write_log("Initializing Allegro... ");
if (allegro_init() != 0)
fatal_error("Cannot initialize the graphical subsystem. Check DISPLAY variable.");
write_log("OK\n");
set_window_title(WINDOW_TITLE);
write_log("Installing Timers... ");
if (install_timer() != 0)
{
write_log("Error!\n");
fatal_error("Error installing timers");
}
write_log("OK\n");
write_log("Installing Keyboard... ");
install_keyboard();
write_log("OK\n");
write_log("Installing Mouse... ");
install_mouse();
write_log("OK\n");
/* load options from file, the defaults will be automatically substituted if file does not exist */
write_log("Loading Preferences... ");
set_config_file(options_file_name);
/* if config file doesn't exist or is of an incorrect version */
if (strcmp(get_config_string(NULL, "version", ""), SCANTOOL_VERSION_STR) != 0)
{
/* update config file */
remove(options_file_name);
set_config_file(options_file_name);
set_config_string(NULL, "version", SCANTOOL_VERSION_STR);
load_program_options(); // Load defaults
save_program_options();
}
else
load_program_options();
write_log("OK\n");
display_mode |= FULLSCREEN_MODE_SUPPORTED;
write_log("Trying Windowed Graphics Mode... ");
if (set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0) == 0)
{
display_mode |= WINDOWED_MODE_SUPPORTED;
write_log("OK\n");
}
else
{
display_mode &= ~(WINDOWED_MODE_SUPPORTED | WINDOWED_MODE_SET);
write_log(allegro_error);
}
if (!(display_mode & WINDOWED_MODE_SET))
{
write_log("Trying Full Screen Graphics Mode... ");
if (set_gfx_mode(GFX_AUTODETECT_FULLSCREEN, 640, 480, 0, 0) == 0)
{
display_mode |= FULLSCREEN_MODE_SUPPORTED;
write_log("OK\n");
}
else
{
display_mode &= ~FULLSCREEN_MODE_SUPPORTED;
write_log(allegro_error);
}
}
if (!(display_mode & (FULLSCREEN_MODE_SUPPORTED | WINDOWED_MODE_SUPPORTED)))
fatal_error(allegro_error);
else if ((display_mode & WINDOWED_MODE_SUPPORTED) && !(display_mode & FULLSCREEN_MODE_SUPPORTED))
{
set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0);
display_mode &= WINDOWED_MODE_SET;
}
write_log("Loading Data File... ");
packfile_password(PASSWORD);
datafile = load_datafile(data_file_name);
packfile_password(NULL);
if (datafile == NULL)
{
sprintf(temp_buf, "Error loading %s!\n", data_file_name);
write_log(temp_buf);
fatal_error(temp_buf);
}
write_log("OK\n");
set_pallete(datafile[MAIN_PALETTE].dat);
font = datafile[ARIAL12_FONT].dat;
gui_fg_color = C_BLACK; // set the foreground color
gui_bg_color = C_WHITE; // set the background color
gui_mg_color = C_GRAY; // set the disabled color
set_mouse_sprite(NULL); // make mouse use current palette
write_log("Initializing Serial Module... ");
serial_module_init();
write_log("OK\n");
sprintf(temp_buf, "Opening comport %i... ", comport.number);
write_log(temp_buf);
/* try opening comport (comport.status will be set) */
open_comport();
switch (comport.status)
{
case READY:
write_log("OK:");
write_log(comport.name);
write_log("\n");
break;
case NOT_OPEN:
write_log("Error!\n");
break;
default:
write_log("Unknown Status\n");
break;
}
}
static void shut_down()
{
//clean up
flush_config_file();
write_log("Shutting Down Serial Module... ");
serial_module_shutdown();
write_log("OK\n");
write_log("Unloading Data File... ");
unload_datafile(datafile);
write_log("OK\n");
write_log("Shutting Down Allegro... ");
allegro_exit();
write_log("OK\n");
}
int main()
{
char temp_buf[64];
time_t current_time;
time(¤t_time); // get current time, and store it in current_time
strcpy(temp_buf, ctime(¤t_time));
temp_buf[strlen(temp_buf)-1] = 0;
strcpy(log_file_name, "log.txt");
remove(log_file_name);
write_log(temp_buf);
write_log("\n");
strcpy(comm_log_file_name, "comm_log.txt");
remove(comm_log_file_name);
write_comm_log("START_TIME", temp_buf);
sprintf(temp_buf, "Version: %s for %s\n", SCANTOOL_VERSION_STR, SCANTOOL_PLATFORM_STR);
write_log(temp_buf);
write_log("\nInitializing All Modules...\n---------------------------\n");
init(); // initialize everything
write_log("\nDisplaying Main Menu...\n-----------------------\n");
display_main_menu(); // dislpay main menu
write_log("Main Menu Closed\n");
write_log("\nShutting Down All Modules...\n----------------------------\n");
shut_down(); // shut down
return EXIT_SUCCESS;
}
END_OF_MAIN()