Mirror von
https://github.com/Chaoscaot/schemsearch
synchronisiert 2024-11-19 10:20:08 +01:00
Debuging and Fixes
Dieser Commit ist enthalten in:
Ursprung
fb6cb1773a
Commit
1959c20b6e
48
src/lib.rs
48
src/lib.rs
@ -33,35 +33,43 @@ pub fn search(
|
|||||||
|
|
||||||
let mut matches: Vec<(u16, u16, u16)> = Vec::new();
|
let mut matches: Vec<(u16, u16, u16)> = Vec::new();
|
||||||
|
|
||||||
for i in 0..schem.width - pattern_schem.width {
|
println!("{:?}", schem);
|
||||||
for j in 0..schem.height - pattern_schem.height {
|
println!("{:?}", pattern_schem);
|
||||||
for k in 0..schem.length - pattern_schem.length {
|
|
||||||
|
for x in 0..=schem.width - pattern_schem.width {
|
||||||
|
for y in 0..=schem.height - pattern_schem.height {
|
||||||
|
for z in 0..=schem.length - pattern_schem.length {
|
||||||
let mut match_found = true;
|
let mut match_found = true;
|
||||||
for x in 0..pattern_schem.width {
|
'outer: for i in 0..pattern_schem.width {
|
||||||
for y in 0..pattern_schem.height {
|
for j in 0..pattern_schem.height {
|
||||||
for z in 0..pattern_schem.length {
|
for k in 0..pattern_schem.length {
|
||||||
let index = (i + x) as usize + (j + y) as usize * schem.width as usize + (k + z) as usize * schem.width as usize * schem.height as usize;
|
let index = (x + i) + (y + j) * schem.width + (z + k) * schem.width * schem.height;
|
||||||
let pattern_index = x as usize + y as usize * pattern_schem.width as usize + z as usize * pattern_schem.width as usize * pattern_schem.height as usize;
|
let pattern_index = i + j * pattern_schem.width + k * pattern_schem.width * pattern_schem.height;
|
||||||
if schem.block_data[index] != pattern_schem.block_data[pattern_index] {
|
if schem.block_data.get(index as usize) != pattern_schem.block_data.get(pattern_index as usize) {
|
||||||
match_found = false;
|
match_found = false;
|
||||||
break;
|
break 'outer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !match_found {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !match_found {
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if match_found {
|
if match_found {
|
||||||
matches.push((i, j, k));
|
matches.push((x, y, z));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
[
|
||||||
|
0, -1, 1, 1, 2,
|
||||||
|
0, -1, 2, 1, 0,
|
||||||
|
2, -1, -1, 2, -1,
|
||||||
|
2, 0, 0, 2, -1,
|
||||||
|
2, 1, 2, 2, 1
|
||||||
|
]
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
return matches;
|
return matches;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -128,9 +136,9 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_search() {
|
fn test_search() {
|
||||||
let file = std::fs::File::open("tests/simple.schem").expect("Failed to open file");
|
let file = std::fs::File::open("tests/Random.schem").expect("Failed to open file");
|
||||||
let schematic = &std::io::Read::bytes(file).map(|b| b.unwrap()).collect();
|
let schematic = &std::io::Read::bytes(file).map(|b| b.unwrap()).collect();
|
||||||
let file = std::fs::File::open("tests/endstone.schem").expect("Failed to open file");
|
let file = std::fs::File::open("tests/Pattern.schem").expect("Failed to open file");
|
||||||
let pattern = &std::io::Read::bytes(file).map(|b| b.unwrap()).collect();
|
let pattern = &std::io::Read::bytes(file).map(|b| b.unwrap()).collect();
|
||||||
|
|
||||||
let matches = search(schematic, pattern, SearchBehavior {
|
let matches = search(schematic, pattern, SearchBehavior {
|
||||||
@ -140,5 +148,7 @@ mod tests {
|
|||||||
});
|
});
|
||||||
|
|
||||||
println!("{:?}", matches);
|
println!("{:?}", matches);
|
||||||
|
assert_eq!(matches.len(), 1);
|
||||||
|
assert_eq!(matches[0], (1, 0, 3));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
BIN
tests/Pattern.schem
Normale Datei
BIN
tests/Pattern.schem
Normale Datei
Binäre Datei nicht angezeigt.
BIN
tests/Random.schem
Normale Datei
BIN
tests/Random.schem
Normale Datei
Binäre Datei nicht angezeigt.
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren