warcraft-rs 0.7.0

Unified CLI for World of Warcraft file format parsing, conversion, and validation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
//! ADT terrain command implementations

use anyhow::{Context, Result};
use clap::Subcommand;
use prettytable::{Cell, Row, Table, format};
use std::fs::File;
use std::io::BufReader;
use std::path::Path;
use wow_adt::{AdtVersion, BuiltAdt, ParsedAdt, parse_adt_with_metadata};

#[cfg(feature = "parallel")]
use wow_adt::parse_adt;

#[derive(Subcommand)]
pub enum AdtCommands {
    /// Show information about an ADT file
    Info {
        /// Path to the ADT file
        file: String,

        /// Show detailed chunk information
        #[arg(short, long)]
        detailed: bool,
    },

    /// Validate an ADT file
    Validate {
        /// Path to the ADT file
        file: String,

        /// Validation level (basic, standard, strict)
        #[arg(short, long, default_value = "standard")]
        level: String,

        /// Show warnings in addition to errors
        #[arg(short, long)]
        warnings: bool,
    },

    /// Convert ADT between different WoW versions
    Convert {
        /// Input ADT file
        input: String,

        /// Output ADT file
        output: String,

        /// Target WoW version (classic, tbc, wotlk, cataclysm)
        #[arg(short, long)]
        to: String,
    },

    /// Extract data from ADT files
    #[cfg(feature = "extract")]
    Extract {
        /// Path to the ADT file
        file: String,

        /// Output directory for extracted data
        #[arg(short, long)]
        output: Option<String>,

        /// Extract heightmap
        #[arg(long)]
        heightmap: bool,

        /// Heightmap format (pgm, png, tiff, raw)
        #[arg(long, default_value = "png")]
        heightmap_format: String,

        /// Extract texture information
        #[arg(long)]
        textures: bool,

        /// Extract model placements
        #[arg(long)]
        models: bool,

        /// Extract all data
        #[arg(long)]
        all: bool,
    },

    /// Visualize ADT structure as a tree
    Tree {
        /// Path to the ADT file
        file: String,

        /// Maximum depth to display
        #[arg(long)]
        depth: Option<usize>,

        /// Show external file references
        #[arg(long)]
        show_refs: bool,

        /// Disable colored output
        #[arg(long)]
        no_color: bool,

        /// Hide metadata (sizes, counts, etc.)
        #[arg(long)]
        no_metadata: bool,

        /// Compact output without descriptions
        #[arg(long)]
        compact: bool,
    },

    /// Batch process multiple ADT files
    #[cfg(feature = "parallel")]
    Batch {
        /// Input pattern (e.g., "*.adt" or "World/Maps/Azeroth/*.adt")
        pattern: String,

        /// Output directory
        #[arg(short, long)]
        output: String,

        /// Operation to perform (validate, convert, extract)
        #[arg(short, long)]
        operation: String,

        /// Target version for conversion (classic, tbc, wotlk, cataclysm)
        #[arg(long)]
        to: Option<String>,

        /// Number of parallel threads
        #[arg(short, long)]
        threads: Option<usize>,
    },
}

pub fn execute(command: AdtCommands) -> Result<()> {
    match command {
        AdtCommands::Info { file, detailed } => execute_info(&file, detailed),
        AdtCommands::Validate {
            file,
            level,
            warnings,
        } => execute_validate(&file, &level, warnings),
        AdtCommands::Convert { input, output, to } => execute_convert(&input, &output, &to),
        #[cfg(feature = "extract")]
        AdtCommands::Extract {
            file,
            output,
            heightmap,
            heightmap_format,
            textures,
            models,
            all,
        } => execute_extract(
            &file,
            output.as_deref(),
            heightmap || all,
            &heightmap_format,
            textures || all,
            models || all,
        ),
        AdtCommands::Tree {
            file,
            depth,
            show_refs,
            no_color,
            no_metadata,
            compact,
        } => execute_tree(&file, depth, show_refs, no_color, no_metadata, compact),
        #[cfg(feature = "parallel")]
        AdtCommands::Batch {
            pattern,
            output,
            operation,
            to,
            threads,
        } => execute_batch(&pattern, &output, &operation, to.as_deref(), threads),
    }
}

