use crate::TILE_TEXTURE_SIZE; use crate::{draw_scaled_texture, Textures}; use super::tile::*; use super::Pos; use super::PosInt; use raylib::prelude::*; #[derive(Debug, Clone, PartialEq)] pub struct Board { tiles: Vec, width: usize, height: usize, } #[derive(Debug, Clone)] pub struct ResizeDeltas { pub x_pos: usize, pub x_neg: usize, pub y_pos: usize, pub y_neg: usize, } impl Board { pub fn parse(source: &str) -> Self { let mut rows = Vec::new(); let mut width = 0; let mut height = 0; for line in source.lines() { height += 1; width = width.max(line.len()); let mut tiles = Vec::new(); for char in line.chars() { tiles.push(Tile::from_char(char)); } rows.push(tiles); } for line in &mut rows { line.resize(width, Tile::BLANK); } let tiles = rows.into_iter().flatten().collect(); Self { tiles, width, height, } } pub fn serialize(&self) -> String { let mut out = String::new(); for y in 0..self.height { for x in 0..self.width { let tile = self.get((x, y).into()).unwrap(); out.push(tile.to_char()); } out.push('\n'); } out } pub fn new_empty(width: usize, height: usize) -> Self { let tiles = vec![Tile::BLANK; width * height]; Self { tiles, width, height, } } pub fn new_single(tile: Tile) -> Self { Self { tiles: vec![tile], width: 1, height: 1, } } pub fn count_tiles(&self) -> usize { let mut sum = 0; for tile in &self.tiles { if !matches!(tile, Tile::Open(OpenTile::Blank, _) | Tile::Block) { sum += 1 } } sum } fn in_bounds(&self, p: Pos) -> bool { p.x >= 0 && p.y >= 0 && p.x < self.width as PosInt && p.y < self.height as PosInt } fn get_unchecked(&self, p: Pos) -> Tile { self.tiles[p.y as usize * self.width + p.x as usize] } pub fn get(&self, p: Pos) -> Option { if self.in_bounds(p) { Some(self.get_unchecked(p)) } else { None } } pub fn get_or_blank(&self, p: Pos) -> Tile { if self.in_bounds(p) { self.get_unchecked(p) } else { Tile::BLANK } } pub fn get_mut(&mut self, p: Pos) -> Option<&mut Tile> { if self.in_bounds(p) { Some(&mut self.tiles[p.y as usize * self.width + p.x as usize]) } else { None } } pub fn set(&mut self, p: Pos, tile: Tile) { if self.in_bounds(p) { self.tiles[p.y as usize * self.width + p.x as usize] = tile; } } pub fn paste_board(&mut self, pos: Pos, source: &Board) { for x in 0..source.width() { for y in 0..source.height() { let offset = (x, y).into(); if let Some(tile) = source.get(offset) { self.set(offset + pos, tile); } } } } pub fn get_rect(&self, pos: Pos, width: usize, height: usize) -> Board { let mut out = Board::new_empty(width, height); for x in 0..width { for y in 0..height { let offset = (x, y).into(); if let Some(tile) = self.get(offset + pos) { out.set(offset, tile); } } } out } pub fn grow(&mut self, deltas: &ResizeDeltas) { let new_width = self.width + deltas.x_neg + deltas.x_pos; let new_height = self.height + deltas.y_neg + deltas.y_pos; let mut new_board = Board::new_empty(new_width, new_height); for x in 0..self.width { for y in 0..self.height { let tile = self.get_unchecked((x, y).into()); new_board.set((x + deltas.x_neg, y + deltas.y_neg).into(), tile); } } *self = new_board; } pub fn shrink(&mut self, deltas: &ResizeDeltas) { let new_width = self.width - deltas.x_neg - deltas.x_pos; let new_height = self.height - deltas.y_neg - deltas.y_pos; let mut new_board = Board::new_empty(new_width, new_height); for x in 0..new_width { for y in 0..new_height { let tile = self.get_unchecked((x + deltas.x_neg, y + deltas.y_neg).into()); new_board.set((x, y).into(), tile); } } *self = new_board; } pub fn width(&self) -> usize { self.width } pub fn height(&self) -> usize { self.height } pub fn get_marbles(&self) -> Vec { let mut out = Vec::new(); for y in 0..self.height { for x in 0..self.width { if let Tile::Marble { value: _, dir: _ } = self.get_unchecked((x, y).into()) { out.push((x, y).into()); } } } out } pub fn draw(&self, d: &mut RaylibDrawHandle, textures: &Textures, offset: Vector2, scale: f32) { let tile_size = (TILE_TEXTURE_SIZE * scale) as i32; let start_x = (-offset.x as i32) / tile_size - 1; let tile_width = d.get_screen_width() / tile_size + 2; let start_y = (-offset.y as i32) / tile_size - 1; let tile_height = d.get_screen_height() / tile_size + 2; for x in start_x..(start_x + tile_width) { for y in start_y..(start_y + tile_height) { let px = x * tile_size + offset.x as i32; let py = y * tile_size + offset.y as i32; if let Some(tile) = self.get((x, y).into()) { let texname = tile.texture(); if texname.is_empty() { continue; } let texture = textures.get(texname); draw_scaled_texture(d, texture, px, py, scale); } else { d.draw_rectangle(px, py, tile_size, tile_size, Color::new(0, 0, 0, 80)); } } } } }