cobble-lang 0.6.1

A modern, Python-like language for creating Minecraft Data Packs
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
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
use super::string_reader::StringReader;

/// Parse an argument according to the given Brigadier/Minecraft parser type.
/// Returns true and advances the cursor on success, or returns false with cursor unchanged.
pub fn parse_argument(
    reader: &mut StringReader,
    parser_type: &str,
    properties: Option<&serde_json::Value>,
) -> bool {
    // Handle whole-argument macro placeholders. Multi-token parsers try their
    // native parse first so `$(x) $(y) $(z)` is treated as one vec3, not as a
    // single macro followed by stray tokens.
    if reader.peek() == Some('$') && !is_multi_token_parser(parser_type) {
        let saved = reader.cursor();
        if reader.try_read_macro() {
            if reader.at_token_boundary() {
                return true;
            }
            reader.set_cursor(saved);
        }
    }

    match parser_type {
        // === Brigadier core types ===
        "brigadier:bool" => parse_bool(reader),
        "brigadier:integer" => parse_integer(reader, properties),
        "brigadier:float" => parse_brigadier_float(reader, properties),
        "brigadier:double" => parse_brigadier_double(reader, properties),
        "brigadier:string" => parse_brigadier_string(reader, properties),

        // === Simple word-accepting types ===
        "minecraft:objective"
        | "minecraft:team"
        | "minecraft:scoreboard_slot"
        | "minecraft:swizzle"
        | "minecraft:item_slot"
        | "minecraft:item_slots"
        | "minecraft:dialog"
        | "minecraft:objective_criteria" => parse_word(reader),
        "minecraft:hex_color" => parse_hex_color(reader),
        "minecraft:color" => parse_literal_word(
            reader,
            &[
                "black",
                "dark_blue",
                "dark_green",
                "dark_aqua",
                "dark_red",
                "dark_purple",
                "gold",
                "gray",
                "dark_gray",
                "blue",
                "green",
                "aqua",
                "red",
                "light_purple",
                "yellow",
                "white",
                "reset",
            ],
        ),
        "minecraft:gamemode" => {
            parse_literal_word(reader, &["survival", "creative", "adventure", "spectator"])
        }
        "minecraft:entity_anchor" => parse_literal_word(reader, &["eyes", "feet"]),
        "minecraft:heightmap" => parse_literal_word(
            reader,
            &[
                "world_surface",
                "motion_blocking",
                "motion_blocking_no_leaves",
                "ocean_floor",
            ],
        ),
        "minecraft:template_mirror" => {
            parse_literal_word(reader, &["none", "front_back", "left_right"])
        }
        "minecraft:template_rotation" => parse_literal_word(
            reader,
            &[
                "none",
                "clockwise_90",
                "clockwise_180",
                "counterclockwise_90",
            ],
        ),

        // === Operations ===
        "minecraft:operation" => parse_operation(reader),

        // === Ranges ===
        "minecraft:int_range" => parse_int_range(reader),
        "minecraft:float_range" => parse_float_range(reader),

        // === Time ===
        "minecraft:time" => parse_time(reader, properties),

        // === Entity/player selectors ===
        "minecraft:entity" | "minecraft:score_holder" | "minecraft:game_profile" => {
            parse_entity(reader, parser_type, properties)
        }

        // === Resource locations ===
        "minecraft:resource_location"
        | "minecraft:function"
        | "minecraft:dimension"
        | "minecraft:mob_effect"
        | "minecraft:resource"
        | "minecraft:resource_key"
        | "minecraft:loot_modifier"
        | "minecraft:loot_predicate"
        | "minecraft:loot_table" => parse_resource_location(reader),

        "minecraft:resource_or_tag"
        | "minecraft:resource_or_tag_key"
        | "minecraft:resource_selector" => parse_resource_or_tag(reader),

        // === Coordinates ===
        "minecraft:block_pos" => parse_block_pos(reader),
        "minecraft:column_pos" => parse_column_pos(reader),
        "minecraft:vec2" | "minecraft:rotation" => parse_vec2(reader),
        "minecraft:vec3" => parse_vec3(reader),

        // === Particle ===
        "minecraft:particle" => parse_particle(reader),

        // === UUID ===
        "minecraft:uuid" => parse_uuid(reader),

        // === JSON/NBT complex types ===
        "minecraft:component" | "minecraft:style" => parse_component(reader),
        "minecraft:nbt_compound_tag" => parse_nbt_compound(reader),
        "minecraft:nbt_tag" => parse_nbt_tag(reader),
        "minecraft:nbt_path" => parse_nbt_path(reader),

        // === Block/item with state/components ===
        "minecraft:block_state" | "minecraft:block_predicate" => parse_block_state(reader),
        "minecraft:item_stack" | "minecraft:item_predicate" => parse_item_stack(reader),

        // === Message (greedy) ===
        "minecraft:message" => parse_message(reader),

        // Unknown parser — accept any word liberally
        _ => parse_word(reader),
    }
}

