summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/src/lib.rs
blob: 2812ed96b35fa74a99ef38d6923119fc5bbd06f3 (plain)
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
mod client_logger;
mod webhogg_exception;
mod page;
mod canvas;
mod app;

use wasm_bindgen::prelude::*;
use app::WebhoggApplication as App;

#[macro_use]
extern crate log;

fn run_application() {
    match App::new().and_then(|app| app.run()) {
        Ok(_) => info!("program terminated successfully"),
        Err(e) => error!("program terminated with failure > {}", e)
    }
}

#[wasm_bindgen]
pub fn game_logic_entry() {
    client_logger::init_logger();

    info!("game logic initialisation");
}

#[wasm_bindgen]
pub fn graphics_entry() {
    client_logger::init_logger();

    info!("graphics initialisation");
}

pub fn entry2() {
    client_logger::init_logger();

    info!("begin running wasm application");

    run_application()
}