use std::ptr::null; use crate::opengl::currently_bound::CurrentlyBound; use crate::texture::{Id, Properties}; use crate::vector::Vec2; #[derive(Debug)] pub struct Texture { texture: gl::types::GLuint, } impl Texture { pub fn new() -> Self { let mut texture = gl::types::GLuint::default(); unsafe { gl::GenTextures(1, &mut texture); }; Self { texture } } pub fn bind(&self, cb: impl FnOnce(CurrentlyBound<'_, Self>)) { unsafe { gl::BindTexture(gl::TEXTURE_2D, self.texture); } // SAFETY: The buffer object is bound above let currently_bound = unsafe { CurrentlyBound::new() }; cb(currently_bound); } pub fn generate( curr_bound: &CurrentlyBound, dimens: &Vec2, data: &[u8], pixel_data_format: PixelDataFormat, ) { Self::alloc_image(curr_bound, pixel_data_format, dimens, Some(data)); unsafe { gl::GenerateMipmap(gl::TEXTURE_2D); } } pub fn apply_properties(&self, properties: &Properties) { self.bind(|texture_curr_bound| { Texture::set_wrap(&texture_curr_bound, properties.wrap); Texture::set_magnifying_filter( &texture_curr_bound, properties.magnifying_filter, ); Texture::set_minifying_filter( &texture_curr_bound, properties.minifying_filter, ); }); } pub fn set_wrap(_: &CurrentlyBound, wrapping: Wrapping) { let wrapping_gl = wrapping.to_gl(); #[allow(clippy::cast_possible_wrap)] unsafe { gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_S, wrapping_gl as i32); gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_T, wrapping_gl as i32); } } pub fn set_magnifying_filter(_: &CurrentlyBound, filtering: Filtering) { let filtering_gl = filtering.to_gl(); #[allow(clippy::cast_possible_wrap)] unsafe { gl::TexParameteri( gl::TEXTURE_2D, gl::TEXTURE_MAG_FILTER, filtering_gl as i32, ); } } pub fn set_minifying_filter(_: &CurrentlyBound, filtering: Filtering) { let filtering_gl = filtering.to_gl(); #[allow(clippy::cast_possible_wrap)] unsafe { gl::TexParameteri( gl::TEXTURE_2D, gl::TEXTURE_MIN_FILTER, filtering_gl as i32, ); } } fn alloc_image( _: &CurrentlyBound, pixel_data_format: PixelDataFormat, dimens: &Vec2, data: Option<&[u8]>, ) { unsafe { #[allow(clippy::cast_possible_wrap)] gl::TexImage2D( gl::TEXTURE_2D, 0, pixel_data_format.to_gl() as i32, dimens.x as i32, dimens.y as i32, 0, pixel_data_format.to_gl(), gl::UNSIGNED_BYTE, data.map_or_else(null, |data| data.as_ptr().cast()), ); } } } impl Drop for Texture { fn drop(&mut self) { unsafe { gl::DeleteTextures(1, &self.texture); } } } /// Texture wrapping. #[derive(Debug, Clone, Copy)] pub enum Wrapping { Repeat, MirroredRepeat, ClampToEdge, ClampToBorder, } impl Wrapping { fn to_gl(self) -> gl::types::GLenum { match self { Self::Repeat => gl::REPEAT, Self::MirroredRepeat => gl::MIRRORED_REPEAT, Self::ClampToEdge => gl::CLAMP_TO_EDGE, Self::ClampToBorder => gl::CLAMP_TO_BORDER, } } } #[derive(Debug, Clone, Copy)] pub enum Filtering { Nearest, Linear, } impl Filtering { fn to_gl(self) -> gl::types::GLenum { match self { Self::Linear => gl::LINEAR, Self::Nearest => gl::NEAREST, } } } /// Texture pixel data format. #[derive(Debug, Clone, Copy)] pub enum PixelDataFormat { Rgb, Rgba, } impl PixelDataFormat { fn to_gl(self) -> gl::types::GLenum { match self { Self::Rgb => gl::RGB, Self::Rgba => gl::RGBA, } } } pub fn set_active_texture_unit(texture_unit: TextureUnit) { unsafe { gl::ActiveTexture(texture_unit.into_gl()); } } macro_rules! texture_unit_enum { (cnt=$cnt: literal) => { seq_macro::seq!(N in 0..$cnt { #[derive(Debug, Clone, Copy)] pub enum TextureUnit { #( No~N, )* } impl TextureUnit { fn into_gl(self) -> gl::types::GLenum { match self { #( Self::No~N => gl::TEXTURE~N, )* } } pub fn from_texture_id(texture_id: Id) -> Option { match texture_id.into_inner() { #( N => Some(Self::No~N), )* _ => None } } } }); }; } texture_unit_enum!(cnt = 31);