rust/lib-hedgewars-engine/src/render/gear.rs
author alfadur
Sat, 03 Aug 2019 01:13:45 +0300
changeset 15286 16bd389fc735
parent 15190 e2adb40c7988
child 15288 0f734fa371e1
permissions -rw-r--r--
ship the atlas to the gpu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
     1
use super::{atlas::AtlasCollection, gl::Texture2D};
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
     2
use crate::render::camera::Camera;
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
     3
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
     4
use integral_geometry::{Rect, Size};
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
     5
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
     6
use crate::render::atlas::SpriteIndex;
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
     7
use png::{ColorType, Decoder, DecodingError};
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
     8
use std::path::PathBuf;
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
     9
use std::{
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    10
    collections::HashMap,
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    11
    ffi::OsString,
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    12
    fs::{read_dir, File},
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    13
    io,
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    14
    io::BufReader,
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    15
    path::Path,
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    16
};
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    17
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    18
pub struct GearRenderer {
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    19
    atlas: AtlasCollection,
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    20
}
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    21
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    22
struct SpriteData {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    23
    size: Size,
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    24
    filename: PathBuf,
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    25
}
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    26
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    27
const ATLAS_SIZE: Size = Size::square(2024);
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    28
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    29
impl GearRenderer {
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    30
    pub fn new() -> Self {
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    31
        let mut lookup = Vec::with_capacity(2048);
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    32
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    33
        let mut atlas = AtlasCollection::new(ATLAS_SIZE);
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    34
        let mut sprites = load_sprites(Path::new("../../share/hedgewars/Data/Graphics/"))
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    35
            .expect("Unable to load Graphics");
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    36
        let max_size = sprites
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    37
            .iter()
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    38
            .fold(Size::EMPTY, |size, sprite| size.join(sprite.size));
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    39
        for sprite in sprites.drain(..) {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    40
            lookup.push((sprite.filename, atlas.insert_sprite(sprite.size).unwrap()));
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    41
        }
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    42
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    43
        println!(
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    44
            "Filled atlas with {} sprites:\n{}",
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    45
            sprites.len(),
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    46
            atlas.used_space()
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    47
        );
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    48
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    49
        let texture = Texture2D::new(max_size, gl::RGBA8, gl::LINEAR);
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    50
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    51
        let mut pixels = Vec::with_capacity(max_size.area()).into_boxed_slice();
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    52
        for (path, sprite_index) in lookup.drain(..) {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    53
            if let Some((atlas_index, rect)) = atlas.get_rect(sprite_index) {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    54
                load_sprite_pixels(&path, &mut pixels[..]).expect("Unable to load Graphics");
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    55
                texture.update(rect, &pixels, 0, gl::RGBA, gl::UNSIGNED_BYTE);
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    56
            }
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    57
        }
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    58
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    59
        Self { atlas }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    60
    }
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    61
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    62
    pub fn render(&mut self, camera: &Camera) {
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    63
        let projection = camera.projection();
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    64
    }
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14729
diff changeset
    65
}
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    66
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    67
fn load_sprite_pixels(path: &Path, buffer: &mut [u8]) -> io::Result<()> {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    68
    let decoder = Decoder::new(BufReader::new(File::open(path)?));
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    69
    let (info, mut reader) = decoder.read_info()?;
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    70
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    71
    let size = Size::new(info.width as usize, info.height as usize);
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    72
    reader.next_frame(buffer)?;
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    73
    Ok(())
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    74
}
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    75
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    76
fn load_sprite_size(path: &Path) -> io::Result<Size> {
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    77
    let decoder = Decoder::new(BufReader::new(File::open(path)?));
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    78
    let (info, mut reader) = decoder.read_info()?;
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    79
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    80
    let size = Size::new(info.width as usize, info.height as usize);
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    81
    Ok(size)
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    82
}
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    83
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    84
fn load_sprites(path: &Path) -> io::Result<Vec<SpriteData>> {
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    85
    let mut result = vec![];
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    86
    for file in read_dir(path)? {
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    87
        let file = file?;
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    88
        if let Some(extension) = file.path().extension() {
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    89
            if extension == "png" {
15286
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    90
                let path = file.path();
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    91
                let sprite = load_sprite_size(&path)?;
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    92
                result.push(SpriteData {
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    93
                    size: sprite,
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    94
                    filename: path,
16bd389fc735 ship the atlas to the gpu
alfadur
parents: 15190
diff changeset
    95
                });
15190
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    96
            }
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    97
        }
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    98
    }
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
    99
    Ok(result)
e2adb40c7988 fill the atlas with sprites
alfadur
parents: 15120
diff changeset
   100
}