fn is_multi_token_parser(parser_type: &str) -> bool {
    matches!(
        parser_type,
        "minecraft:block_pos"
            | "minecraft:column_pos"
            | "minecraft:vec2"
            | "minecraft:rotation"
            | "minecraft:vec3"
    )
}

// ============================================================================
// Brigadier core types
// ============================================================================

fn parse_bool(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.try_read_literal("true") || reader.try_read_literal("false") {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_integer(reader: &mut StringReader, properties: Option<&serde_json::Value>) -> bool {
    let saved = reader.cursor();
    if let Some(value) = reader.read_integer() {
        if !integer_in_bounds(value, properties) {
            reader.set_cursor(saved);
            return false;
        }
        if reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    false
}

fn integer_in_bounds(value: i64, properties: Option<&serde_json::Value>) -> bool {
    let min = properties
        .and_then(|p| p.get("min"))
        .and_then(|value| value.as_i64());
    let max = properties
        .and_then(|p| p.get("max"))
        .and_then(|value| value.as_i64());

    if let Some(min) = min {
        if value < min {
            return false;
        }
    }
    if let Some(max) = max {
        if value > max {
            return false;
        }
    }
    true
}

fn float_in_bounds(value: f64, properties: Option<&serde_json::Value>) -> bool {
    let min = properties
        .and_then(|p| p.get("min"))
        .and_then(|value| value.as_f64());
    let max = properties
        .and_then(|p| p.get("max"))
        .and_then(|value| value.as_f64());

    if let Some(min) = min {
        if value < min {
            return false;
        }
    }
    if let Some(max) = max {
        if value > max {
            return false;
        }
    }
    true
}

fn parse_brigadier_float(
    reader: &mut StringReader,
    properties: Option<&serde_json::Value>,
) -> bool {
    let saved = reader.cursor();
    if let Some(value) = reader.read_float() {
        if !float_in_bounds(value, properties) {
            reader.set_cursor(saved);
            return false;
        }
        if reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    false
}

fn parse_brigadier_double(
    reader: &mut StringReader,
    properties: Option<&serde_json::Value>,
) -> bool {
    let saved = reader.cursor();
    if let Some(value) = reader.read_float() {
        if !float_in_bounds(value, properties) {
            reader.set_cursor(saved);
            return false;
        }
        if reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    false
}

fn parse_brigadier_string(
    reader: &mut StringReader,
    properties: Option<&serde_json::Value>,
) -> bool {
    let string_type = properties
        .and_then(|p| p.get("type"))
        .and_then(|t| t.as_str())
        .unwrap_or("word");

    match string_type {
        "greedy" => {
            if reader.can_read() {
                reader.read_greedy();
                true
            } else {
                false
            }
        }
        "phrase" => {
            // Quotable phrase: quoted string or single word
            let saved = reader.cursor();
            if reader.read_string() && reader.at_token_boundary() {
                true
            } else {
                reader.set_cursor(saved);
                false
            }
        }
        _ => {
            // "word" — single unquoted word
            let saved = reader.cursor();
            let s = reader.read_unquoted_string();
            if !s.is_empty() && reader.at_token_boundary() {
                true
            } else {
                reader.set_cursor(saved);
                false
            }
        }
    }
}

// ============================================================================
// Simple word parser
// ============================================================================

fn parse_word(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    let s = reader.read_unquoted_string();
    if !s.is_empty() && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_literal_word(reader: &mut StringReader, allowed: &[&str]) -> bool {
    let saved = reader.cursor();
    let value = reader.read_unquoted_string();
    if allowed.contains(&value.as_str()) && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_hex_color(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.peek() != Some('#') {
        return false;
    }
    reader.read_char();
    for _ in 0..6 {
        match reader.peek() {
            Some(ch) if ch.is_ascii_hexdigit() => {
                reader.read_char();
            }
            _ => {
                reader.set_cursor(saved);
                return false;
            }
        }
    }
    if reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

// ============================================================================
// Operation parser
// ============================================================================

fn parse_operation(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    let ops = ["+=", "-=", "*=", "/=", "%=", "><", "=", "<", ">"];
    for op in ops {
        reader.set_cursor(saved);
        let chars: Vec<char> = op.chars().collect();
        let mut matched = true;
        for &ch in &chars {
            if reader.peek() == Some(ch) {
                reader.read_char();
            } else {
                matched = false;
                break;
            }
        }
        if matched && reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    false
}

// ============================================================================
// Range parsers
// ============================================================================

fn parse_int_range(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    // Try: N..N, N.., ..N, or just N
    let has_left = reader.read_integer().is_some();

    if reader.can_read() && reader.peek() == Some('.') {
        let dot_pos = reader.cursor();
        reader.read_char(); // first dot
        if reader.peek() == Some('.') {
            reader.read_char(); // second dot
                                // Try to read right side
            let has_right = reader.read_integer().is_some();
            if (has_left || has_right) && reader.at_token_boundary() {
                return true;
            }
        }
        // Not a range, backtrack to dots
        reader.set_cursor(dot_pos);
    }

    if has_left && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn parse_float_range(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    let has_left = reader.read_float().is_some();

    if reader.can_read() && reader.peek() == Some('.') {
        let dot_pos = reader.cursor();
        reader.read_char();
        if reader.peek() == Some('.') {
            reader.read_char();
            let has_right = reader.read_float().is_some();
            if (has_left || has_right) && reader.at_token_boundary() {
                return true;
            }
        }
        reader.set_cursor(dot_pos);
    }

    if has_left && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

// ============================================================================
// Time parser
// ============================================================================

fn parse_time(reader: &mut StringReader, properties: Option<&serde_json::Value>) -> bool {
    let saved = reader.cursor();
    if let Some(value) = reader.read_float() {
        if !float_in_bounds(value, properties) {
            reader.set_cursor(saved);
            return false;
        }
        // Optional suffix: d, s, t
        if reader.can_read() {
            let ch = reader.peek().unwrap();
            if ch == 'd' || ch == 's' || ch == 't' {
                reader.read_char();
            }
        }
        if reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    false
}

// ============================================================================
// Entity/selector parsers
// ============================================================================

fn parse_entity(
    reader: &mut StringReader,
    parser_type: &str,
    properties: Option<&serde_json::Value>,
) -> bool {
    let saved = reader.cursor();

    // Try selector (@a, @s, @p, @e, @r, etc.)
    if reader.peek() == Some('@') {
        let selector_start = reader.cursor();
        if reader.read_selector() && reader.at_token_boundary() {
            let selector = reader.slice(selector_start, reader.cursor());
            if selector_allowed(&selector, parser_type, properties) {
                return true;
            }
        }
        reader.set_cursor(saved);
    }

    if parser_type == "minecraft:entity" {
        reader.set_cursor(saved);
        if reader.try_read_macro() {
            if reader.can_read() && reader.peek() == Some('[') && !reader.read_nbt() {
                reader.set_cursor(saved);
                return false;
            }
            if reader.at_token_boundary() {
                return true;
            }
        }
        reader.set_cursor(saved);
    }

    if parser_type == "minecraft:game_profile" {
        reader.set_cursor(saved);
        if reader.try_read_macro() {
            if reader.can_read() && reader.peek() == Some('[') && !reader.read_nbt() {
                reader.set_cursor(saved);
                return false;
            }
            if reader.at_token_boundary() {
                return true;
            }
        }
        reader.set_cursor(saved);
    }

    if parser_type == "minecraft:score_holder" {
        reader.set_cursor(saved);
        if reader.try_read_macro() {
            return true;
        }
        reader.set_cursor(saved);
    }

    // For score_holder, accept *
    if parser_type == "minecraft:score_holder" && reader.peek() == Some('*') {
        reader.read_char();
        if reader.at_token_boundary() {
            return true;
        }
        reader.set_cursor(saved);
    }

    // Try quoted string (player name can be quoted)
    if reader.peek() == Some('"') || reader.peek() == Some('\'') {
        if reader.read_quoted_string() && reader.at_token_boundary() {
            return true;
        }
        reader.set_cursor(saved);
    }

    // Try UUID format
    let uuid_saved = reader.cursor();
    if try_read_uuid(reader) && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(uuid_saved);

    // Player name (unquoted word, can include hyphens for UUIDs)
    let s = reader.read_unquoted_string();
    if !s.is_empty() && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn selector_allowed(
    selector: &str,
    parser_type: &str,
    properties: Option<&serde_json::Value>,
) -> bool {
    let selector_kind = selector.chars().nth(1);
    if !matches!(
        selector_kind,
        Some('p') | Some('a') | Some('r') | Some('s') | Some('e') | Some('n')
    ) {
        return false;
    }

    if !selector_arguments_allowed(selector) {
        return false;
    }

    if parser_type == "minecraft:score_holder" {
        return true;
    }

    if parser_type == "minecraft:game_profile" && selector.starts_with("@e") {
        return false;
    }

    let entity_type = properties
        .and_then(|p| p.get("type"))
        .and_then(|value| value.as_str());
    let amount = properties
        .and_then(|p| p.get("amount"))
        .and_then(|value| value.as_str());

    if entity_type == Some("players") && selector_kind == Some('e') {
        return false;
    }

    if amount == Some("single") && matches!(selector_kind, Some('a') | Some('e')) {
        return selector_contains_limit_one(selector);
    }

    true
}

fn selector_arguments_allowed(selector: &str) -> bool {
    let Some(args_start) = selector.find('[') else {
        return true;
    };
    let args = selector[args_start + 1..].trim_end_matches(']');
    if args.trim().is_empty() {
        return true;
    }

    split_selector_arguments(args)
        .iter()
        .all(|part| selector_argument_allowed(part))
}

fn selector_argument_allowed(part: &str) -> bool {
    let part = part.trim();
    let Some((key, value)) = part.split_once('=') else {
        let key = part.trim_start_matches('!');
        return selector_key_allowed(key);
    };
    let key = key.trim().trim_start_matches('!');
    let value = value.trim();
    if !selector_key_allowed(key) {
        return false;
    }

    match key {
        "limit" => value.parse::<i32>().is_ok_and(|limit| limit >= 1),
        "distance" | "x_rotation" | "y_rotation" => {
            let mut reader = StringReader::new(value.trim_start_matches('!'));
            parse_float_range(&mut reader) && !reader.can_read()
        }
        "level" => {
            let mut reader = StringReader::new(value.trim_start_matches('!'));
            parse_int_range(&mut reader) && !reader.can_read()
        }
        "sort" => matches!(value, "nearest" | "furthest" | "random" | "arbitrary"),
        "gamemode" => matches!(
            value.trim_start_matches('!'),
            "survival" | "creative" | "adventure" | "spectator"
        ),
        _ => true,
    }
}

fn selector_key_allowed(key: &str) -> bool {
    matches!(
        key,
        "x" | "y"
            | "z"
            | "dx"
            | "dy"
            | "dz"
            | "distance"
            | "scores"
            | "tag"
            | "team"
            | "limit"
            | "sort"
            | "level"
            | "gamemode"
            | "name"
            | "x_rotation"
            | "y_rotation"
            | "type"
            | "nbt"
            | "predicate"
            | "advancements"
    )
}

fn split_selector_arguments(args: &str) -> Vec<String> {
    let mut parts = Vec::new();
    let mut current = String::new();
    let mut depth = 0usize;
    let mut quote: Option<char> = None;
    let mut escape_next = false;

    for ch in args.chars() {
        if escape_next {
            current.push(ch);
            escape_next = false;
            continue;
        }
        if ch == '\\' && quote.is_some() {
            current.push(ch);
            escape_next = true;
            continue;
        }
        if let Some(active_quote) = quote {
            current.push(ch);
            if ch == active_quote {
                quote = None;
            }
            continue;
        }
        match ch {
            '"' | '\'' => {
                quote = Some(ch);
                current.push(ch);
            }
            '[' | '{' | '(' => {
                depth += 1;
                current.push(ch);
            }
            ']' | '}' | ')' => {
                depth = depth.saturating_sub(1);
                current.push(ch);
            }
            ',' if depth == 0 => {
                parts.push(current.trim().to_string());
                current.clear();
            }
            _ => current.push(ch),
        }
    }

    if !current.trim().is_empty() {
        parts.push(current.trim().to_string());
    }
    parts
}

fn selector_contains_limit_one(selector: &str) -> bool {
    let Some(args_start) = selector.find('[') else {
        return false;
    };
    let args = selector[args_start + 1..].trim_end_matches(']');
    args.split(',').any(|part| {
        let mut pieces = part.splitn(2, '=');
        let key = pieces.next().map(str::trim);
        let value = pieces.next().map(str::trim);
        key == Some("limit") && value == Some("1")
    })
}

// ============================================================================
// Resource location parsers
// ============================================================================

/// Read a resource location without checking for a token boundary.
/// Returns true if at least one character was consumed.
fn read_resource_location_chars(reader: &mut StringReader) -> bool {
    let mut has_chars = false;
    while reader.can_read() {
        let ch = reader.peek().unwrap();
        if ch == '$' {
            let saved = reader.cursor();
            if reader.try_read_macro() {
                has_chars = true;
                continue;
            }
            reader.set_cursor(saved);
            break;
        }
        if ch.is_ascii_lowercase()
            || ch.is_ascii_digit()
            || ch == '_'
            || ch == '.'
            || ch == '-'
            || ch == '/'
            || ch == ':'
        {
            reader.read_char();
            has_chars = true;
        } else {
            break;
        }
    }
    has_chars
}

fn parse_resource_location(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    if read_resource_location_chars(reader) && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn parse_resource_or_tag(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    // Optional # prefix for tags
    if reader.peek() == Some('#') {
        reader.read_char();
    }

    if parse_resource_location(reader) {
        return true;
    }

    reader.set_cursor(saved);
    false
}

// ============================================================================
// Coordinate parsers
// ============================================================================

fn parse_block_pos(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.read_coordinate() {
        if !reader.skip_required_whitespace() {
            reader.set_cursor(saved);
            return false;
        }
        if reader.read_coordinate() {
            if !reader.skip_required_whitespace() {
                reader.set_cursor(saved);
                return false;
            }
            if reader.read_coordinate() && reader.at_token_boundary() {
                return true;
            }
        }
    }
    reader.set_cursor(saved);
    if parse_whole_macro(reader) {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_column_pos(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.read_coordinate() {
        if !reader.skip_required_whitespace() {
            reader.set_cursor(saved);
            return false;
        }
        if reader.read_coordinate() && reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    if parse_whole_macro(reader) {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_vec2(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.read_coordinate() {
        if !reader.skip_required_whitespace() {
            reader.set_cursor(saved);
            return false;
        }
        if reader.read_coordinate() && reader.at_token_boundary() {
            return true;
        }
    }
    reader.set_cursor(saved);
    if parse_whole_macro(reader) {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_vec3(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.read_coordinate() {
        if !reader.skip_required_whitespace() {
            reader.set_cursor(saved);
            return false;
        }
        if reader.read_coordinate() {
            if !reader.skip_required_whitespace() {
                reader.set_cursor(saved);
                return false;
            }
            if reader.read_coordinate() && reader.at_token_boundary() {
                return true;
            }
        }
    }
    reader.set_cursor(saved);
    if parse_whole_macro(reader) {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_whole_macro(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if reader.try_read_macro() && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

// ============================================================================
// Particle parser
// ============================================================================

fn parse_particle(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    // Read the particle type (resource location)
    if !parse_resource_location(reader) {
        reader.set_cursor(saved);
        return false;
    }

    // Some particles have extra parameters. We liberally accept remaining
    // non-whitespace tokens until the next argument context would take over.
    // For now, just accept the resource location part.
    // Parameters like dust 1.0 0.0 0.0 1.0 would be handled by the
    // tree structure having additional argument nodes.
    true
}

// ============================================================================
// UUID parser
// ============================================================================

fn try_read_uuid(reader: &mut StringReader) -> bool {
    // UUID format: 8-4-4-4-12 hex digits with dashes
    // Or just a hex string. Be liberal.
    let saved = reader.cursor();
    let mut count = 0;
    while reader.can_read() {
        let ch = reader.peek().unwrap();
        if ch.is_ascii_hexdigit() || ch == '-' {
            reader.read_char();
            count += 1;
        } else {
            break;
        }
    }
    // A UUID should be at least 32 hex chars + 4 dashes = 36 chars
    // But be liberal: accept anything with hex and dashes that's long enough
    if count >= 32 && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_uuid(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();
    if try_read_uuid(reader) {
        return true;
    }
    reader.set_cursor(saved);
    false
}

// ============================================================================
// JSON/NBT complex types
// ============================================================================

fn parse_component(reader: &mut StringReader) -> bool {
    if !reader.can_read() {
        return false;
    }
    let saved = reader.cursor();
    let ch = reader.peek().unwrap();

    // JSON object or array
    if ch == '{' || ch == '[' {
        if reader.read_nbt() {
            return true;
        }
        reader.set_cursor(saved);
        return false;
    }

    // Quoted string (text component shorthand)
    if ch == '"' || ch == '\'' {
        if reader.read_quoted_string() {
            return true;
        }
        reader.set_cursor(saved);
        return false;
    }

    // Accept unquoted too for liberal parsing (e.g., plain text components)
    let s = reader.read_unquoted_string();
    if !s.is_empty() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn parse_nbt_compound(reader: &mut StringReader) -> bool {
    if reader.peek() != Some('{') {
        return false;
    }
    let saved = reader.cursor();
    if reader.read_nbt() && reader.at_token_boundary() {
        return true;
    }
    reader.set_cursor(saved);
    false
}

fn parse_nbt_tag(reader: &mut StringReader) -> bool {
    if !reader.can_read() {
        return false;
    }
    let saved = reader.cursor();
    let ch = reader.peek().unwrap();

    // Compound or list
    if ch == '{' || ch == '[' {
        if reader.read_nbt() && reader.at_token_boundary() {
            return true;
        }
        reader.set_cursor(saved);
        return false;
    }

    // Quoted string
    if ch == '"' || ch == '\'' {
        if reader.read_quoted_string() && reader.at_token_boundary() {
            return true;
        }
        reader.set_cursor(saved);
        return false;
    }

    // Number (with optional type suffix like 1b, 2s, 3L, 4.0f, 5.0d)
    if ch == '-' || ch == '+' || ch.is_ascii_digit() {
        let _ = reader.read_float();
        // Skip optional NBT type suffix
        if reader.can_read() {
            let suffix = reader.peek().unwrap();
            if "bBsSlLfFdD".contains(suffix) {
                reader.read_char();
            }
        }
        if reader.at_token_boundary() {
            return true;
        }
        reader.set_cursor(saved);
        return false;
    }

    // Unquoted string
    let s = reader.read_unquoted_string();
    if !s.is_empty() && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn parse_nbt_path(reader: &mut StringReader) -> bool {
    if !reader.can_read() {
        return false;
    }
    let saved = reader.cursor();

    // NBT path: sequence of identifiers, dots, brackets, and quoted strings
    // e.g., foo.bar[0].baz, "quoted key".value, {filter}.field
    let mut has_content = false;

    while reader.can_read() {
        let ch = reader.peek().unwrap();

        if ch == ' ' {
            break;
        }

        if ch == '"' || ch == '\'' {
            if !reader.read_quoted_string() {
                break;
            }
            has_content = true;
            continue;
        }

        if ch == '{' || ch == '[' {
            if !reader.read_nbt() {
                break;
            }
            has_content = true;
            continue;
        }

        if ch == '.' || ch == '_' || ch.is_ascii_alphanumeric() || ch == '-' {
            reader.read_char();
            has_content = true;
            continue;
        }

        break;
    }

    if has_content && reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

// ============================================================================
// Block/item state parsers
// ============================================================================

fn parse_block_state(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    // Optional # for predicates (tags)
    if reader.peek() == Some('#') {
        reader.read_char();
    }

    // Resource location (don't require token boundary yet — [...] or {...} may follow)
    if !read_resource_location_chars(reader) {
        reader.set_cursor(saved);
        return false;
    }

    // Optional block states [key=value,...]
    if reader.can_read() && reader.peek() == Some('[') && !reader.read_nbt() {
        reader.set_cursor(saved);
        return false;
    }

    // Optional NBT data {...}
    if reader.can_read() && reader.peek() == Some('{') && !reader.read_nbt() {
        reader.set_cursor(saved);
        return false;
    }

    if reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

fn parse_item_stack(reader: &mut StringReader) -> bool {
    let saved = reader.cursor();

    // Optional # for predicates (tags)
    if reader.peek() == Some('#') {
        reader.read_char();
    }

    // Resource location (don't require token boundary yet — [...] or {...} may follow)
    if !read_resource_location_chars(reader) {
        reader.set_cursor(saved);
        return false;
    }

    // Optional components [...] (1.20.5+ format)
    if reader.can_read() && reader.peek() == Some('[') && !reader.read_nbt() {
        reader.set_cursor(saved);
        return false;
    }

    // Optional NBT data {...} (legacy format)
    if reader.can_read() && reader.peek() == Some('{') && !reader.read_nbt() {
        reader.set_cursor(saved);
        return false;
    }

    if reader.at_token_boundary() {
        return true;
    }

    reader.set_cursor(saved);
    false
}

// ============================================================================
// Message (greedy) parser
// ============================================================================

fn parse_message(reader: &mut StringReader) -> bool {
    if reader.can_read() {
        reader.read_greedy();
        true
    } else {
        false
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parse_bool() {
        let mut r = StringReader::new("true rest");
        assert!(parse_argument(&mut r, "brigadier:bool", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_integer() {
        let mut r = StringReader::new("42 rest");
        assert!(parse_argument(&mut r, "brigadier:integer", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_integer_bounds() {
        let props = serde_json::json!({"min": 1, "max": 64});
        let mut valid = StringReader::new("64 rest");
        assert!(parse_argument(
            &mut valid,
            "brigadier:integer",
            Some(&props)
        ));

        let mut too_low = StringReader::new("0 rest");
        assert!(!parse_argument(
            &mut too_low,
            "brigadier:integer",
            Some(&props)
        ));
        assert_eq!(too_low.cursor(), 0);

        let mut too_high = StringReader::new("65 rest");
        assert!(!parse_argument(
            &mut too_high,
            "brigadier:integer",
            Some(&props)
        ));
        assert_eq!(too_high.cursor(), 0);
    }

    #[test]
    fn test_parse_float() {
        let mut r = StringReader::new("3.14 rest");
        assert!(parse_argument(&mut r, "brigadier:float", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_float_bounds() {
        let props = serde_json::json!({"min": 0.0});
        let mut valid = StringReader::new("0.5 rest");
        assert!(parse_argument(&mut valid, "brigadier:float", Some(&props)));

        let mut invalid = StringReader::new("-0.5 rest");
        assert!(!parse_argument(
            &mut invalid,
            "brigadier:float",
            Some(&props)
        ));
        assert_eq!(invalid.cursor(), 0);
    }

    #[test]
    fn test_parse_greedy_string() {
        let props = serde_json::json!({"type": "greedy"});
        let mut r = StringReader::new("hello world rest");
        assert!(parse_argument(&mut r, "brigadier:string", Some(&props)));
        assert!(r.remaining().is_empty());
    }

    #[test]
    fn test_parse_word_string() {
        let props = serde_json::json!({"type": "word"});
        let mut r = StringReader::new("hello rest");
        assert!(parse_argument(&mut r, "brigadier:string", Some(&props)));
        assert_eq!(r.remaining(), " rest");

        let mut invalid = StringReader::new("hello{\"text\":\"bad\"}");
        assert!(!parse_argument(
            &mut invalid,
            "brigadier:string",
            Some(&props)
        ));
        assert_eq!(invalid.cursor(), 0);
    }

    #[test]
    fn test_parse_phrase_string_requires_boundary() {
        let props = serde_json::json!({"type": "phrase"});
        let mut invalid = StringReader::new("test{\"text\":\"bad\"}");
        assert!(!parse_argument(
            &mut invalid,
            "brigadier:string",
            Some(&props)
        ));
        assert_eq!(invalid.cursor(), 0);
    }

    #[test]
    fn test_parse_operation() {
        for op in &["+=", "-=", "*=", "/=", "%=", "><", "=", "<", ">"] {
            let input = format!("{} rest", op);
            let mut r = StringReader::new(&input);
            assert!(
                parse_argument(&mut r, "minecraft:operation", None),
                "Failed for op: {}",
                op
            );
        }

        for op in &["<=", ">="] {
            let input = format!("{} rest", op);
            let mut r = StringReader::new(&input);
            assert!(
                !parse_argument(&mut r, "minecraft:operation", None),
                "Invalid op should be rejected: {}",
                op
            );
            assert_eq!(r.cursor(), 0);
        }
    }

    #[test]
    fn test_parse_entity_selector() {
        let mut r = StringReader::new("@a[tag=foo] rest");
        assert!(parse_argument(&mut r, "minecraft:entity", None));
        assert_eq!(r.remaining(), " rest");

        for selector in [
            "@e[limit=abc]",
            "@e[limit=0]",
            "@e[distance=abc]",
            "@e[sort=sideways]",
            "@e[gamemode=flying]",
        ] {
            let mut invalid = StringReader::new(selector);
            assert!(
                !parse_argument(&mut invalid, "minecraft:entity", None),
                "selector should be rejected: {selector}"
            );
        }
    }

    #[test]
    fn test_parse_resource_location() {
        let mut r = StringReader::new("minecraft:stone rest");
        assert!(parse_argument(&mut r, "minecraft:resource_location", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_block_pos() {
        let mut r = StringReader::new("~ ~1 ~ rest");
        assert!(parse_argument(&mut r, "minecraft:block_pos", None));
        assert_eq!(r.remaining(), " rest");

        let mut invalid = StringReader::new("~~~ rest");
        assert!(!parse_argument(&mut invalid, "minecraft:block_pos", None));
        assert_eq!(invalid.cursor(), 0);
    }

    #[test]
    fn test_parse_vec3() {
        let mut r = StringReader::new("1.0 2.5 3.0 rest");
        assert!(parse_argument(&mut r, "minecraft:vec3", None));
        assert_eq!(r.remaining(), " rest");

        let mut invalid = StringReader::new("1.02.53.0 rest");
        assert!(!parse_argument(&mut invalid, "minecraft:vec3", None));
        assert_eq!(invalid.cursor(), 0);
    }

    #[test]
    fn test_parse_int_range() {
        let mut r = StringReader::new("1..5 rest");
        assert!(parse_argument(&mut r, "minecraft:int_range", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_nbt_compound() {
        let mut r = StringReader::new("{key:\"value\"} rest");
        assert!(parse_argument(&mut r, "minecraft:nbt_compound_tag", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_block_state() {
        let mut r = StringReader::new("minecraft:oak_stairs[facing=north]{Items:[]} rest");
        assert!(parse_argument(&mut r, "minecraft:block_state", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_message() {
        let mut r = StringReader::new("hello world @a");
        assert!(parse_argument(&mut r, "minecraft:message", None));
        assert!(r.remaining().is_empty());
    }

    #[test]
    fn test_parse_time() {
        let mut r = StringReader::new("5t rest");
        assert!(parse_argument(&mut r, "minecraft:time", None));
        assert_eq!(r.remaining(), " rest");

        let mut r = StringReader::new("10 rest");
        assert!(parse_argument(&mut r, "minecraft:time", None));
        assert_eq!(r.remaining(), " rest");
    }

    #[test]
    fn test_parse_uuid_rejects_plain_words() {
        let mut invalid = StringReader::new("not-a-uuid rest");
        assert!(!parse_argument(&mut invalid, "minecraft:uuid", None));

        let mut valid = StringReader::new("123e4567-e89b-12d3-a456-426614174000 rest");
        assert!(parse_argument(&mut valid, "minecraft:uuid", None));
        assert_eq!(valid.remaining(), " rest");
    }
}