1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-25 12:29:34 +00:00
erc-c/src/main.c

94 lines
2.0 KiB
C
Raw Normal View History

2017-12-09 04:12:31 +00:00
/*
* main.c
*
* Here we define the main entry point for the program; we also define a
* couple of functions to run when we start (init) and finish
* (...finish).
*/
2017-11-22 05:24:51 +00:00
#include <stdio.h>
#include <stdlib.h>
2017-12-08 23:06:21 +00:00
#include <string.h>
#include <unistd.h>
2017-11-22 05:24:51 +00:00
#include "apple2.h"
2017-11-22 05:24:51 +00:00
#include "log.h"
2017-12-08 23:06:21 +00:00
#include "option.h"
2017-11-22 05:24:51 +00:00
2017-12-06 22:43:30 +00:00
/*
* This function will establish the base environment that we want to use
* while we execute.
*/
2017-11-22 05:24:51 +00:00
static void
2017-12-08 23:06:21 +00:00
init(int argc, char **argv)
2017-11-22 05:24:51 +00:00
{
2017-12-08 23:06:21 +00:00
int options_ok;
// If the option_parse() function returns zero, that means that it's
// signaled to us that we should stop now. Whether that means we are
// stopping in _error_ (bad input), or just because you asked for
// --help, is not really specified. We exit with a non-zero error
// code in any case.
options_ok = option_parse(argc, argv);
if (options_ok == 0) {
const char *err = option_get_error();
if (strlen(err) > 0) {
fprintf(stderr, "%s\n", err);
option_print_help();
}
exit(1);
}
2017-12-06 22:43:30 +00:00
// We're literally using stdout in this heavy phase of development.
log_open(stdout);
2017-11-22 05:24:51 +00:00
}
2017-12-06 22:43:30 +00:00
/*
* And this is the teardown function.
*/
2017-11-22 05:24:51 +00:00
static void
finish()
{
2017-12-08 23:09:58 +00:00
// Close any file sources we had opened
for (int i = 1; i <= OPTION_MAX_DISKS; i++) {
FILE *stream = option_get_input(i);
if (stream != NULL) {
fclose(stream);
}
}
2017-11-22 05:24:51 +00:00
log_close();
}
2017-12-06 22:43:30 +00:00
/*
* This is what will run when the program begins, if you were new to how
* C works.
*/
2017-11-22 05:24:51 +00:00
int
main(int argc, char **argv)
{
apple2 *mach;
int err;
2017-12-08 23:06:21 +00:00
init(argc, argv);
2017-11-22 05:24:51 +00:00
2017-12-06 22:43:30 +00:00
// When we exit, we want to wrap up a few loose ends. This syscall
// will ensure that `finish()` runs whether we return from main
// successfully or if we run `exit()` from elsewhere in the program.
2017-11-22 05:24:51 +00:00
atexit(finish);
mach = apple2_create();
err = apple2_boot(mach);
if (err != OK) {
fprintf(stderr, "Bootup failed!\n");
exit(1);
}
2017-12-06 22:43:30 +00:00
// ha ha ha ha #nervous #laughter
2017-12-06 22:45:16 +00:00
printf("Hello, world\n");
2017-11-22 05:24:51 +00:00
}