summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2018-07-01 21:37:41 -0400
committerGraham Northup <grissess@nexusg.org>2018-07-01 21:37:41 -0400
commita2d24ef36dd6c4197b1306a84eec4fb290d0d5ce (patch)
tree59c63edb720b95d50ed14fb13b861acc06632a99 /src/main.rs
parent22cb7d7cbcacbfe3a7d3a2d454e6b8cf49ae989c (diff)
Partial commit toward IV/seq implementation!
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 6aacda1..e7c1e99 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,4 @@
-use std::{io, env, thread, iter, time, mem};
+use std::{io, env, thread, iter, time, mem, ffi};
use std::io::*;
use std::fs::*;
use std::net::*;
@@ -20,12 +20,26 @@ use synfone::lang::*;
use synfone::proto::*;
use synfone::client::*;
+fn main() {
+ let cmd = env::args_os().nth(1).expect("Please pass a command as the first argument; use `help` as a command for more information.");
+ let cmds = cmd.into_string().expect("Couldn't parse command");
+
+ let new_args: Vec<ffi::OsString> = env::args_os().skip(1).collect();
+
+ match &*cmds {
+ "help" => eprintln!("TODO! Commands are help, client."),
+ "client" => main_client(new_args),
+ _ => eprintln!("Unknown command; `help` for help."),
+ }
+}
+
+
const GFX: bool = false;
-fn main() {
+fn main_client(args: Vec<ffi::OsString>) {
let env = Environment::default();
- let mut genfile = File::open(env::args_os().nth(1).expect("Need first argument to be a file with a generator vector")).expect("Failed to open file");
+ let mut genfile = File::open(args.iter().nth(1).expect("Need first argument to be a file with a generator vector")).expect("Failed to open file");
let mut genstr = String::new();
genfile.read_to_string(&mut genstr);