fn execute_info(file: &str, detailed: bool) -> Result<()> {
    println!("ADT File Information");
    println!("====================");
    println!();

    let file_handle =
        File::open(file).with_context(|| format!("Failed to open ADT file: {file}"))?;
    let mut reader = BufReader::new(file_handle);
    let (adt, metadata) = parse_adt_with_metadata(&mut reader)
        .with_context(|| format!("Failed to parse ADT file: {file}"))?;

    // Basic information
    println!("File: {file}");
    println!("Type: {:?}", metadata.file_type);
    println!("Version: {}", format_version(&metadata.version));

    let path = Path::new(file);
    let stem = path.file_stem().and_then(|s| s.to_str()).unwrap_or("");
    let dir = path.parent().unwrap_or(Path::new("."));

    if !stem.ends_with("_obj0") && !stem.ends_with("_tex0") {
        let tex0 = dir.join(format!("{stem}_tex0.adt"));
        let obj0 = dir.join(format!("{stem}_obj0.adt"));
        let lod = dir.join(format!("{stem}_lod.adt"));

        if tex0.exists() || obj0.exists() {
            println!("\nSplit Files Detected (Cataclysm+):");
            if tex0.exists() {
                println!("  - {stem}_tex0.adt");
            }
            if obj0.exists() {
                println!("  - {stem}_obj0.adt");
            }
            if lod.exists() {
                println!("  - {stem}_lod.adt");
            }
        }
    }

    // Display information based on file type
    match adt {
        ParsedAdt::Root(root) => {
            println!("\nTerrain Information:");
            println!("  Chunks: {}/256", root.mcnk_chunks.len());

            println!("\nTextures: {}", root.textures.len());
            if !root.textures.is_empty() && detailed {
                for (i, texture) in root.textures.iter().take(5).enumerate() {
                    println!("  [{}]: {}", i, texture);
                }
                if root.textures.len() > 5 {
                    println!("  ... and {} more", root.textures.len() - 5);
                }
            }

            println!("\nModels (M2): {}", root.models.len());
            if !root.models.is_empty() && detailed {
                for (i, model) in root.models.iter().take(5).enumerate() {
                    println!("  [{}]: {}", i, model);
                }
                if root.models.len() > 5 {
                    println!("  ... and {} more", root.models.len() - 5);
                }
            }

            println!("WMOs: {}", root.wmos.len());
            if !root.wmos.is_empty() && detailed {
                for (i, wmo) in root.wmos.iter().take(5).enumerate() {
                    println!("  [{}]: {}", i, wmo);
                }
                if root.wmos.len() > 5 {
                    println!("  ... and {} more", root.wmos.len() - 5);
                }
            }

            println!("\nPlacements:");
            println!("  M2 Doodads: {}", root.doodad_placements.len());
            println!("  WMO Objects: {}", root.wmo_placements.len());

            // Water
            if let Some(water) = &root.water_data {
                let water_chunks = water
                    .entries
                    .iter()
                    .filter(|e| e.header.has_liquid())
                    .count();
                if water_chunks > 0 {
                    println!("\nWater: {} chunks with water (WotLK+)", water_chunks);
                }
            }

            // Flight bounds
            if root.flight_bounds.is_some() {
                println!("\nFlight Boundaries: Present (TBC+)");
            }

            // Blend mesh system (MoP+)
            if let Some(headers) = &root.blend_mesh_headers {
                let header_count = headers.entries.len();
                println!("\nBlend Mesh System (MoP+):");
                println!("  Headers: {}", header_count);
                if let Some(vertices) = &root.blend_mesh_vertices {
                    println!("  Vertices: {}", vertices.vertices.len());
                }
                if let Some(indices) = &root.blend_mesh_indices {
                    println!("  Indices: {}", indices.indices.len());
                }
            }
        }
        ParsedAdt::Tex0(tex) | ParsedAdt::Tex1(tex) => {
            println!("\nTexture File Information:");
            println!("  Textures: {}", tex.textures.len());
            println!(
                "  MCNK chunks with texture data: {}",
                tex.mcnk_textures.len()
            );

            if detailed && !tex.textures.is_empty() {
                println!("\nTexture List:");
                for (i, texture) in tex.textures.iter().take(10).enumerate() {
                    println!("  [{}]: {}", i, texture);
                }
                if tex.textures.len() > 10 {
                    println!("  ... and {} more", tex.textures.len() - 10);
                }
            }
        }
        ParsedAdt::Obj0(obj) | ParsedAdt::Obj1(obj) => {
            println!("\nObject File Information:");
            println!("  M2 Models: {}", obj.models.len());
            println!("  WMO Objects: {}", obj.wmos.len());
            println!("  M2 Placements: {}", obj.doodad_placements.len());
            println!("  WMO Placements: {}", obj.wmo_placements.len());
            println!("  MCNK chunks with object refs: {}", obj.mcnk_objects.len());

            if detailed && !obj.models.is_empty() {
                println!("\nM2 Model List:");
                for (i, model) in obj.models.iter().take(10).enumerate() {
                    println!("  [{}]: {}", i, model);
                }
                if obj.models.len() > 10 {
                    println!("  ... and {} more", obj.models.len() - 10);
                }
            }

            if detailed && !obj.wmos.is_empty() {
                println!("\nWMO List:");
                for (i, wmo) in obj.wmos.iter().take(10).enumerate() {
                    println!("  [{}]: {}", i, wmo);
                }
                if obj.wmos.len() > 10 {
                    println!("  ... and {} more", obj.wmos.len() - 10);
                }
            }
        }
        ParsedAdt::Lod(_) => {
            println!("\nLOD File Information:");
            println!("  Level-of-detail file (Cataclysm+)");
        }
    }

    if detailed {
        println!("\nChunk Metadata:");
        println!("  Total chunks discovered: {}", metadata.chunk_count);
        println!("  Discovery time: {:?}", metadata.discovery_duration);
        println!("  Parse time: {:?}", metadata.parse_duration);

        if !metadata.warnings.is_empty() {
            println!("\nWarnings:");
            for warning in &metadata.warnings {
                println!("  - {warning}");
            }
        }

        let mut table = Table::new();
        table.set_format(*format::consts::FORMAT_BOX_CHARS);
        table.set_titles(Row::new(vec![
            Cell::new("Chunk Type"),
            Cell::new("Count"),
            Cell::new("Present"),
        ]));

        // Add rows based on discovered chunks
        for chunk_type in metadata.discovery.chunk_types() {
            let count = metadata
                .discovery
                .chunks
                .get(&chunk_type)
                .map(|v| v.len())
                .unwrap_or(0);
            add_chunk_row(&mut table, &chunk_type.as_str(), count);
        }

        table.printstd();
    }

    Ok(())
}

fn execute_validate(file: &str, level: &str, warnings: bool) -> Result<()> {
    println!("Validating ADT File");
    println!("===================");
    println!();
    println!("File: {file}");
    println!("Level: {level}");
    println!();

    let file_handle =
        File::open(file).with_context(|| format!("Failed to open ADT file: {file}"))?;
    let mut reader = BufReader::new(file_handle);
    let (adt, metadata) = parse_adt_with_metadata(&mut reader)
        .with_context(|| format!("Failed to parse ADT file: {file}"))?;

    // Basic validation is built into the parser
    println!("Validation passed!");
    println!();
    println!("File Type: {:?}", metadata.file_type);
    println!("Version: {}", format_version(&metadata.version));
    println!("Chunks: {}", metadata.chunk_count);

    // Display warnings if requested
    if warnings && !metadata.warnings.is_empty() {
        println!("\nWarnings ({}):", metadata.warnings.len());
        for (i, warning) in metadata.warnings.iter().enumerate() {
            println!("  {}. {}", i + 1, warning);
        }
    }

    // Additional validation based on file type
    match adt {
        ParsedAdt::Root(root) => {
            if root.mcnk_chunks.is_empty() {
                println!("\nWarning: No MCNK terrain chunks found");
            }
            if root.mcnk_chunks.len() > 256 {
                println!("\nError: Too many MCNK chunks ({})", root.mcnk_chunks.len());
            }
        }
        ParsedAdt::Tex0(tex) | ParsedAdt::Tex1(tex) => {
            if tex.textures.is_empty() {
                println!("\nWarning: No textures found in texture file");
            }
        }
        ParsedAdt::Obj0(obj) | ParsedAdt::Obj1(obj) => {
            if obj.models.is_empty() && obj.wmos.is_empty() {
                println!("\nWarning: No objects found in object file");
            }
        }
        ParsedAdt::Lod(_) => {}
    }

    Ok(())
}

fn execute_convert(input: &str, output: &str, to_version: &str) -> Result<()> {
    // Parse target version from expansion name
    let target_version = AdtVersion::from_expansion_name(to_version).with_context(|| {
        format!(
            "Invalid target version '{}'. Valid options: classic, tbc, wotlk, cataclysm, mop",
            to_version
        )
    })?;

    println!("ADT Conversion");
    println!("==============");
    println!();
    println!("Input:  {}", input);
    println!("Output: {}", output);
    println!("Target: {}", target_version.expansion_name());
    println!();

    // Parse the input ADT file
    let file =
        File::open(input).with_context(|| format!("Failed to open input ADT file: {}", input))?;
    let mut reader = BufReader::new(file);
    let (adt, metadata) = parse_adt_with_metadata(&mut reader)
        .with_context(|| format!("Failed to parse ADT file: {}", input))?;

    // Only root ADT files can be converted for now
    let root = match adt {
        ParsedAdt::Root(root) => root,
        ParsedAdt::Tex0(_) | ParsedAdt::Tex1(_) => {
            anyhow::bail!(
                "Cannot convert texture ADT files (_tex0/_tex1). \
                 Only root ADT files are supported."
            );
        }
        ParsedAdt::Obj0(_) | ParsedAdt::Obj1(_) => {
            anyhow::bail!(
                "Cannot convert object ADT files (_obj0/_obj1). \
                 Only root ADT files are supported."
            );
        }
        ParsedAdt::Lod(_) => {
            anyhow::bail!(
                "Cannot convert LOD ADT files (_lod). \
                 Only root ADT files are supported."
            );
        }
    };

    println!("Source version: {}", metadata.version.expansion_name());
    println!("MCNK chunks:    {}/256", root.mcnk_chunks.len());
    println!("Textures:       {}", root.textures.len());
    println!("M2 models:      {}", root.models.len());
    println!("WMO objects:    {}", root.wmos.len());
    println!();

    // Convert RootAdt to BuiltAdt with target version
    let built = BuiltAdt::from_root_adt(*root, Some(target_version));

    // Write to output file
    built
        .write_to_file(output)
        .with_context(|| format!("Failed to write output ADT file: {}", output))?;

    // Verify output file exists
    let output_meta = std::fs::metadata(output)
        .with_context(|| format!("Failed to verify output file: {}", output))?;

    println!("Conversion complete!");
    println!("Output file size: {} bytes", output_meta.len());

    Ok(())
}

#[cfg(feature = "extract")]
fn execute_extract(
    _file: &str,
    _output_dir: Option<&str>,
    _heightmap: bool,
    _heightmap_format: &str,
    _textures: bool,
    _models: bool,
) -> Result<()> {
    anyhow::bail!("ADT extraction not yet implemented for binrw-based API");
}

#[cfg(not(feature = "extract"))]
#[allow(dead_code)]
fn execute_extract(_: &str, _: Option<&str>, _: bool, _: &str, _: bool, _: bool) -> Result<()> {
    anyhow::bail!("Extract command requires the 'extract' feature to be enabled")
}

fn execute_tree(
    file: &str,
    depth: Option<usize>,
    show_refs: bool,
    no_color: bool,
    no_metadata: bool,
    compact: bool,
) -> Result<()> {
    use crate::utils::tree::{NodeType, TreeNode, TreeOptions, render_tree};

    // Parse the ADT file
    let file_handle =
        File::open(file).with_context(|| format!("Failed to open ADT file: {file}"))?;
    let mut reader = BufReader::new(file_handle);
    let (adt, metadata) = parse_adt_with_metadata(&mut reader)
        .with_context(|| format!("Failed to parse ADT file: {file}"))?;

    // Build tree structure based on file type
    let mut root = TreeNode::new(
        Path::new(file)
            .file_name()
            .and_then(|n| n.to_str())
            .unwrap_or(file)
            .to_string(),
        NodeType::Root,
    );

    if !compact {
        root = root.with_metadata("type", &format!("{:?}", metadata.file_type));
        root = root.with_metadata("version", format_version(&metadata.version));
    }

    match adt {
        ParsedAdt::Root(root_adt) => {
            root = build_root_adt_tree(root, &root_adt, show_refs, no_metadata, compact);
        }
        ParsedAdt::Tex0(tex) | ParsedAdt::Tex1(tex) => {
            root = build_tex_adt_tree(root, &tex, no_metadata, compact);
        }
        ParsedAdt::Obj0(obj) | ParsedAdt::Obj1(obj) => {
            root = build_obj_adt_tree(root, &obj, show_refs, no_metadata, compact);
        }
        ParsedAdt::Lod(_) => {
            root = root.add_child(TreeNode::new(
                "LOD file (minimal structure)".to_string(),
                NodeType::Data,
            ));
        }
    }

    // Add metadata node if detailed
    if !no_metadata {
        let mut meta_node = TreeNode::new(
            format!("Metadata ({} chunks)", metadata.chunk_count),
            NodeType::Header,
        );
        meta_node =
            meta_node.with_metadata("discovery", &format!("{:?}", metadata.discovery_duration));
        meta_node = meta_node.with_metadata("parse", &format!("{:?}", metadata.parse_duration));
        root = root.add_child(meta_node);
    }

    // Render tree
    let options = TreeOptions {
        verbose: false,
        max_depth: depth,
        show_external_refs: show_refs,
        no_color,
        show_metadata: !no_metadata,
        compact,
    };

    println!("{}", render_tree(&root, &options));

    Ok(())
}

