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
// Copyright 2017 Bastian Meyer
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or http://apache.org/licenses/LICENSE-2.0> or the
// MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option. This file may not be copied,
// modified, or distributed except according to those terms.

//! This is the main module of _Mief_, the _Pong_ clone.
//!
//! The entire crate is solely written as a binary and not intended to be used as a library. The purpose of this
//! documentation is therefore to be used during development of _Mief_.
//!
//! To build this documentation yourself, run
//! `cargo rustdoc -- --no-defaults --passes collapse-docs --passes unindent-comments`.

#![warn(missing_docs,
        missing_debug_implementations, missing_copy_implementations,
        trivial_casts, trivial_numeric_casts,
        unused_extern_crates, unused_import_braces, unused_qualifications, unused_results)]
#![cfg_attr(feature = "cargo-clippy", warn(cast_possible_truncation, cast_possible_wrap, cast_precision_loss,
                                           cast_sign_loss, empty_enum, enum_glob_use, if_not_else,
                                           items_after_statements, missing_docs_in_private_items, nonminimal_bool,
                                           pub_enum_variant_names, similar_names, single_match_else,
                                           stutter, used_underscore_binding, use_debug, wrong_self_convention,
                                           wrong_pub_self_convention))]

extern crate find_folder;
#[cfg(feature = "display-fps")]
extern crate fps_counter;
extern crate piston_window;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
extern crate rand;

mod application;
mod elements;
mod execution_flow;
mod color;

use application::Application;
use execution_flow::exit;

/// Run _Mief_.
fn main() {
    let mut application = match Application::new() {
        Ok(application) => application,
        Err(error) => exit::fail_from_error(error),
    };
    application.run();

    exit::succeed();
}