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
extern crate getopts;
extern crate gl;
extern crate glfw;
extern crate image;
extern crate log;
extern crate nalgebra;
extern crate ncollide3d;
extern crate rodio;
extern crate serde;
extern crate serde_derive;
extern crate simplelog;
extern crate time;
extern crate tobj;
use simplelog::*;
mod game;
mod grphx;
mod physx;
mod util;
use game::{Game, GameSettings};
use getopts::{Matches, Options};
use log::info;
use std::env;
use std::fs::File;
fn main() {
let args: Vec<String> = env::args().collect();
let opts = get_options();
let matches = match opts.parse(&args[1..]) {
Ok(m) => m,
Err(f) => panic!(f.to_string()),
};
let game_settings = match_options(&matches);
let terminal_log_config = Config {
time: Some(Level::Error),
target: Some(Level::Debug),
..Default::default()
};
let write_log_config = Config {
time: Some(Level::Error),
target: Some(Level::Debug),
..Default::default()
};
CombinedLogger::init(vec![
TermLogger::new(LevelFilter::Warn, terminal_log_config).unwrap(),
WriteLogger::new(LevelFilter::Debug, write_log_config, File::create("carambolage.log").unwrap()),
]).unwrap();
info!("Starting game");
let mut game = Game::new(game_settings);
game.run();
}
fn get_options() -> Options {
let mut opts = Options::new();
opts.optflag("f", "fullscreen", "enable fullscreen mode");
opts.optopt("w", "width", "set window width", "WIDTH");
opts.optopt("h", "height", "set window height", "HEIGHT");
opts.optopt("m", "map", "set the startup map by id", "MAP");
opts.optopt("l", "limit-fps", "set max game fps [0 = unlimited]", "FPS");
opts
}
fn match_options(matches: &Matches) -> GameSettings {
let mut game_settings: GameSettings = Default::default();
if matches.opt_present("f") {
game_settings.is_fullscreen = true;
}
if matches.opt_str("w").is_some() {
game_settings.width = matches.opt_str("w").unwrap().parse().unwrap();
}
if matches.opt_str("h").is_some() {
game_settings.height = matches.opt_str("h").unwrap().parse().unwrap();
}
if matches.opt_str("m").is_some() {
game_settings.map = matches.opt_str("m").unwrap().parse().unwrap();
}
if matches.opt_str("l").is_some() {
game_settings.fps = matches.opt_str("l").unwrap().parse().unwrap();
}
game_settings
}
#[cfg(test)]
mod tests {
use super::{get_options, match_options};
#[test]
fn arguments() {
let args: Vec<String> = vec![
String::from("./carambolage"),
String::from("-f"),
String::from("-w"),
String::from("1920"),
String::from("-h"),
String::from("1080"),
String::from("-l"),
String::from("60"),
String::from("-m"),
String::from("1"),
];
let opts = get_options();
let matches = match opts.parse(&args[1..]) {
Ok(m) => m,
Err(f) => panic!(f.to_string()),
};
let settings = match_options(&matches);
assert_eq!(settings.is_fullscreen, true);
assert_eq!(settings.width, 1920);
assert_eq!(settings.height, 1080);
assert_eq!(settings.fps, 60);
assert_eq!(settings.map, 1);
}
}