use crate::{
core::log::{Log, MessageKind},
renderer::{
cache::{TemporaryCache, TimeToLive},
framework::{
error::FrameworkError,
gpu_texture::{Coordinate, GpuTexture, PixelKind},
server::GraphicsServer,
},
},
resource::texture::{Texture, TextureResource},
};
use fyrox_graphics::gpu_texture::{
GpuTextureDescriptor, GpuTextureKind, MagnificationFilter, MinificationFilter, WrapMode,
};
use fyrox_texture::{
TextureKind, TextureMagnificationFilter, TextureMinificationFilter, TexturePixelKind,
TextureWrapMode,
};
use std::{cell::RefCell, rc::Rc};
pub(crate) struct TextureRenderData {
pub gpu_texture: Rc<RefCell<dyn GpuTexture>>,
pub modifications_counter: u64,
}
#[derive(Default)]
pub struct TextureCache {
cache: TemporaryCache<TextureRenderData>,
}
fn convert_texture_kind(v: TextureKind) -> GpuTextureKind {
match v {
TextureKind::Line { length } => GpuTextureKind::Line {
length: length as usize,
},
TextureKind::Rectangle { width, height } => GpuTextureKind::Rectangle {
width: width as usize,
height: height as usize,
},
TextureKind::Cube { width, height } => GpuTextureKind::Cube {
width: width as usize,
height: height as usize,
},
TextureKind::Volume {
width,
height,
depth,
} => GpuTextureKind::Volume {
width: width as usize,
height: height as usize,
depth: depth as usize,
},
}
}
fn convert_pixel_kind(texture_kind: TexturePixelKind) -> PixelKind {
match texture_kind {
TexturePixelKind::R8 => PixelKind::R8,
TexturePixelKind::RGB8 => PixelKind::RGB8,
TexturePixelKind::RGBA8 => PixelKind::RGBA8,
TexturePixelKind::RG8 => PixelKind::RG8,
TexturePixelKind::R16 => PixelKind::R16,
TexturePixelKind::RG16 => PixelKind::RG16,
TexturePixelKind::BGR8 => PixelKind::BGR8,
TexturePixelKind::BGRA8 => PixelKind::BGRA8,
TexturePixelKind::RGB16 => PixelKind::RGB16,
TexturePixelKind::RGBA16 => PixelKind::RGBA16,
TexturePixelKind::RGB16F => PixelKind::RGB16F,
TexturePixelKind::DXT1RGB => PixelKind::DXT1RGB,
TexturePixelKind::DXT1RGBA => PixelKind::DXT1RGBA,
TexturePixelKind::DXT3RGBA => PixelKind::DXT3RGBA,
TexturePixelKind::DXT5RGBA => PixelKind::DXT5RGBA,
TexturePixelKind::R8RGTC => PixelKind::R8RGTC,
TexturePixelKind::RG8RGTC => PixelKind::RG8RGTC,
TexturePixelKind::RGB32F => PixelKind::RGB32F,
TexturePixelKind::RGBA32F => PixelKind::RGBA32F,
TexturePixelKind::Luminance8 => PixelKind::L8,
TexturePixelKind::LuminanceAlpha8 => PixelKind::LA8,
TexturePixelKind::Luminance16 => PixelKind::L16,
TexturePixelKind::LuminanceAlpha16 => PixelKind::LA16,
TexturePixelKind::R32F => PixelKind::R32F,
TexturePixelKind::R16F => PixelKind::R16F,
}
}
fn convert_magnification_filter(v: TextureMagnificationFilter) -> MagnificationFilter {
match v {
TextureMagnificationFilter::Nearest => MagnificationFilter::Nearest,
TextureMagnificationFilter::Linear => MagnificationFilter::Linear,
}
}
fn convert_minification_filter(v: TextureMinificationFilter) -> MinificationFilter {
match v {
TextureMinificationFilter::Nearest => MinificationFilter::Nearest,
TextureMinificationFilter::NearestMipMapNearest => MinificationFilter::NearestMipMapNearest,
TextureMinificationFilter::NearestMipMapLinear => MinificationFilter::NearestMipMapLinear,
TextureMinificationFilter::Linear => MinificationFilter::Linear,
TextureMinificationFilter::LinearMipMapNearest => MinificationFilter::LinearMipMapNearest,
TextureMinificationFilter::LinearMipMapLinear => MinificationFilter::LinearMipMapLinear,
}
}
fn convert_wrap_mode(v: TextureWrapMode) -> WrapMode {
match v {
TextureWrapMode::Repeat => WrapMode::Repeat,
TextureWrapMode::ClampToEdge => WrapMode::ClampToEdge,
TextureWrapMode::ClampToBorder => WrapMode::ClampToBorder,
TextureWrapMode::MirroredRepeat => WrapMode::MirroredRepeat,
TextureWrapMode::MirrorClampToEdge => WrapMode::MirrorClampToEdge,
}
}
fn create_gpu_texture(
server: &dyn GraphicsServer,
texture: &Texture,
) -> Result<TextureRenderData, FrameworkError> {
server
.create_texture(GpuTextureDescriptor {
kind: convert_texture_kind(texture.kind()),
pixel_kind: convert_pixel_kind(texture.pixel_kind()),
mag_filter: convert_magnification_filter(texture.magnification_filter()),
min_filter: convert_minification_filter(texture.minification_filter()),
mip_count: texture.mip_count() as usize,
s_wrap_mode: convert_wrap_mode(texture.s_wrap_mode()),
t_wrap_mode: convert_wrap_mode(texture.t_wrap_mode()),
r_wrap_mode: convert_wrap_mode(texture.r_wrap_mode()),
anisotropy: texture.anisotropy_level(),
data: Some(texture.data()),
base_level: texture.base_level(),
max_level: texture.max_level(),
min_lod: texture.min_lod(),
max_lod: texture.max_lod(),
lod_bias: texture.lod_bias(),
})
.map(|gpu_texture| TextureRenderData {
gpu_texture,
modifications_counter: texture.modifications_count(),
})
}
impl TextureCache {
pub fn upload(
&mut self,
server: &dyn GraphicsServer,
texture: &TextureResource,
) -> Result<(), FrameworkError> {
let mut texture = texture.state();
if let Some(texture) = texture.data() {
self.cache.get_entry_mut_or_insert_with(
&texture.cache_index,
Default::default(),
|| create_gpu_texture(server, texture),
)?;
Ok(())
} else {
Err(FrameworkError::Custom(
"Texture is not loaded yet!".to_string(),
))
}
}
pub fn get(
&mut self,
server: &dyn GraphicsServer,
texture_resource: &TextureResource,
) -> Option<&Rc<RefCell<dyn GpuTexture>>> {
let mut texture_data_guard = texture_resource.state();
if let Some(texture) = texture_data_guard.data() {
match self.cache.get_mut_or_insert_with(
&texture.cache_index,
Default::default(),
|| create_gpu_texture(server, texture),
) {
Ok(entry) => {
let modifications_count = texture.modifications_count();
if entry.modifications_counter != modifications_count {
let mut gpu_texture = entry.gpu_texture.borrow_mut();
if let Err(e) = gpu_texture.set_data(
convert_texture_kind(texture.kind()),
convert_pixel_kind(texture.pixel_kind()),
texture.mip_count() as usize,
Some(texture.data()),
) {
Log::writeln(
MessageKind::Error,
format!("Unable to upload new texture data to GPU. Reason: {e:?}"),
)
} else {
entry.modifications_counter = modifications_count;
}
}
let mut gpu_texture = entry.gpu_texture.borrow_mut();
let new_mag_filter =
convert_magnification_filter(texture.magnification_filter());
if gpu_texture.magnification_filter() != new_mag_filter {
gpu_texture.set_magnification_filter(new_mag_filter);
}
let new_min_filter = convert_minification_filter(texture.minification_filter());
if gpu_texture.minification_filter() != new_min_filter {
gpu_texture.set_minification_filter(new_min_filter);
}
if gpu_texture.anisotropy().ne(&texture.anisotropy_level()) {
gpu_texture.set_anisotropy(texture.anisotropy_level());
}
let new_s_wrap_mode = convert_wrap_mode(texture.s_wrap_mode());
if gpu_texture.wrap_mode(Coordinate::S) != new_s_wrap_mode {
gpu_texture.set_wrap(Coordinate::S, new_s_wrap_mode);
}
let new_t_wrap_mode = convert_wrap_mode(texture.t_wrap_mode());
if gpu_texture.wrap_mode(Coordinate::T) != new_t_wrap_mode {
gpu_texture.set_wrap(Coordinate::T, new_t_wrap_mode);
}
let new_r_wrap_mode = convert_wrap_mode(texture.r_wrap_mode());
if gpu_texture.wrap_mode(Coordinate::R) != new_r_wrap_mode {
gpu_texture.set_wrap(Coordinate::R, new_r_wrap_mode);
}
return Some(&entry.gpu_texture);
}
Err(e) => {
drop(texture_data_guard);
Log::writeln(
MessageKind::Error,
format!(
"Failed to create GPU texture from {} texture. Reason: {:?}",
texture_resource.kind(),
e
),
);
}
}
}
None
}
pub fn update(&mut self, dt: f32) {
self.cache.update(dt)
}
pub fn clear(&mut self) {
self.cache.clear();
}
pub fn unload(&mut self, texture: TextureResource) {
if let Some(texture) = texture.state().data() {
self.cache.remove(&texture.cache_index);
}
}
pub fn alive_count(&self) -> usize {
self.cache.alive_count()
}
pub fn try_register(
&mut self,
texture: &TextureResource,
gpu_texture: Rc<RefCell<dyn GpuTexture>>,
) {
let data = texture.data_ref();
let index = data.cache_index.clone();
let entry = self.cache.get_mut(&index);
if entry.is_none() {
self.cache.spawn(
TextureRenderData {
gpu_texture,
modifications_counter: data.modifications_count(),
},
index,
TimeToLive::default(),
);
}
}
}