2020-06-07 18:30:04 +00:00
|
|
|
use crate::{Rect, TextureAtlas};
|
2020-07-30 21:35:07 +00:00
|
|
|
use bevy_asset::Assets;
|
2020-07-16 23:51:45 +00:00
|
|
|
use bevy_math::Vec2;
|
2020-07-17 00:23:50 +00:00
|
|
|
use bevy_render::texture::Texture;
|
2020-07-30 21:35:07 +00:00
|
|
|
use guillotiere::{size2, Allocation, AtlasAllocator};
|
2020-06-07 18:30:04 +00:00
|
|
|
|
|
|
|
pub struct DynamicTextureAtlasBuilder {
|
|
|
|
pub atlas_allocator: AtlasAllocator,
|
2020-07-30 21:35:07 +00:00
|
|
|
pub padding: i32,
|
2020-06-07 18:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DynamicTextureAtlasBuilder {
|
2020-07-30 21:35:07 +00:00
|
|
|
pub fn new(size: Vec2, padding: i32) -> Self {
|
2020-06-07 18:30:04 +00:00
|
|
|
Self {
|
2020-06-14 01:53:31 +00:00
|
|
|
atlas_allocator: AtlasAllocator::new(to_size2(size)),
|
2020-07-30 21:35:07 +00:00
|
|
|
padding,
|
2020-06-07 18:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-14 01:53:31 +00:00
|
|
|
pub fn add_texture(
|
|
|
|
&mut self,
|
|
|
|
texture_atlas: &mut TextureAtlas,
|
|
|
|
textures: &mut Assets<Texture>,
|
|
|
|
texture: &Texture,
|
|
|
|
) -> Option<u32> {
|
2020-07-30 21:35:07 +00:00
|
|
|
let allocation = self.atlas_allocator.allocate(size2(
|
2020-11-22 20:04:47 +00:00
|
|
|
texture.size.width as i32 + self.padding,
|
|
|
|
texture.size.height as i32 + self.padding,
|
2020-07-30 21:35:07 +00:00
|
|
|
));
|
2020-06-14 01:53:31 +00:00
|
|
|
if let Some(allocation) = allocation {
|
|
|
|
let atlas_texture = textures.get_mut(&texture_atlas.texture).unwrap();
|
|
|
|
self.place_texture(atlas_texture, allocation, texture);
|
2020-07-30 21:35:07 +00:00
|
|
|
let mut rect: Rect = allocation.rectangle.into();
|
2020-11-17 21:40:18 +00:00
|
|
|
rect.max.x -= self.padding as f32;
|
|
|
|
rect.max.y -= self.padding as f32;
|
2020-07-30 21:35:07 +00:00
|
|
|
texture_atlas.add_texture(rect);
|
2020-06-14 01:53:31 +00:00
|
|
|
Some((texture_atlas.len() - 1) as u32)
|
|
|
|
} else {
|
|
|
|
None
|
2020-06-07 18:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-14 01:53:31 +00:00
|
|
|
// fn resize(
|
|
|
|
// &mut self,
|
|
|
|
// texture_atlas: &mut TextureAtlas,
|
|
|
|
// textures: &mut Assets<Texture>,
|
|
|
|
// size: Vec2,
|
|
|
|
// ) {
|
|
|
|
// let new_size2 = to_size2(new_size);
|
|
|
|
// self.atlas_texture = Texture::new_fill(new_size, &[0,0,0,0]);
|
|
|
|
// let change_list = self.atlas_allocator.resize_and_rearrange(new_size2);
|
|
|
|
|
|
|
|
// for change in change_list.changes {
|
2021-03-11 00:27:30 +00:00
|
|
|
// if let Some(changed_texture_handle) = self.allocation_textures.remove(&change.old.id)
|
|
|
|
// { let changed_texture = textures.get(&changed_texture_handle).unwrap();
|
2020-06-14 01:53:31 +00:00
|
|
|
// self.place_texture(change.new, changed_texture_handle, changed_texture);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// for failure in change_list.failures {
|
|
|
|
// let failed_texture = self.allocation_textures.remove(&failure.id).unwrap();
|
|
|
|
// queued_textures.push(failed_texture);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
fn place_texture(
|
|
|
|
&mut self,
|
|
|
|
atlas_texture: &mut Texture,
|
|
|
|
allocation: Allocation,
|
|
|
|
texture: &Texture,
|
|
|
|
) {
|
2020-07-30 21:35:07 +00:00
|
|
|
let mut rect = allocation.rectangle;
|
|
|
|
rect.max.x -= self.padding;
|
|
|
|
rect.max.y -= self.padding;
|
2020-11-22 20:04:47 +00:00
|
|
|
let atlas_width = atlas_texture.size.width as usize;
|
2020-06-07 18:30:04 +00:00
|
|
|
let rect_width = rect.width() as usize;
|
2020-07-26 19:08:41 +00:00
|
|
|
let format_size = atlas_texture.format.pixel_size();
|
2020-06-07 18:30:04 +00:00
|
|
|
|
|
|
|
for (texture_y, bound_y) in (rect.min.y..rect.max.y).map(|i| i as usize).enumerate() {
|
2020-07-26 19:08:41 +00:00
|
|
|
let begin = (bound_y * atlas_width + rect.min.x as usize) * format_size;
|
|
|
|
let end = begin + rect_width * format_size;
|
|
|
|
let texture_begin = texture_y * rect_width * format_size;
|
|
|
|
let texture_end = texture_begin + rect_width * format_size;
|
2020-06-14 01:53:31 +00:00
|
|
|
atlas_texture.data[begin..end]
|
2020-06-07 18:30:04 +00:00
|
|
|
.copy_from_slice(&texture.data[texture_begin..texture_end]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<guillotiere::Rectangle> for Rect {
|
|
|
|
fn from(rectangle: guillotiere::Rectangle) -> Self {
|
|
|
|
Rect {
|
|
|
|
min: Vec2::new(rectangle.min.x as f32, rectangle.min.y as f32),
|
|
|
|
max: Vec2::new(rectangle.max.x as f32, rectangle.max.y as f32),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_size2(vec2: Vec2) -> guillotiere::Size {
|
2020-11-17 21:40:18 +00:00
|
|
|
guillotiere::Size::new(vec2.x as i32, vec2.y as i32)
|
2020-06-07 18:30:04 +00:00
|
|
|
}
|