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
// Enable modules based on target architecture
#[cfg(all(feature = "opengl", not(target_arch = "wasm32")))]
mod native;

#[cfg(all(feature = "opengl", not(target_arch = "wasm32")))]
pub use native::*;

#[cfg(all(feature = "opengl", target_arch = "wasm32"))]
mod wasm;

#[cfg(all(feature = "opengl", target_arch = "wasm32"))]
pub use wasm::*;

#[cfg(all(feature = "opengl", not(target_arch = "wasm32")))]
mod framebuffer;

#[cfg(all(feature = "opengl", not(target_arch = "wasm32")))]
pub use framebuffer::Framebuffer;

#[cfg(not(feature = "opengl"))]
#[cfg(all(not(feature = "opengl"), feature = "curses"))]
mod curses;

#[cfg(all(not(feature = "opengl"), feature = "curses"))]
pub use curses::*;

#[cfg(not(feature = "opengl"))]
#[cfg(all(not(feature = "opengl"), feature = "crossterm"))]
mod crossterm_be;

#[cfg(all(not(feature = "opengl"), feature = "crossterm"))]
pub use crossterm_be::*;

#[cfg(all(
    not(feature = "opengl"),
    any(feature = "amethyst_engine_vulkan", feature = "amethyst_engine_metal")
))]
mod amethyst_be;

#[cfg(all(
    not(feature = "opengl"),
    any(feature = "amethyst_engine_vulkan", feature = "amethyst_engine_metal")
))]
pub use amethyst_be::*;

#[cfg(all(
    not(feature = "opengl"),
    not(feature = "curses"),
    not(feature = "amethyst_engine_vulkan"),
    not(feature = "amethyst_engine_metal"),
    not(feature = "crossterm")
))]
mod dummy;

#[cfg(all(
    not(feature = "opengl"),
    not(feature = "curses"),
    not(feature = "amethyst_engine_vulkan"),
    not(feature = "amethyst_engine_metal"),
    not(feature = "crossterm")
))]
pub use dummy::*;

pub use shader::Shader;

/// Provides a base abstract platform for BTerm to run on, with specialized content.
pub struct BTermPlatform {
    pub platform: PlatformGL,
}

#[allow(dead_code)]
fn convert_fps_to_wait(frame_sleep_time: Option<f32>) -> Option<u64> {
    match frame_sleep_time {
        None => None,
        Some(f) => Some((f * 1000.0) as u64),
    }
}

#[allow(dead_code)]
#[inline(always)]
fn fps_sleep(frame_sleep_time: Option<u64>, now: &std::time::Instant, prev_ms: u128) {
    if let Some(wait_time) = frame_sleep_time {
        let execute_ms = now.elapsed().as_millis() as u64 - prev_ms as u64;
        if execute_ms < wait_time {
            std::thread::sleep(std::time::Duration::from_millis(wait_time - execute_ms));
        }
    }
}