X-Git-Url: http://git.subgeniuskitty.com/screensavers/.git/blobdiff_plain/d87b1e06771aeb63ff43f5a289b19563d9af0eb0..5923644e9538d96dfdcaba6f76b3f9f903da071c:/hacks/NEDsim/NEDsim.c diff --git a/hacks/NEDsim/NEDsim.c b/hacks/NEDsim/NEDsim.c index 73c72f9..2d78973 100644 --- a/hacks/NEDsim/NEDsim.c +++ b/hacks/NEDsim/NEDsim.c @@ -4,11 +4,6 @@ // TODO: // - Write a brief description of the machine being simulated. Only one thread, reduced RAM, no meaningful console when running as screensaver, etc. -// CLI Flags: -// -path-to-aout-binary -// -path-to-font-file -// -speed - // Ideas for sample programs to include: // - Build list of integers on the stack (DUP, IM_1, ADD). // - Calculate prime numbers, placing them on the stack. @@ -715,8 +710,15 @@ NEDsim_init(Display * dpy, Window win) nedsim->delay = get_integer_resource(nedsim->dpy, "delay", "Integer"); nedsim->delay *= 1000; /* Turn milliseconds into microseconds. */ - // TODO: Read in the a.out file. This should be done in the simulator's init function call? - nedsim->nedstate = init_simulator(); + // Load the program file specified by the user or, if none is specified, + // randomly select one of the included programs. + char * input_file = get_string_resource(nedsim->dpy, "binary", "String"); + if (input_file == NULL) { + // TODO: Need to include some default programs and randomly select one to load into RAM. + nedsim->nedstate = init_simulator("./test.out"); + } else { + nedsim->nedstate = init_simulator(input_file); + } nedsim->gc = XCreateGC(nedsim->dpy, nedsim->win, GCForeground, &gcv); @@ -805,6 +807,7 @@ static const char * NEDsim_defaults[] = { static XrmOptionDescRec NEDsim_options[] = { { "-delay", ".delay", XrmoptionSepArg, 0 }, + { "-binary", ".binary", XrmoptionSepArg, 0 }, { 0, 0, 0, 0 } };