File size: 33,948 Bytes
b6a38d7 |
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 |
-- ========== GENERATED BY ClassDef Editor (Ctrl-Alt-F3) DO NOT EDIT MANUALLY! ==========
PlaceObj('PresetDef', {
DefEditorIcon = "CommonAssets/UI/Icons/calculator",
DefEditorMenubar = "Combat",
DefGlobalMap = "Archetypes",
group = "AI",
id = "AIArchetype",
PlaceObj('PropertyDefNestedList', {
'category', "Execution",
'id', "Behaviors",
'base_class', "AIBehavior",
}),
PlaceObj('PropertyDefChoice', {
'category', "Strategy",
'id', "PrefStance",
'name', "Stance Preference",
'help', "Stance to use in optimal positions",
'default', "Standing",
'items', function (self) return PresetGroupCombo("CombatStance", "Default") end,
}),
PlaceObj('PropertyDefChoice', {
'category', "Execution",
'id', "MoveStance",
'name', "Movement Stance",
'default', "Standing",
'items', function (self) return PresetGroupCombo("CombatStance", "Default") end,
}),
PlaceObj('PropertyDefNumber', {
'category', "Strategy",
'id', "OptLocSearchRadius",
'name', "Optimal Location Search Radius",
'help', "(in tiles)",
'default', 20,
'min', 1,
'max', 100,
}),
PlaceObj('PropertyDefNestedList', {
'category', "Strategy",
'id', "OptLocPolicies",
'name', "Optimal Location Policies",
'base_class', "AIPositioningPolicy",
'class_filter', function (name, class, obj)
return class.optimal_location
end,
}),
PlaceObj('PropertyDefNumber', {
'category', "Targeting",
'id', "TargetBaseScore",
'name', "Base Score Weight",
'help', "Score weight based on default attack/aiming logic and chance to hit target.",
'default', 100,
'scale', "%",
}),
PlaceObj('PropertyDefNumber', {
'category', "Targeting",
'id', "TargetScoreRandomization",
'default', 20,
'scale', "%",
'min', 0,
'max', 100,
}),
PlaceObj('PropertyDefNestedList', {
'category', "Targeting",
'id', "TargetingPolicies",
'name', "Additional Policies",
'help', "Additoinal targeting policies that modify target score (optional)",
'base_class', "AITargetingPolicy",
}),
PlaceObj('PropertyDefNumber', {
'category', "Execution",
'id', "BaseAttackWeight",
'name', "Base Attack Weight",
'default', 100,
'min', 0,
}),
PlaceObj('PropertyDefNumber', {
'category', "Execution",
'id', "BaseMovementWeight",
'name', "Base Movement Weight",
'default', 100,
'min', 0,
}),
PlaceObj('PropertyDefSet', {
'category', "Execution",
'id', "BaseAttackTargeting",
'help', "if any parts are set the unit will pick one of them randomly for each of its basic attacks; otherwise it will always use the default (torso) attacks",
'items', function (self) return table.keys2(Presets.TargetBodyPart.Default) end,
}),
PlaceObj('PropertyDefChoice', {
'category', "Execution",
'id', "TargetChangePolicy",
'help', 'Defines the way the unit handles a stituation where the intended attack target is no longer valid (e.g. dead or Downed). "restart" will force a complete reevaluation of the unit\'s turn, allowing them to perform additional movement if necessary, while "recalc" will only recalculate potential targets from the current position (default behavior).',
'default', "recalc",
'items', function (self) return {"recalc", "restart"} end,
}),
PlaceObj('PropertyDefChoice', {
'category', "Execution",
'id', "FallbackAction",
'name', "Fallback Action",
'help', "Defines the way the unit reacts when the AI didn't find anything to do in its turn. By default units will revert to their Unaware status. If this is set to something else, the unit will first attempt to do the chosen action and still revert to Unaware if it fails to do so.",
'default', "revert",
'items', function (self) return { "revert", "overwatch" } end,
}),
PlaceObj('PropertyDefNestedList', {
'category', "Execution",
'id', "SignatureActions",
'name', "Signature Actions",
'base_class', "AISignatureAction",
'class_filter', function (name, class, obj)
return not class.hidden
end,
}),
})
PlaceObj('ClassDef', {
group = "AI",
id = "AIBaseHealPolicy",
PlaceObj('PropertyDefNumber', {
'id', "MaxHp",
'name', "Max Hit Points",
'help', "Percentage of max HP under which allies are considered as targets for healing.",
'default', 70,
'scale', "%",
'min', 0,
'max', 100,
}),
PlaceObj('PropertyDefNumber', {
'id', "BleedingWeight",
'name', "Bleeding Weight",
'help', "amount added to score if the target unit has Bleeding",
'default', 30,
'min', 0,
}),
PlaceObj('PropertyDefNumber', {
'id', "HpWeight",
'name', "Missing Hp Weight",
'help', "missing hp percent converts to score at this rate",
'default', 100,
'scale', "%",
'min', 0,
}),
PlaceObj('PropertyDefNumber', {
'id', "SelfHealMod",
'name', "Self Heal Modifier",
'help', "multiplies the result score when targeting the same unit",
'default', 50,
'scale', "%",
'min', 0,
}),
PlaceObj('PropertyDefNumber', {
'id', "CanUseMod",
'name', "Can Use Mod",
'help', "modifier applied if the heal action can be used this turn",
'default', 100,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIConsideration",
},
group = "AI",
id = "AICChanceToHit",
PlaceObj('ClassConstDef', {
'name', "Name",
'type', "translate",
'value', T(706047359198, --[[ClassDef AI AICChanceToHit value]] "Chance to hit is <percent(RangeText)>"),
}),
PlaceObj('ClassConstDef', {
'name', "ComboFormat",
'type', "translate",
'value', T(774449858743, --[[ClassDef AI AICChanceToHit value]] "Chance to hit"),
}),
PlaceObj('PropertyDefRange', {
'id', "Range",
'default', range(1, 100),
'min', 0,
'max', 100,
}),
PlaceObj('ClassMethodDef', {
'name', "Score",
'params', "obj, context",
'code', function (self, obj, context)
return obj:CalcChanceToHit(context.target, self)
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIConsideration",
},
group = "AI",
id = "AICMyDistanceTo",
PlaceObj('ClassConstDef', {
'name', "Name",
'type', "translate",
'value', T(365923306098, --[[ClassDef AI AICMyDistanceTo value]] "My distance to <Target> is <RangeText>"),
'untranslated', true,
}),
PlaceObj('ClassConstDef', {
'name', "ComboFormat",
'type', "translate",
'value', T(903345187719, --[[ClassDef AI AICMyDistanceTo value]] "My distance to ..."),
'untranslated', true,
}),
PlaceObj('PropertyDefCombo', {
'id', "Target",
'default', "target",
'items', function (self) return {"target"} end,
}),
PlaceObj('PropertyDefRange', {
'id', "Range",
'default', range(0, 0),
'min', 0,
'max', 1000000,
}),
PlaceObj('ClassMethodDef', {
'name', "Score",
'params', "obj, context",
'code', function (self, obj, context)
local target = context.target
if not target then
return 0
end
local distance = obj:GetDist(target)
local min = self.Range.from
local max = self.Range.to
if distance < min then
return 0
elseif distance >= max then
return 100
end
return MulDiv(100, distance - min, max - min)
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIConsideration",
},
group = "AI",
id = "AICMyStatusEffect",
PlaceObj('ClassConstDef', {
'name', "Name",
'type', "translate",
'value', T(867699654968, --[[ClassDef AI AICMyStatusEffect value]] "My status <Effect> is <Status>"),
'untranslated', true,
}),
PlaceObj('ClassConstDef', {
'name', "ComboFormat",
'type', "translate",
'value', T(891172370352, --[[ClassDef AI AICMyStatusEffect value]] "My status effect"),
'untranslated', true,
}),
PlaceObj('PropertyDefPresetId', {
'id', "Effect",
'name', "",
'preset_class', "CharacterEffectCompositeDef",
}),
PlaceObj('PropertyDefChoice', {
'id', "Status",
'default', "on",
'items', function (self) return {"on", "off"} end,
}),
PlaceObj('ClassMethodDef', {
'name', "Score",
'params', "obj, context",
'code', function (self, obj, context)
return obj:HasStatusEffect(id) and 100 or 0
end,
}),
})
PlaceObj('ClassDef', {
group = "AI",
id = "AIConsideration",
PlaceObj('ClassConstDef', {
'name', "Name",
'type', "translate",
}),
PlaceObj('ClassConstDef', {
'name', "ComboFormat",
'type', "translate",
'value', T(470337975431, --[[ClassDef AI AIConsideration value]] "<class>"),
}),
PlaceObj('ClassMethodDef', {
'name', "Score",
'params', "obj, context",
'code', function (self, obj, context)
return 0
end,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return Untranslated("<Name>")
end,
}),
PlaceObj('ClassMethodDef', {
'name', "GetRangeText",
'code', function (self)
return T{570065600041, "[<min> - <max>]", min = self.Range.from, max = self.Range.to}
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyAttackAP",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local unit = context.unit
local ap = context.dest_ap[dest] or 0
return ap > context.default_attack_cost and 100 or 0
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyDealDamage",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "CheckLOS",
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return string.format("Deal Damage (%s)", self.CheckLOS and "w/ LOS" or "w/o LOS")
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
if self.CheckLOS and not g_AIDestEnemyLOSCache[dest] then
return 0
end
return context.dest_target_score[dest] or 0
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyDistanceFromStart",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "Away",
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local upos = context.unit_stance_pos
local threshold = self.Distance * const.SlabSizeX
local dist = stance_pos_dist(dest, upos)
if self.Away and dist >= threshold then
return self.Weight
elseif not self.Away and dist <= threshold then
return self.Weight
end
return 0
end,
}),
PlaceObj('PropertyDefNumber', {
'id', "Distance",
'help', "in tiles",
'default', 5,
'min', 0,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.Away then
return string.format("Be %d tiles away from starting location", self.Distance)
else
return string.format("Be no more than %d tiles away from starting location", self.Distance)
end
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyEvadeEnemies",
PlaceObj('PropertyDefCombo', {
'id', "RangeBase",
'name', "Preferred Range (Base)",
'default', "Effective",
'items', function (self) return { "Weapon", "Absolute" } end,
}),
PlaceObj('PropertyDefNumber', {
'id', "Range",
'name', "Minimum Range",
'help', "Percent of base preferred range",
'default', 80,
'min', 0,
'max', 1000,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.RangeBase == "Absolute" then
return string.format("Keep enemies farther than %d tiles", self.Range)
end
return string.format("Keep enemies farther than %d%% of weapon range", self.RangeBase)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local x, y, z = point_unpack(grid_voxel)
local base_range = self.RangeBase == "Effective" and context.EffectiveRange or context.ExtremeRange
local range = MulDivRound(self.Range, base_range, 100)
local enemy_in_range
for _, enemy in ipairs(context.enemies) do
enemy_in_range = enemy_in_range or AIRangeCheck(context, grid_voxel, enemy, context.enemy_grid_voxel[enemy], self.RangeBase, false, self.Range)
end
return enemy_in_range and 0 or 100
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyFlanking",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "AllyPlannedPosition",
'help', "consider allies being on their destination positions instead of their current ones (when available)",
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local unit = context.unit
local ap = context.dest_ap[dest] or 0
if self.ReserveAttackAP and ap < context.default_attack_cost then
return 0
end
if not context.position_override then
context.position_override = {}
if self.AllyPlannedPosition then
for _, ally in ipairs(unit.team.units) do
local dest = ally.ai_context and ally.ai_context.ai_destination
if dest then
local x, y, z = stance_pos_unpack(dest)
context.position_override[ally] = point(x, y, z)
end
end
end
end
local x, y, z = stance_pos_unpack(dest)
context.position_override[unit] = point(x, y, z)
if not context.enemy_surrounded then
context.enemy_surrounded = {}
for _, enemy in ipairs(context.enemies) do
if enemy:IsSurrounded() then
context.enemy_surrounded[enemy] = true
end
end
end
local delta = 0
for _, enemy in ipairs(context.enemies) do
local new_surrounded = enemy:IsSurrounded(context.position_override)
if new_surrounded and not context.enemy_surrounded[enemy] then
delta = delta + 1
elseif not new_surrounded and context.enemy_surrounded[enemy] then
delta = delta - 1
end
end
return delta * self.Weight
end,
}),
PlaceObj('PropertyDefBool', {
'id', "ReserveAttackAP",
'name', "Reserve Attack AP",
'help', "do not consider locations where the unit will be out of ap and couldn't attack",
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
"AIBaseHealPolicy",
},
group = "AI",
id = "AIPolicyHealingRange",
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return string.format("Be in range to heal allies under %d%% HP", self.MaxHp)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local target, score = AISelectHealTarget(context, dest, grid_voxel, self)
return score or 0
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyHighGround",
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local ux, uy, uz = point_unpack(context.unit_grid_voxel)
local x, y, z = point_unpack(grid_voxel)
return self.Weight * (z - uz)
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyIndoorsOutdoors",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "Indoors",
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return self.Indoors and "Be Indoors" or "Be Outdoors"
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
return AICheckIndoors(dest) == self.Indoors
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyLastEnemyPos",
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local last_pos = context.unit.last_known_enemy_pos
if not last_pos then return 0 end
local dist = context.unit:GetDist(last_pos)
local dx, dy, dz = stance_pos_unpack(dest)
if dist == 0 then
return (last_pos:Dist(dx, dy, dz) == 0) and self.Weight or 0
end
return self.Weight - MulDivRound(last_pos:Dist(dx, dy, dz), self.Weight, dist)
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyLosToEnemy",
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "Invert",
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local los = g_AIDestEnemyLOSCache[dest]
if self.Invert then
return g_AIDestEnemyLOSCache[dest] and 0 or 100
end
return g_AIDestEnemyLOSCache[dest] and 100 or 0
end,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.Invert then
return "Do not have LOS to enemies"
end
return "Have LOS to enemies"
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyProximity",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "AllyPlannedPosition",
'help', "consider allies being on their destination positions instead of their current ones (when available)",
'extra_code', 'no_edit = function(self) return self.TargetUnits ~= "allies" end',
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local unit = context.unit
local target_enemies = self.TargetUnits == "enemies"
local units = target_enemies and context.enemies or context.allies
local tdist = self.TargetDist
local score = 0
local num = 0
local scale = const.SlabSizeX
for _, other in ipairs(units) do
if other ~= unit then
local upos
if target_enemies then
upos = context.enemy_pack_pos_stance[other]
else
upos = context.ally_pack_pos_stance[other]
if self.AllyPlannedPosition and other.ai_context then
upos = other.ai_context.ai_destination or upos
end
end
local dist = stance_pos_dist(dest, upos) / scale
if tdist == "total" or tdist == "average" then
score = score + dist
else
assert(tdist == "min")
if not score or score > dist then
score = dist
end
end
end
end
if tdist == "average" and num > 0 then
score = score / num
end
return score >= self.MinScore and score or 0
end,
}),
PlaceObj('PropertyDefChoice', {
'id', "TargetUnits",
'name', "TargetUnits",
'default', "enemies",
'items', function (self) return { "allies", "enemies"} end,
}),
PlaceObj('PropertyDefChoice', {
'id', "TargetDist",
'name', "Target Distance",
'help', "which distance (in tiles) is used to score the target location",
'default', "min",
'items', function (self) return { "min", "average", "total"} end,
}),
PlaceObj('PropertyDefNumber', {
'id', "MinScore",
'help', "scores below this will result in zero evaluation for this location",
'default', 0,
'min', 0,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyStimRange",
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return string.format("Be in range to heal allies under %d%% HP", self.MaxHp)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
context.voxel_stim_score = context.voxel_stim_score or {}
if context.voxel_stim_score[grid_voxel] then
return context.voxel_stim_score[grid_voxel]
end
local x, y, z = stance_pos_unpack(dest)
local ppos = point_pack(x, y, z)
local score, target
local unit = context.unit
if self.CanTargetSelf then
score = AIEvalStimTarget(unit, unit, self.Rules)
target = (score > 0) and unit
end
for _, ally in ipairs(context.allies) do
if IsMeleeRangeTarget(unit, ppos, nil, ally) then
local ally_score = AIEvalStimTarget(unit, ally, self.Rules)
if ally_score > score then
score, target = ally_score, ally
elseif ally_score == score and unit:GetDist(target) > unit:GetDist(ally) then
score, target = ally_score, ally
end
end
end
score = MulDivRound(score, self.Weight, 100)
context.voxel_stim_score[grid_voxel] = score
return score
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefNestedList', {
'id', "Rules",
'base_class', "AIStimRule",
'inclusive', true,
}),
PlaceObj('PropertyDefBool', {
'id', "CanTargetSelf",
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyTakeCover",
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefChoice', {
'id', "visibility_mode",
'name', "Visibility Mode",
'default', "self",
'items', function (self) return {"self", "team", "all"} end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local score = 0
local tbl = context.enemies or empty_table
for _, enemy in ipairs(tbl) do
local visible = true
if self.visibility_mode == "self" then
visible = context.enemy_visible[enemy]
elseif self.visibility_mode == "team" then
visible = context.enemy_visible_by_team[enemy]
end
if visible then
local cover = GetCoverFrom(dest, context.enemy_pack_pos_stance[enemy])
score = score + self.CoverScores[cover]
end
end
return score / Max(1, #tbl)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return "Seek Cover"
end,
}),
PlaceObj('ClassGlobalCodeDef', {
'comment', "CoverScores",
'code', function ()
AIPolicyTakeCover.CoverScores = {
[const.CoverPass] = 0,
[const.CoverNone] = 0,
[const.CoverLow] = 50,
[const.CoverHigh] = 100,
}
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIPolicyWeaponRange",
PlaceObj('PropertyDefSet', {
'id', "EnvState",
'name', "Environmental State",
'items', function (self) return AIEnvStateCombo end,
'three_state', true,
}),
PlaceObj('PropertyDefCombo', {
'id', "RangeBase",
'name', "Preferred Range (Base)",
'default', "Weapon",
'items', function (self) return { "Melee", "Weapon", "Absolute" } end,
}),
PlaceObj('PropertyDefNumber', {
'id', "RangeMin",
'name', "Preferred Range (Min)",
'help', "Percent of base preferred range",
'extra_code', 'no_edit = function(self) return self.RangeBase == "Melee" end',
'default', 80,
'min', 0,
'max', 1000,
}),
PlaceObj('PropertyDefNumber', {
'id', "RangeMax",
'name', "Preferred Range (Max)",
'help', "Percent of base preferred range",
'extra_code', 'no_edit = function(self) return self.RangeBase == "Melee" end',
'default', 120,
'min', 0,
'max', 1000,
}),
PlaceObj('PropertyDefNumber', {
'id', "DownedWeightModifier",
'name', "Downed Enemy Weight Modifier",
'default', 5,
'scale', "%",
'min', 0,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.RangeBase == "Melee" then
return "Be in Melee range"
elseif self.RangeBase == "Absolute" then
return string.format("Be in %d to %d tiles range", self.RangeMin, self.RangeMax)
end
return string.format("Be in %d%% to %d%% of weapon range", self.RangeMin, self.RangeMax)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
for state, value in pairs(self.EnvState) do
if value ~= not not GameState[state] then
return 0
end
end
local enemy_grid_voxel = context.enemy_grid_voxel
local range_type = self.RangeBase
local range_min = self.RangeMin
local range_max = self.RangeMax
local weight = 0
for _, enemy in ipairs(context.enemies) do
if AIRangeCheck(context, grid_voxel, enemy, enemy_grid_voxel[enemy], range_type, range_min, range_max) then
if enemy:IsIncapacitated() then
weight = self.DownedWeightModifier
else
return 100
end
end
end
return weight
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
})
PlaceObj('ClassDef', {
group = "AI",
id = "AIPositioningPolicy",
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
assert(false, "EvalDest is not implemetned for class " .. self.class)
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
}),
PlaceObj('PropertyDefStringList', {
'id', "RequiredKeywords",
'template', true,
'items', function (self) return AIKeywordsCombo end,
'arbitrary_value', true,
}),
PlaceObj('PropertyDefNumber', {
'id', "Weight",
'default', 100,
'scale', "%",
}),
PlaceObj('PropertyDefBool', {
'id', "Required",
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return self.class
end,
}),
PlaceObj('ClassMethodDef', {
'name', "MatchUnit",
'params', "unit",
'code', function (self, unit)
for _, keyword in ipairs(self.RequiredKeywords) do
if not table.find(unit.AIKeywords or empty_table, keyword) then
return
end
end
return true
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AIPositioningPolicy",
},
group = "AI",
id = "AIRetreatPolicy",
PlaceObj('ClassMethodDef', {
'name', "EvalDest",
'params', "context, dest, grid_voxel",
'code', function (self, context, dest, grid_voxel)
local vx, vy = point_unpack(grid_voxel)
local markers = context.entrance_markers or MapGetMarkers("Entrance")
context.entrance_markers = markers
local score = 0
for _, marker in ipairs(markers) do
context.entrance_marker_dir = context.entrance_marker_dir or {}
local marker_dir = context.entrance_marker_dir[marker]
if not marker_dir then
marker_dir = marker:GetVisualPos() - context.unit:GetVisualPos()
marker_dir = marker_dir:SetZ(0)
if marker_dir:Len() > 0 then
marker_dir = SetLen(marker_dir, guim)
end
context.entrance_marker_dir[marker] = marker_dir
end
if marker:IsVoxelInsideArea(vx, vy) then
-- score based on direction
for _, enemy_dir in pairs(context.enemy_dir) do
local dot = Dot2D(marker_dir, enemy_dir) / guim
score = score + guim - dot
end
end
end
return score / Max(1, #(context.enemies or empty_table))
end,
}),
PlaceObj('PropertyDefBool', {
'id', "optimal_location",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefBool', {
'id', "end_of_turn",
'read_only', true,
'no_edit', true,
'default', true,
}),
PlaceObj('PropertyDefNumber', {
'id', "Weight",
'default', 100,
'scale', "%",
}),
PlaceObj('PropertyDefBool', {
'id', "Required",
'default', true,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return "Retreat"
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AITargetingPolicy",
},
group = "AI",
id = "AITargetingCancelShot",
PlaceObj('PropertyDefNumber', {
'id', "BaseScore",
'name', "Base Score",
'help', "score for valid targets who are not threatening an ally",
'default', 100,
}),
PlaceObj('PropertyDefNumber', {
'id', "AllyThreatenedScore",
'name', "Threatened Score",
'help', "score for valid targets who are threatening an ally",
'default', 100,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return "Use CancelShot"
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalTarget",
'params', "unit, target",
'code', function (self, unit, target)
if not target:HasPreparedAttack() and not target:CanActivatePerk("MeleeTraining") then
return 0
end
local enemies = {target}
for _, ally in ipairs(unit.team.units) do
if ally:IsThreatened(enemies) then
return self.AllyThreatenedScore
end
end
return self.BaseScore
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AITargetingPolicy",
},
group = "AI",
id = "AITargetingEnemyHealth",
PlaceObj('PropertyDefNumber', {
'id', "Score",
'default', 100,
}),
PlaceObj('PropertyDefNumber', {
'id', "Health",
'default', 100,
'scale', "%",
'min', 1,
'max', 100,
}),
PlaceObj('PropertyDefBool', {
'id', "AboveHealth",
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.AboveHealth then
return string.format("Enemy health >= %d%%", self.Health)
end
return string.format("Enemy health <= %d%%", self.Health)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalTarget",
'params', "unit, target",
'code', function (self, unit, target)
local health_perc = MulDivRound(target.HitPoints, 100, target.MaxHitPoints)
if self.AboveHealth then
return health_perc >= self.Health and self.Score or 0
end
return health_perc <= self.Health and self.Score or 0
end,
}),
})
PlaceObj('ClassDef', {
DefParentClassList = {
"AITargetingPolicy",
},
group = "AI",
id = "AITargetingEnemyWeapon",
PlaceObj('PropertyDefNumber', {
'id', "Score",
'default', 100,
}),
PlaceObj('PropertyDefChoice', {
'id', "EnemyWeapon",
'default', "AssaultRifle",
'items', function (self) return AIEnemyWeaponsCombo() end,
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
if self.EnemyWeapon == "Unarmed" then
return "Unarmed enemies"
end
return string.format("Enemies armed with %s", self.EnemyWeapon)
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalTarget",
'params', "unit, target",
'code', function (self, unit, target)
if self.EnemyWeapon == "Unarmed" then
if not target:GetActiveWeapons() then
return self.Score
end
elseif g_Classes[self.EnemyWeapon] then
if target:GetActiveWeapons(self.EnemyWeapon) then
return self.Score
end
else -- by weapon type
local _, _, list = target:GetActiveWeapons("Firearm")
for _, item in ipairs(list) do
if item.WeaponType == self.EnemyWeapon then
return self.Score
end
end
end
return 0
end,
}),
})
PlaceObj('ClassDef', {
group = "AI",
id = "AITargetingPolicy",
PlaceObj('PropertyDefNumber', {
'id', "Weight",
'default', 100,
'scale', "%",
}),
PlaceObj('ClassMethodDef', {
'name', "GetEditorView",
'code', function (self)
return self.class
end,
}),
PlaceObj('ClassMethodDef', {
'name', "EvalTarget",
'params', "unit, target",
}),
})
|