Add Roadmap

This commit is contained in:
Chaoscaot
2023-03-16 21:09:41 +01:00
parent 0e31714582
commit f4bcde73f9
4 changed files with 2 additions and 3 deletions

View File

@ -0,0 +1,12 @@
[package]
name = "schemsearch_faster"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
schemsearch-lib = { path = "../schemsearch-lib" }
schemsearch-files = { path = "../schemsearch-files" }
hematite-nbt = "0.5.2"

View File

@ -0,0 +1,73 @@
/*
* Copyright (C) 2023 Chaoscaot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use nbt::Map;
use schemsearch_files::Schematic;
pub fn convert_to_search_space(schem: &Schematic, palette: &Vec<String>) -> Vec<Vec<u8>> {
let mut data: Vec<Vec<u8>> = Vec::with_capacity(palette.len());
let block_data = &schem.block_data;
for name in palette {
let mut output: Vec<u8> = Vec::with_capacity(block_data.len());
for block in block_data.iter() {
if schem.palette.get(name).unwrap_or(&-1) == block {
output.push(1);
} else {
output.push(0);
}
}
data.push(output);
}
data
}
pub fn unwrap_palette(palette: &Map<String, i32>) -> Vec<String> {
let mut output: Vec<String> = Vec::with_capacity(palette.len());
(0..palette.len()).for_each(|_| output.push(String::new()));
for (key, id) in palette.iter() {
output[*id as usize] = key.clone();
}
output
}
#[allow(unused_imports)]
#[cfg(test)]
mod tests {
use std::path::{Path, PathBuf};
use schemsearch_files::Schematic;
use crate::{convert_to_search_space, unwrap_palette};
//#[test]
pub fn test() {
let schematic = Schematic::load(&PathBuf::from("../tests/Pattern.schem")).unwrap();
dbg!(convert_to_search_space(&schematic, &unwrap_palette(&schematic.palette)));
}
//#[test]
pub fn test_2() {
let schematic = Schematic::load(&PathBuf::from("../tests/Pattern.schem")).unwrap();
let schematic2 = Schematic::load(&PathBuf::from("../tests/Random.schem")).unwrap();
println!("{:?}", convert_to_search_space(&schematic2, &unwrap_palette(&schematic.palette)));
}
//#[test]
pub fn test_big() {
let schematic = Schematic::load(&PathBuf::from("../tests/endstone.schem")).unwrap();
let schematic2 = Schematic::load(&PathBuf::from("../tests/simple.schem")).unwrap();
let _ = convert_to_search_space(&schematic2, &unwrap_palette(&schematic.palette));
}
}