fn build_root_adt_tree(
    mut root: crate::utils::tree::TreeNode,
    adt: &wow_adt::api::RootAdt,
    show_refs: bool,
    no_metadata: bool,
    compact: bool,
) -> crate::utils::tree::TreeNode {
    use crate::utils::tree::{NodeType, TreeNode};

    // Header chunk
    let mut header_node = TreeNode::new("MHDR (Header)".to_string(), NodeType::Header);
    if !no_metadata {
        header_node = header_node.with_size(64);
    }
    root = root.add_child(header_node);

    // MCIN chunk index
    let mcin_node =
        TreeNode::new("MCIN (Chunk Index)".to_string(), NodeType::Header).with_size(256 * 16);
    root = root.add_child(mcin_node);

    // Terrain chunks
    if !adt.mcnk_chunks.is_empty() {
        let mut terrain_node = TreeNode::new(
            format!("MCNK ({} chunks)", adt.mcnk_chunks.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            terrain_node = terrain_node.with_metadata("type", "Terrain chunks");
        }

        // Add sample chunks
        for (_i, chunk) in adt
            .mcnk_chunks
            .iter()
            .enumerate()
            .take(if compact { 2 } else { 4 })
        {
            let mut chunk_node = TreeNode::new(
                format!("Chunk [{},{}]", chunk.header.index_x, chunk.header.index_y),
                NodeType::Data,
            );

            if !no_metadata {
                // Show world position for first chunk only to avoid clutter
                if chunk.header.index_x == 0 && chunk.header.index_y == 0 {
                    let pos = chunk.header.world_position();
                    chunk_node = chunk_node.with_metadata(
                        "position",
                        &format!("[{:.1}, {:.1}, {:.1}]", pos[0], pos[1], pos[2]),
                    );
                }

                chunk_node = chunk_node
                    .with_metadata("flags", &format!("0x{:08X}", chunk.header.flags.value));

                if chunk.header.n_layers > 0 {
                    chunk_node =
                        chunk_node.with_metadata("layers", &chunk.header.n_layers.to_string());
                }

                chunk_node = chunk_node.with_metadata(
                    "holes",
                    if chunk.header.holes_low_res != 0 {
                        "yes"
                    } else {
                        "no"
                    },
                );

                // Add counts for subchunks
                let mut subchunks = vec![];
                if chunk.heights.is_some() {
                    subchunks.push("MCVT");
                }
                if chunk.normals.is_some() {
                    subchunks.push("MCNR");
                }
                if chunk.layers.is_some() {
                    subchunks.push("MCLY");
                }
                if chunk.alpha.is_some() {
                    subchunks.push("MCAL");
                }
                if chunk.shadow.is_some() {
                    subchunks.push("MCSH");
                }
                if chunk.refs.is_some() {
                    subchunks.push("MCRF");
                }
                if chunk.liquid.is_some() {
                    subchunks.push("MCLQ");
                }
                if chunk.sound_emitters.is_some() {
                    subchunks.push("MCSE");
                }
                if chunk.vertex_colors.is_some() {
                    subchunks.push("MCCV");
                }
                if chunk.vertex_lighting.is_some() {
                    subchunks.push("MCLV");
                }
                if chunk.doodad_refs.is_some() {
                    subchunks.push("MCRD");
                }
                if chunk.wmo_refs.is_some() {
                    subchunks.push("MCRW");
                }
                if chunk.materials.is_some() {
                    subchunks.push("MCMT");
                }
                if chunk.doodad_disable.is_some() {
                    subchunks.push("MCDD");
                }
                if chunk.blend_batches.is_some() {
                    subchunks.push("MCBB");
                }

                if !subchunks.is_empty() {
                    chunk_node = chunk_node.with_metadata("subchunks", &subchunks.join(", "));
                }
            }

            terrain_node = terrain_node.add_child(chunk_node);
        }

        if adt.mcnk_chunks.len() > 4 && !compact {
            terrain_node = terrain_node.add_child(TreeNode::new(
                format!("... and {} more chunks", adt.mcnk_chunks.len() - 4),
                NodeType::Data,
            ));
        }

        root = root.add_child(terrain_node);
    }

    // Textures
    if !adt.textures.is_empty() {
        let mut tex_node = TreeNode::new(
            format!("MTEX ({} textures)", adt.textures.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            tex_node = tex_node.with_metadata("type", "Texture filenames");
        }

        for (i, texture) in adt
            .textures
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(texture.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            tex_node = tex_node.add_child(file_node);
        }

        if adt.textures.len() > 10 && !compact {
            tex_node = tex_node.add_child(TreeNode::new(
                format!("... and {} more textures", adt.textures.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(tex_node);
    }

    // M2 Models
    if !adt.models.is_empty() {
        let mut model_node = TreeNode::new(
            format!("MMDX/MMID ({} models)", adt.models.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            model_node = model_node.with_metadata("type", "M2 model references");
        }

        for (i, model) in adt
            .models
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(model.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            if show_refs {
                file_node =
                    file_node.with_external_ref(model, crate::utils::tree::detect_ref_type(model));
            }
            model_node = model_node.add_child(file_node);
        }

        if adt.models.len() > 10 && !compact {
            model_node = model_node.add_child(TreeNode::new(
                format!("... and {} more models", adt.models.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(model_node);
    }

    // WMOs
    if !adt.wmos.is_empty() {
        let mut wmo_node = TreeNode::new(
            format!("MWMO/MWID ({} WMOs)", adt.wmos.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            wmo_node = wmo_node.with_metadata("type", "WMO object references");
        }

        for (i, wmo) in adt
            .wmos
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(wmo.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            if show_refs {
                file_node =
                    file_node.with_external_ref(wmo, crate::utils::tree::detect_ref_type(wmo));
            }
            wmo_node = wmo_node.add_child(file_node);
        }

        if adt.wmos.len() > 10 && !compact {
            wmo_node = wmo_node.add_child(TreeNode::new(
                format!("... and {} more WMOs", adt.wmos.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(wmo_node);
    }

    // Placements
    if !adt.doodad_placements.is_empty() {
        let mddf_node = TreeNode::new(
            format!("MDDF ({} doodad placements)", adt.doodad_placements.len()),
            NodeType::Directory,
        );
        root = root.add_child(mddf_node);
    }

    if !adt.wmo_placements.is_empty() {
        let modf_node = TreeNode::new(
            format!("MODF ({} WMO placements)", adt.wmo_placements.len()),
            NodeType::Directory,
        );
        root = root.add_child(modf_node);
    }

    // Version-specific chunks
    if let Some(_flight_bounds) = &adt.flight_bounds {
        let mut fb_node = TreeNode::new("MFBO (Flight Boundaries)".to_string(), NodeType::Chunk);
        if !no_metadata {
            fb_node = fb_node.with_metadata("expansion", "TBC+");
            fb_node = fb_node.with_size(36); // 9 i16 values * 2 * 2 bytes
        }
        root = root.add_child(fb_node);
    }

    if let Some(water) = &adt.water_data {
        let water_chunks = water
            .entries
            .iter()
            .filter(|e| e.header.has_liquid())
            .count();

        // Count total instances and vertex data stats
        let mut total_instances = 0;
        let mut lvf_counts = [0_usize; 4]; // LVF 0-3
        let mut has_vertex_data = 0;
        let mut has_exists_bitmap = 0;

        for entry in &water.entries {
            if entry.header.has_liquid() {
                total_instances += entry.instances.len();

                for (idx, _instance) in entry.instances.iter().enumerate() {
                    // Count vertex data by format
                    if let Some(vertex_data) = entry.vertex_data.get(idx).and_then(|v| v.as_ref()) {
                        has_vertex_data += 1;
                        let format_idx = vertex_data.format() as usize;
                        if format_idx < 4 {
                            lvf_counts[format_idx] += 1;
                        }
                    }

                    // Count exists bitmaps
                    if entry
                        .exists_bitmaps
                        .get(idx)
                        .and_then(|b| b.as_ref())
                        .is_some()
                    {
                        has_exists_bitmap += 1;
                    }
                }
            }
        }

        let mut water_node = TreeNode::new(
            format!("MH2O ({} chunks with water)", water_chunks),
            NodeType::Chunk,
        );
        if !no_metadata {
            water_node = water_node.with_metadata("expansion", "WotLK+");
            water_node = water_node.with_metadata("instances", &total_instances.to_string());

            if has_vertex_data > 0 {
                water_node = water_node
                    .with_metadata("vertex_data", &format!("{} instances", has_vertex_data));
            }
            if has_exists_bitmap > 0 {
                water_node = water_node.with_metadata(
                    "exists_bitmaps",
                    &format!("{} instances", has_exists_bitmap),
                );
            }
        }

        // Add LVF breakdown if we have vertex data
        if !compact && has_vertex_data > 0 {
            let mut lvf_node =
                TreeNode::new("Vertex Data Formats".to_string(), NodeType::Directory);

            if lvf_counts[0] > 0 {
                let mut lvf0_node = TreeNode::new(
                    format!("LVF 0: HeightDepth ({} instances)", lvf_counts[0]),
                    NodeType::Data,
                );
                if !no_metadata {
                    lvf0_node = lvf0_node.with_metadata("size", "5 bytes/vertex");
                }
                lvf_node = lvf_node.add_child(lvf0_node);
            }

            if lvf_counts[1] > 0 {
                let mut lvf1_node = TreeNode::new(
                    format!("LVF 1: HeightUv ({} instances)", lvf_counts[1]),
                    NodeType::Data,
                );
                if !no_metadata {
                    lvf1_node = lvf1_node.with_metadata("size", "8 bytes/vertex");
                }
                lvf_node = lvf_node.add_child(lvf1_node);
            }

            if lvf_counts[2] > 0 {
                let mut lvf2_node = TreeNode::new(
                    format!("LVF 2: DepthOnly ({} instances)", lvf_counts[2]),
                    NodeType::Data,
                );
                if !no_metadata {
                    lvf2_node = lvf2_node.with_metadata("size", "1 byte/vertex");
                }
                lvf_node = lvf_node.add_child(lvf2_node);
            }

            if lvf_counts[3] > 0 {
                let mut lvf3_node = TreeNode::new(
                    format!("LVF 3: HeightUvDepth ({} instances)", lvf_counts[3]),
                    NodeType::Data,
                );
                if !no_metadata {
                    lvf3_node = lvf3_node.with_metadata("size", "9 bytes/vertex");
                }
                lvf_node = lvf_node.add_child(lvf3_node);
            }

            water_node = water_node.add_child(lvf_node);
        }

        root = root.add_child(water_node);
    }

    if let Some(texture_flags) = &adt.texture_flags {
        let mut tf_node = TreeNode::new(
            format!("MTXF ({} texture flags)", texture_flags.flags.len()),
            NodeType::Chunk,
        );
        if !no_metadata {
            tf_node = tf_node.with_metadata("expansion", "WotLK 3.x+");
        }
        root = root.add_child(tf_node);
    }

    if let Some(amp) = &adt.texture_amplifier {
        let mut amp_node = TreeNode::new(
            format!("MAMP ({} amplifiers)", amp.amplifier),
            NodeType::Chunk,
        );
        if !no_metadata {
            amp_node = amp_node.with_metadata("expansion", "Cataclysm+");
        }
        root = root.add_child(amp_node);
    }

    if let Some(params) = &adt.texture_params {
        let mut params_node = TreeNode::new(
            format!("MTXP ({} texture params)", params.entries.len()),
            NodeType::Chunk,
        );
        if !no_metadata {
            params_node = params_node.with_metadata("expansion", "MoP+");
        }
        root = root.add_child(params_node);
    }

    // Blend mesh system (MoP+)
    if let Some(headers) = &adt.blend_mesh_headers {
        let mut blend_node =
            TreeNode::new("Blend Mesh System (MoP+)".to_string(), NodeType::Directory);

        let mbmh_node = TreeNode::new(
            format!("MBMH ({} headers)", headers.entries.len()),
            NodeType::Chunk,
        );
        blend_node = blend_node.add_child(mbmh_node);

        if let Some(bounds) = &adt.blend_mesh_bounds {
            let mbbb_node = TreeNode::new(
                format!("MBBB ({} bounding boxes)", bounds.entries.len()),
                NodeType::Chunk,
            );
            blend_node = blend_node.add_child(mbbb_node);
        }

        if let Some(vertices) = &adt.blend_mesh_vertices {
            let mbnv_node = TreeNode::new(
                format!("MBNV ({} vertices)", vertices.vertices.len()),
                NodeType::Chunk,
            );
            blend_node = blend_node.add_child(mbnv_node);
        }

        if let Some(indices) = &adt.blend_mesh_indices {
            let mbmi_node = TreeNode::new(
                format!("MBMI ({} indices)", indices.indices.len()),
                NodeType::Chunk,
            );
            blend_node = blend_node.add_child(mbmi_node);
        }

        root = root.add_child(blend_node);
    }

    root
}

fn build_tex_adt_tree(
    mut root: crate::utils::tree::TreeNode,
    adt: &wow_adt::api::Tex0Adt,
    no_metadata: bool,
    compact: bool,
) -> crate::utils::tree::TreeNode {
    use crate::utils::tree::{NodeType, TreeNode};

    // Textures
    if !adt.textures.is_empty() {
        let mut tex_node = TreeNode::new(
            format!("MTEX ({} textures)", adt.textures.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            tex_node = tex_node.with_metadata("type", "Texture filenames");
        }

        for (i, texture) in adt
            .textures
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(texture.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            tex_node = tex_node.add_child(file_node);
        }

        if adt.textures.len() > 10 && !compact {
            tex_node = tex_node.add_child(TreeNode::new(
                format!("... and {} more textures", adt.textures.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(tex_node);
    }

    // MCNK texture chunks
    if !adt.mcnk_textures.is_empty() {
        let mut mcnk_node = TreeNode::new(
            format!("MCNK Texture Data ({} chunks)", adt.mcnk_textures.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            mcnk_node = mcnk_node.with_metadata("type", "Per-chunk texture layers");
        }

        // Show first few chunks
        for chunk in adt.mcnk_textures.iter().take(if compact { 2 } else { 4 }) {
            let row = chunk.index / 16;
            let col = chunk.index % 16;
            let mut chunk_node = TreeNode::new(format!("Chunk [{},{}]", row, col), NodeType::Data);

            if let Some(layers) = &chunk.layers {
                chunk_node = chunk_node.with_metadata("layers", &layers.layers.len().to_string());
            }
            if chunk.alpha_maps.is_some() {
                chunk_node = chunk_node.with_metadata("alpha", "present");
            }

            mcnk_node = mcnk_node.add_child(chunk_node);
        }

        if adt.mcnk_textures.len() > 4 && !compact {
            mcnk_node = mcnk_node.add_child(TreeNode::new(
                format!("... and {} more chunks", adt.mcnk_textures.len() - 4),
                NodeType::Data,
            ));
        }

        root = root.add_child(mcnk_node);
    }

    // Texture parameters
    if let Some(params) = &adt.texture_params {
        let mut params_node = TreeNode::new(
            format!("MTXP ({} params)", params.entries.len()),
            NodeType::Chunk,
        );
        if !no_metadata {
            params_node = params_node.with_metadata("expansion", "MoP+");
        }
        root = root.add_child(params_node);
    }

    root
}

fn build_obj_adt_tree(
    mut root: crate::utils::tree::TreeNode,
    adt: &wow_adt::api::Obj0Adt,
    show_refs: bool,
    no_metadata: bool,
    compact: bool,
) -> crate::utils::tree::TreeNode {
    use crate::utils::tree::{NodeType, TreeNode};

    // M2 Models
    if !adt.models.is_empty() {
        let mut model_node = TreeNode::new(
            format!("MMDX/MMID ({} models)", adt.models.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            model_node = model_node.with_metadata("type", "M2 model references");
        }

        for (i, model) in adt
            .models
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(model.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            if show_refs {
                file_node =
                    file_node.with_external_ref(model, crate::utils::tree::detect_ref_type(model));
            }
            model_node = model_node.add_child(file_node);
        }

        if adt.models.len() > 10 && !compact {
            model_node = model_node.add_child(TreeNode::new(
                format!("... and {} more models", adt.models.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(model_node);
    }

    // WMOs
    if !adt.wmos.is_empty() {
        let mut wmo_node = TreeNode::new(
            format!("MWMO/MWID ({} WMOs)", adt.wmos.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            wmo_node = wmo_node.with_metadata("type", "WMO object references");
        }

        for (i, wmo) in adt
            .wmos
            .iter()
            .enumerate()
            .take(if compact { 3 } else { 10 })
        {
            let mut file_node = TreeNode::new(wmo.clone(), NodeType::File);
            if !no_metadata {
                file_node = file_node.with_metadata("index", &i.to_string());
            }
            if show_refs {
                file_node =
                    file_node.with_external_ref(wmo, crate::utils::tree::detect_ref_type(wmo));
            }
            wmo_node = wmo_node.add_child(file_node);
        }

        if adt.wmos.len() > 10 && !compact {
            wmo_node = wmo_node.add_child(TreeNode::new(
                format!("... and {} more WMOs", adt.wmos.len() - 10),
                NodeType::Data,
            ));
        }

        root = root.add_child(wmo_node);
    }

    // Placements
    if !adt.doodad_placements.is_empty() {
        let mddf_node = TreeNode::new(
            format!("MDDF ({} doodad placements)", adt.doodad_placements.len()),
            NodeType::Directory,
        );
        root = root.add_child(mddf_node);
    }

    if !adt.wmo_placements.is_empty() {
        let modf_node = TreeNode::new(
            format!("MODF ({} WMO placements)", adt.wmo_placements.len()),
            NodeType::Directory,
        );
        root = root.add_child(modf_node);
    }

    // MCNK object references
    if !adt.mcnk_objects.is_empty() {
        let mut mcnk_node = TreeNode::new(
            format!("MCNK Object References ({} chunks)", adt.mcnk_objects.len()),
            NodeType::Directory,
        );

        if !no_metadata {
            mcnk_node = mcnk_node.with_metadata("type", "Per-chunk object indices");
        }

        // Show first few chunks
        for chunk in adt.mcnk_objects.iter().take(if compact { 2 } else { 4 }) {
            let row = chunk.index / 16;
            let col = chunk.index % 16;
            let mut chunk_node = TreeNode::new(format!("Chunk [{},{}]", row, col), NodeType::Data);

            if !chunk.doodad_refs.is_empty() {
                chunk_node =
                    chunk_node.with_metadata("doodads", &chunk.doodad_refs.len().to_string());
            }
            if !chunk.wmo_refs.is_empty() {
                chunk_node = chunk_node.with_metadata("wmos", &chunk.wmo_refs.len().to_string());
            }

            mcnk_node = mcnk_node.add_child(chunk_node);
        }

        if adt.mcnk_objects.len() > 4 && !compact {
            mcnk_node = mcnk_node.add_child(TreeNode::new(
                format!("... and {} more chunks", adt.mcnk_objects.len() - 4),
                NodeType::Data,
            ));
        }

        root = root.add_child(mcnk_node);
    }

    root
}

#[cfg(feature = "parallel")]
fn execute_batch(
    pattern: &str,
    _output_dir: &str,
    operation: &str,
    _to_version: Option<&str>,
    threads: Option<usize>,
) -> Result<()> {
    use glob::glob;
    use rayon::prelude::*;
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    // Set thread count
    if let Some(num_threads) = threads {
        rayon::ThreadPoolBuilder::new()
            .num_threads(num_threads)
            .build_global()
            .context("Failed to set thread count")?;
    }

    // Find files
    let files: Vec<_> = glob(pattern)
        .context("Invalid glob pattern")?
        .filter_map(|p| p.ok())
        .collect();

    if files.is_empty() {
        anyhow::bail!("No files found matching pattern: {}", pattern);
    }

    println!("Batch Processing {} files", files.len());
    println!("Operation: {operation}");
    println!();

    let processed = Arc::new(AtomicUsize::new(0));
    let failed = Arc::new(AtomicUsize::new(0));

    // Process files in parallel
    files.par_iter().for_each(|file| {
        let result = match operation {
            "validate" => {
                let file_handle = File::open(file);
                match file_handle {
                    Ok(f) => {
                        let mut reader = BufReader::new(f);
                        parse_adt(&mut reader)
                            .map(|_| ())
                            .map_err(|e| anyhow::anyhow!("{}", e))
                    }
                    Err(e) => Err(anyhow::anyhow!("{}", e)),
                }
            }
            _ => Err(anyhow::anyhow!("Invalid operation: {}", operation)),
        };

        match result {
            Ok(()) => {
                processed.fetch_add(1, Ordering::Relaxed);
                println!("{}", file.display());
            }
            Err(e) => {
                failed.fetch_add(1, Ordering::Relaxed);
                eprintln!("{}: {}", file.display(), e);
            }
        }
    });

    let total_processed = processed.load(Ordering::Relaxed);
    let total_failed = failed.load(Ordering::Relaxed);

    println!("\nResults:");
    println!("  Processed: {total_processed}");
    println!("  Failed: {total_failed}");

    if total_failed > 0 {
        anyhow::bail!("{} files failed processing", total_failed);
    }

    Ok(())
}

#[cfg(not(feature = "parallel"))]
#[allow(dead_code)]
fn execute_batch(_: &str, _: &str, _: &str, _: Option<&str>, _: Option<usize>) -> Result<()> {
    anyhow::bail!("Batch command requires the 'parallel' feature to be enabled")
}

// Helper functions
fn format_version(version: &AdtVersion) -> &'static str {
    match version {
        AdtVersion::VanillaEarly => "Classic Early (1.0-1.8)",
        AdtVersion::VanillaLate => "Classic Late (1.9+)",
        AdtVersion::TBC => "The Burning Crusade (2.x)",
        AdtVersion::WotLK => "Wrath of the Lich King (3.x)",
        AdtVersion::Cataclysm => "Cataclysm (4.x)",
        AdtVersion::MoP => "Mists of Pandaria (5.x)",
    }
}

fn add_chunk_row(table: &mut Table, name: &str, count: usize) {
    table.add_row(Row::new(vec![
        Cell::new(name),
        Cell::new(&count.to_string()),
        Cell::new(if count > 0 { "" } else { "" }),
    ]));
}