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 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef HDB_AI_H
#define HDB_AI_H
#define STARS_MONKEYSTONE_7 0xfe257d // magic value in the config file for the unlocking of the Monkeystone secret #7
#define STARS_MONKEYSTONE_7_FAKE 0x11887e // fake value that means it hasn't been unlocked
#define STARS_MONKEYSTONE_14 0x3341fe // <same> for the Monkeystone #14
#define STARS_MONKEYSTONE_14_FAKE 0x1cefd0 // fake value that means it hasn't been unlocked
#define STARS_MONKEYSTONE_21 0x77ace3 // <same> for the Monkeystone #21
#define STARS_MONKEYSTONE_21_FAKE 0x3548fe // fake value that means it hasn't been unlocked
namespace HDB {
enum {
kMaxAnimFrames = 8,
kMaxAnimTFrames = 16,
kMaxDeathFrames = 12,
kMaxLevel2Ents = 60,
kMaxInventory = 10,
kMaxDeliveries = 5,
kMaxWaypoints = 10,
kMaxActions = 20,
kMaxTeleporters = 20,
kMaxAutoActions = 30,
kMaxLuaEnts = 50,
kMaxCallbacks = 20,
kMaxFairystones = 5,
kMaxGatePuddles = 8,
kMaxBridges = 10,
kDelay5Seconds = 5 * kGameFPS,
kPlayerMoveSpeed = 4,
kEnemyMoveSpeed = 2,
kPushMoveSpeed = (kPlayerMoveSpeed >> 1),
kPlayerTouchPWait = 16,
kMaxCineGfx = 10,
kRunToggleDelay = 2,
kMsgDelay = 3,
kYouGotX = -1,
kNumSaveSlots = 8,
kAutoSaveSlot = 0
};
enum AIType {
AI_NONE,
AI_GUY,
AI_DOLLY,
AI_SPACEDUDE,
AI_SERGEANT,
AI_SCIENTIST,
AI_WORKER,
AI_DEADWORKER,
AI_ACCOUNTANT,
AI_RAILRIDER,
AI_RAILRIDER_ON,
AI_VORTEXIAN,
AI_CHICKEN,
AI_GEM_ATTACK,
AI_SLUG_ATTACK,
AI_LASER,
AI_LASERBEAM,
AI_DIVERTER,
AI_FOURFIRER,
AI_OMNIBOT,
AI_TURNBOT,
AI_SHOCKBOT,
AI_RIGHTBOT,
AI_PUSHBOT,
AI_LISTENBOT,
AI_MAINTBOT,
AI_OMNIBOT_MISSILE,
AI_DEADEYE,
AI_MEERKAT,
AI_FATFROG,
AI_GOODFAIRY,
AI_BADFAIRY,
AI_ICEPUFF,
AI_BUZZFLY,
AI_DRAGON,
AI_GATEPUDDLE,
AI_CRATE,
AI_LIGHTBARREL,
AI_HEAVYBARREL,
AI_BOOMBARREL,
AI_FROGSTATUE,
AI_MAGIC_EGG,
AI_ICE_BLOCK,
ITEM_CELL,
ITEM_ENV_WHITE,
ITEM_ENV_RED,
ITEM_ENV_BLUE,
ITEM_ENV_GREEN,
ITEM_TRANSCEIVER,
ITEM_CLUB,
ITEM_ROBOSTUNNER,
ITEM_SLUGSLINGER,
ITEM_MONKEYSTONE,
ITEM_GEM_WHITE,
ITEM_GEM_BLUE,
ITEM_GEM_RED,
ITEM_GEM_GREEN,
ITEM_GOO_CUP,
ITEM_TEACUP,
ITEM_COOKIE,
ITEM_BURGER,
ITEM_PDA,
ITEM_BOOK,
ITEM_CLIPBOARD,
ITEM_NOTE,
ITEM_KEYCARD_WHITE,
ITEM_KEYCARD_BLUE,
ITEM_KEYCARD_RED,
ITEM_KEYCARD_GREEN,
ITEM_KEYCARD_PURPLE,
ITEM_KEYCARD_BLACK,
ITEM_CABKEY,
ITEM_DOLLYTOOL1,
ITEM_DOLLYTOOL2,
ITEM_DOLLYTOOL3,
ITEM_DOLLYTOOL4,
ITEM_SEED,
ITEM_SODA,
ITEM_ROUTER,
ITEM_SLICER,
ITEM_CHICKEN,
ITEM_PACKAGE,
INFO_FAIRY_SRC,
INFO_FAIRY_SRC2,
INFO_FAIRY_SRC3,
INFO_FAIRY_SRC4,
INFO_FAIRY_SRC5,
INFO_FAIRY_DEST,
INFO_FAIRY_DEST2,
INFO_FAIRY_DEST3,
INFO_FAIRY_DEST4,
INFO_FAIRY_DEST5,
INFO_TRIGGER,
INFO_SET_MUSIC,
INFO_PROMOTE,
INFO_DEMOTE,
INFO_LUA,
INFO_HERE,
INFO_ARROW_TURN,
INFO_ARROW_STOP,
INFO_ARROW_4WAY,
INFO_TELEPORTER1,
INFO_TELEPORTER2,
INFO_TELEPORTER3,
INFO_TELEPORTER4,
INFO_TELEPORTER5,
INFO_TELEPORTER6,
INFO_TELEPORTER7,
INFO_TELEPORTER8,
INFO_TELEPORTER9,
INFO_TELEPORTER10,
INFO_TELEPORTER11,
INFO_TELEPORTER12,
INFO_TELEPORTER13,
INFO_TELEPORTER14,
INFO_TELEPORTER15,
INFO_TELEPORTER16,
INFO_TELEPORTER17,
INFO_TELEPORTER18,
INFO_TELEPORTER19,
INFO_TELEPORTER20,
INFO_LEVELEXIT,
INFO_ACTION1,
INFO_ACTION2,
INFO_ACTION3,
INFO_ACTION4,
INFO_ACTION5,
INFO_ACTION6,
INFO_ACTION7,
INFO_ACTION8,
INFO_ACTION9,
INFO_ACTION10,
INFO_ACTION11,
INFO_ACTION12,
INFO_ACTION13,
INFO_ACTION14,
INFO_ACTION15,
INFO_ACTION16,
INFO_ACTION17,
INFO_ACTION18,
INFO_ACTION19,
INFO_ACTION20,
INFO_ACTION_AUTO,
INFO_QMARK,
INFO_DEBUG,
END_AI_TYPES
};
enum AIDir {
DIR_NONE,
DIR_UP,
DIR_DOWN,
DIR_LEFT,
DIR_RIGHT
};
enum Death {
DEATH_NORMAL,
DEATH_FRIED,
DEATH_DROWNED,
DEATH_GRABBED,
DEATH_SHOCKED,
DEATH_PANICZONE,
DEATH_PLUMMET
};
enum AIState {
STATE_NONE,
STATE_STANDDOWN,
STATE_STANDUP,
STATE_STANDLEFT,
STATE_STANDRIGHT,
STATE_BLINK,
STATE_MOVEUP,
STATE_MOVEDOWN,
STATE_MOVELEFT,
STATE_MOVERIGHT,
STATE_DYING,
STATE_DEAD,
STATE_HORRIBLE1,
STATE_HORRIBLE2,
STATE_HORRIBLE3,
STATE_HORRIBLE4,
STATE_GOODJOB,
STATE_PLUMMET,
STATE_PUSHUP, // these are only used for the player
STATE_PUSHDOWN,
STATE_PUSHLEFT,
STATE_PUSHRIGHT,
STATE_GRABUP, // player grabbing something
STATE_GRABDOWN,
STATE_GRABLEFT,
STATE_GRABRIGHT,
STATE_ATK_CLUB_UP, // player attacking frames
STATE_ATK_CLUB_DOWN,
STATE_ATK_CLUB_LEFT,
STATE_ATK_CLUB_RIGHT,
STATE_ATK_STUN_DOWN,
STATE_ATK_STUN_UP,
STATE_ATK_STUN_LEFT,
STATE_ATK_STUN_RIGHT,
STATE_ATK_SLUG_DOWN,
STATE_ATK_SLUG_UP,
STATE_ATK_SLUG_LEFT,
STATE_ATK_SLUG_RIGHT,
STATE_FLOATING, // floating in stuff (can walk on)
STATE_FLOATDOWN,
STATE_FLOATUP,
STATE_FLOATLEFT,
STATE_FLOATRIGHT,
STATE_MELTED, // melted into slag (can walk on)
STATE_SLIDING, // sliding across a floor
STATE_SHOCKING, // for Shockbot floor-shock anim
STATE_EXPLODING, // boom barrel explosion!
STATE_USEDOWN, // crazy maintenance bot!
STATE_USEUP,
STATE_USELEFT,
STATE_USERIGHT,
STATE_MEER_MOVE, // for the Meerkat
STATE_MEER_APPEAR,
STATE_MEER_BITE,
STATE_MEER_DISAPPEAR,
STATE_MEER_LOOK,
STATE_ICEP_PEEK, // for the Icepuff
STATE_ICEP_APPEAR,
STATE_ICEP_THROWDOWN,
STATE_ICEP_THROWRIGHT,
STATE_ICEP_THROWLEFT,
STATE_ICEP_DISAPPEAR,
STATE_LICKDOWN, // for the Fatfrog
STATE_LICKLEFT,
STATE_LICKRIGHT,
STATE_DIVERTER_BL, // for Diverters
STATE_DIVERTER_BR,
STATE_DIVERTER_TL,
STATE_DIVERTER_TR,
STATE_KISSRIGHT, // for Dolly
STATE_KISSLEFT,
STATE_ANGRY,
STATE_PANIC,
STATE_LAUGH,
STATE_DOLLYUSERIGHT,
STATE_YELL, // for Sarge
STATE_ENDSTATES
};
enum AnimSpeed {
ANIM_SLOW,
ANIM_NORMAL,
ANIM_FAST
};
enum CineType {
C_NO_COMMAND,
C_STOPCINE,
C_LOCKPLAYER,
C_UNLOCKPLAYER,
C_SETCAMERA,
C_MOVECAMERA,
C_WAIT,
C_WAITUNTILDONE,
C_MOVEENTITY,
C_DIALOG,
C_ANIMENTITY,
C_RESETCAMERA,
C_SETENTITY,
C_STARTMAP,
C_MOVEPIC,
C_MOVEMASKEDPIC,
C_DRAWPIC,
C_DRAWMASKEDPIC,
C_FADEIN,
C_FADEOUT,
C_SPAWNENTITY,
C_PLAYSOUND,
C_CLEAR_FG,
C_SET_FG,
C_SET_BG,
C_FUNCTION,
C_ENTITYFACE,
C_USEENTITY,
C_REMOVEENTITY,
C_SETANIMFRAME,
C_TEXTOUT,
C_CENTERTEXTOUT,
C_PLAYVOICE,
C_ENDLIST
};
enum CallbackType {
NO_FUNCTION,
AI_BARREL_EXPLOSION_END,
CALLBACK_DOOR_OPEN_CLOSE,
CALLBACK_AUTODOOR_OPEN_CLOSE,
CALLBACK_END
};
struct AIStateDef {
AIState state;
const char *name;
};
// Struct for Function Table Lookup for SaveGames
typedef void(*FuncPtr)(AIEntity *, int, int);
struct AIEntity {
AIType type;
AIState state;
AIDir dir;
Tile *draw; // Current frame to draw
FuncPtr aiInit; // func ptr to init routine
FuncPtr aiInit2; // func ptr to init2 routine - graphic init only (this for LoadGame functionality)
FuncPtr aiAction; // func ptr to action routine
FuncPtr aiUse; // func ptr to use routine
FuncPtr aiDraw; // func ptr to extra drawing routine (only for special stuff) - pass in mapx, mapy
char luaFuncInit[32]; // Lua function for Init (always called after entity's init). These are ptrs into the map header.
char luaFuncAction[32]; // Lua function for Action
char luaFuncUse[32]; // Lua function for Use
int16 level; // which floor level we're on
int16 value1, value2; // extra values we might need
AIDir dir2; // this is from TED
int16 x, y;
int16 drawXOff, drawYOff; // might need a drawing offset
int16 onScreen; // FLAG: is this entity onscreen?
int16 moveSpeed; // movement speed of this entity
int16 xVel, yVel; // movement values
int16 tileX, tileY;
int16 goalX, goalY; // where we're trying to go - TILE COORDS
int16 touchpX, touchpY, touchpTile, touchpWait; // ACTION index a touchplate is using, which you're on
int32 stunnedWait; // if we're stunned, this is the delay before being normal again
int16 sequence; // to use for specially-coded sequences
char entityName[32]; // the name of the entity, as registered by the Lua init function for the entity
char printedName[32]; // the name of the entity/item, the way it should be printed
int16 animFrame; // which frame we're on
int16 animDelay; // changes every frame; based on anim_cycle at start
int16 animCycle; // delay between frame animations
union {
uint16 blinkFrames;
int16 int1;
};
Tile *blinkGfx[kMaxAnimFrames];
union {
uint16 special1Frames;
int16 int2;
};
Tile *special1Gfx[kMaxAnimFrames];
int16 standdownFrames;
Tile *standdownGfx[kMaxAnimFrames];
int16 standupFrames;
Tile *standupGfx[kMaxAnimFrames];
int16 standleftFrames;
Tile *standleftGfx[kMaxAnimFrames];
int16 standrightFrames;
Tile *standrightGfx[kMaxAnimFrames];
int16 moveupFrames;
Tile *moveupGfx[kMaxAnimFrames];
int16 movedownFrames;
Tile *movedownGfx[kMaxAnimFrames];
int16 moveleftFrames;
Tile *moveleftGfx[kMaxAnimFrames];
int16 moverightFrames;
Tile *moverightGfx[kMaxAnimFrames];
void reset() {
luaFuncInit[0] = 0;
luaFuncAction[0] = 0;
luaFuncUse[0] = 0;
entityName[0] = 0;
printedName[0] = 0;
type = AI_NONE;
state = STATE_NONE;
dir = DIR_NONE;
draw = nullptr;
aiInit = aiInit2 = nullptr;
aiAction = nullptr;
aiUse = nullptr;
aiDraw = nullptr;
level = 0;
value1 = value2 = 0;
dir2 = DIR_NONE;
x = y = 0;
drawXOff = drawYOff = 0;
onScreen = 0;
moveSpeed = 0;
xVel = yVel = 0;
tileX = tileY = 0;
goalX = goalY = 0;
touchpX = touchpY = touchpTile = touchpWait = 0;
stunnedWait = 0;
sequence = 0;
animCycle = 0;
animDelay = 0;
animFrame = 0;
blinkFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
blinkGfx[i] = nullptr;
}
special1Frames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
special1Gfx[i] = nullptr;
}
standdownFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
standdownGfx[i] = nullptr;
}
standupFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
standupGfx[i] = nullptr;
}
standleftFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
standleftGfx[i] = nullptr;
}
standrightFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
standrightGfx[i] = nullptr;
}
movedownFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
movedownGfx[i] = nullptr;
}
moveupFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
moveupGfx[i] = nullptr;
}
moveleftFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
moveleftGfx[i] = nullptr;
}
moverightFrames = 0;
for (int i = 0; i < kMaxAnimFrames; i++) {
moverightGfx[i] = nullptr;
}
}
AIEntity() {
reset();
}
~AIEntity() {
}
void save(Common::OutSaveFile *out);
void load(Common::InSaveFile *in);
};
struct AIEntTypeInfo {
AIType type;
const char *luaName;
AIStateDef *stateDef;
FuncPtr initFunc;
FuncPtr initFunc2;
};
extern AIEntTypeInfo aiEntList[];
struct AIEntLevel2 {
uint16 x;
uint16 y;
Tile *draw;
AIEntity *e;
FuncPtr aiDraw;
uint32 stunnedWait;
AIEntLevel2() : x(0), y(0), draw(nullptr), e(nullptr), aiDraw(nullptr), stunnedWait(0) {}
};
struct AnimTarget {
uint16 x, y;
uint16 start, end;
int16 vel;
uint16 animCycle;
uint16 animFrame;
bool killAuto; // Keep it alive if its an Auto?
bool inMap;
Tile *gfxList[kMaxAnimTFrames];
AnimTarget() : x(0), y(0), start(0), end(0), vel(0), animCycle(0), animFrame(0), killAuto(false), inMap(false) {
for (int i = 0; i < kMaxAnimTFrames; i++) {
gfxList[i] = nullptr;
}
}
};
struct InvEnt {
uint16 keep;
AIEntity ent;
void reset() {
keep = 0;
ent.reset();
}
InvEnt() {
reset();
}
};
struct DlvEnt {
char itemTextName[32];
char itemGfxName[32];
Tile *itemGfx;
char destTextName[32];
char destGfxName[32];
Tile *destGfx;
char id[32];
DlvEnt() : itemGfx(nullptr), destGfx(nullptr) {
itemTextName[0] = 0;
itemGfxName[0] = 0;
destTextName[0] = 0;
destGfxName[0] = 0;
}
~DlvEnt() {
itemGfx = nullptr;
destGfx = nullptr;
}
};
struct Waypoint {
int x, y, level;
void reset() {
x = 0;
y = 0;
level = 0;
}
Waypoint() {
reset();
}
};
struct LuaT {
uint16 x, y;
uint16 value1, value2;
char luaFuncInit[32];
char luaFuncAction[32];
char luaFuncUse[32];
LuaT() {
clear();
}
void clear() {
x = 0;
y = 0;
value1 = 0;
value2 = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncInit); i++) luaFuncInit[i] = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncAction); i++) luaFuncAction[i] = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncUse); i++) luaFuncUse[i] = 0;
}
};
struct ActionInfo {
uint16 x1, y1;
uint16 x2, y2;
char luaFuncInit[32];
char luaFuncUse[32];
char entityName[32];
ActionInfo() {
clear();
}
void clear() {
x1 = 0;
y1 = 0;
x2 = 0;
y2 = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncInit); i++) luaFuncInit[i] = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncUse); i++) luaFuncUse[i] = 0;
for (uint i = 0; i < ARRAYSIZE(entityName); i++) entityName[i] = 0;
}
};
struct TeleInfo {
uint16 x1, y1;
uint16 x2, y2;
AIDir dir1;
AIDir dir2;
uint16 level1, level2;
uint16 usable1, usable2;
uint16 anim1, anim2;
char luaFuncUse1[32];
char luaFuncUse2[32];
TeleInfo() {
clear();
}
void clear() {
x1 = 0;
y1 = 0;
x2 = 0;
y2 = 0;
dir1 = DIR_NONE;
dir2 = DIR_NONE;
level1 = 0;
level2 = 0;
usable1 = 0;
usable2 = 0;
anim1 = 0;
anim2 = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncUse1); i++) luaFuncUse1[i] = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncUse2); i++) luaFuncUse2[i] = 0;
}
};
struct SingleTele {
uint16 x, y, level, usable, anim;
AIDir dir;
SingleTele() : x(0), y(0), level(0), usable(0), anim(0), dir(DIR_NONE) {}
};
struct AutoAction {
uint16 x, y;
bool activated;
char luaFuncInit[32];
char luaFuncUse[32];
char entityName[32];
AutoAction() {
clear();
}
void clear() {
x = 0;
y = 0;
activated = false;
for (uint i = 0; i < ARRAYSIZE(luaFuncInit); i++) luaFuncInit[i] = 0;
for (uint i = 0; i < ARRAYSIZE(luaFuncUse); i++) luaFuncUse[i] = 0;
for (uint i = 0; i < ARRAYSIZE(entityName); i++) entityName[i] = 0;
}
};
struct ArrowPath {
uint16 type;
AIDir dir;
uint16 tileX, tileY;
ArrowPath() : type(0), dir(DIR_NONE), tileX(0), tileY(0) {}
};
struct HereT {
uint16 x, y;
char entName[32];
};
struct Trigger {
char id[32];
uint16 x, y;
uint16 value1, value2;
char luaFuncInit[32];
char luaFuncUse[32];
Trigger() : x(0), y(0), value1(0), value2(0) {
id[0] = 0;
luaFuncInit[0] = 0;
luaFuncUse[0] = 0;
}
};
struct CallbackDef {
CallbackType type;
void(*function)(int x, int y);
};
struct Callback {
CallbackType type;
uint16 x, y;
uint16 delay;
Callback() {
clear();
}
void clear() {
type = NO_FUNCTION;
x = 0;
y = 0;
delay = 0;
}
};
struct Fairystone {
uint16 srcX, srcY;
uint16 destX, destY;
Fairystone() : srcX(0), srcY(0), destX(0), destY(0) {}
};
struct Bridge {
uint16 x, y;
AIDir dir;
uint16 delay;
uint16 anim;
void reset() {
x = 0;
y = 0;
dir = DIR_NONE;
delay = 0;
anim = 0;
}
Bridge() {
reset();
}
};
struct CineCommand {
CineType cmdType;
double x, y;
double x2, y2;
double xv, yv;
int start, end;
uint32 delay;
int speed;
const char *title;
const char *string;
const char *id;
AIEntity *e;
Picture *pic;
CineCommand() : cmdType(C_NO_COMMAND), x(0.0), y(0.0), x2(0.0), y2(0.0), xv(0.0), yv(0.0),
start(0), end(0), delay(0), speed(0), title(nullptr), string(nullptr), id(nullptr), e(nullptr), pic(nullptr) {}
};
struct CineBlit {
double x, y;
Picture *pic;
const char *name;
const char *id;
bool masked;
CineBlit() : x(0), y(0), pic(nullptr), name(nullptr), id(nullptr), masked(false) {}
};
#define onEvenTile(x, y) ( !(x & 31) && !(y & 31) )
#define hitPlayer(x, y) ( e->onScreen && g_hdb->_ai->checkPlayerCollision( x, y, 4 ) && !g_hdb->_ai->playerDead() )
#define cycleFrames( e, max ) \
{ \
if ( e->animDelay-- < 1 ) \
{ \
e->animDelay = e->animCycle; \
e->animFrame++; \
if ( e->animFrame >= max ) \
e->animFrame = 0; \
} \
}
#define spawnBlocking(x, y, level) g_hdb->_ai->spawn(AI_NONE, DIR_NONE, x, y, nullptr, nullptr, nullptr, DIR_NONE, level, 0, 0, 0)
class AI {
public:
AI();
~AI();
void init();
void clearPersistent();
void restartSystem();
const char *funcLookUp(FuncPtr function);
FuncPtr funcLookUp(const char *function);
void save(Common::OutSaveFile *out);
void loadSaveFile(Common::InSaveFile *in);
void initAnimInfo();
// Entity Functions
AIEntity *spawn(AIType type, AIDir dir, int x, int y, const char *funcInit, const char *funcAction, const char *funcUse, AIDir dir2, int level, int value1, int value2, int callInit);
bool cacheEntGfx(AIEntity *e, bool initFlag);
void stopEntity(AIEntity *e);
AIEntity *locateEntity(const char *luaName);
AIEntity *findEntity(int x, int y);
AIEntity *findEntityIgnore(int x, int y, AIEntity *ignore);
AIEntity *findEntityType(AIType type, int x, int y);
void getEntityXY(const char *entName, int *x, int *y);
bool useLuaEntity(const char *initName);
void removeLuaEntity(const char *initName);
void animLuaEntity(const char *initName, AIState st);
void setLuaAnimFrame(const char *initName, AIState st, int frame);
int checkForTouchplate(int x, int y);
void removeEntity(AIEntity *e);
void setEntityGoal(AIEntity *e, int x, int y);
void initAllEnts();
void killPlayer(Death method);
void stunEnemy(AIEntity *e, int time);
int metalOrFleshSND(AIEntity *e);
int tileDistance(AIEntity *e1, AIEntity *e2) {
return abs(e1->tileX - e2->tileX) + abs(e1->tileY - e2->tileY);
}
void animateEntity(AIEntity *e);
void animEntFrames(AIEntity *e);
void drawEnts(int x, int y, int w, int h);
void drawLevel2Ents();
void animGrabbing();
void entityFace(const char *luaName, int dir);
void moveEnts();
bool findPath(AIEntity *e);
AIEntity *legalMove(int tileX, int tileY, int level, int *result);
AIEntity *legalMoveOverWater(int tileX, int tileY, int level, int *result);
AIEntity *legalMoveOverWaterIgnore(int tileX, int tileY, int level, int *result, AIEntity *ignore);
void addAnimateTarget(int x, int y, int start, int end, AnimSpeed speed, bool killAuto, bool inMap, const char *tileName);
void animateTargets();
void addBridgeExtend(int x, int y, int bridgeType);
void animateBridges();
void addToFairystones(int index, int tileX, int tileY, int sourceOrDest);
int checkFairystones(int tileX, int tileY);
void getFairystonesSrc(int index, int *tileX, int *tileY) {
*tileX = _fairystones[index].srcX;
*tileY = _fairystones[index].srcY;
}
AIEntity *playerCollision(int topBorder, int bottomBorder, int leftBorder, int rightBorder);
bool checkPlayerTileCollision(int x, int y);
bool checkPlayerCollision(int x, int y, int border);
void clearDiverters();
void laserScan();
// List functions
void addToActionList(int actionIndex, int x, int y, char *funcLuaInit, char *funcLuaUse);
bool checkActionList(AIEntity *e, int x, int y, bool lookAndGrab);
void addToHereList(const char *entName, int x, int y);
HereT *findHere(int x, int y);
void addToAutoList(int x, int y, const char *luaFuncInit, const char *luaFuncUse);
void autoDeactivate(int x, int y);
bool activateAction(AIEntity *e, int x, int y, int targetX, int targetY);
bool checkAutoList(AIEntity *e, int x, int y);
bool autoActive(int x, int y);
void addCallback(CallbackType type, int x, int y, int delay);
void processCallbackList();
void addToLuaList(int x, int y, int value1, int value2, char *luaFuncInit, char *luaFuncAction, char *luaFuncUse);
bool checkLuaList(AIEntity *e, int x, int y);
bool luaExistAtXY(int x, int y);
void addToTeleportList(int teleIndex, int x, int y, int dir, int level, int anim, int usable, const char *luaFuncUse);
bool checkTeleportList(AIEntity *e, int x, int y);
bool findTeleporterDest(int tileX, int tileY, SingleTele *info);
void addToPathList(int x, int y, int type, AIDir dir);
ArrowPath *findArrowPath(int x, int y);
void addToTriggerList(char *luaFuncInit, char *luaFuncUse, int x, int y, int value1, int value2, char *id);
bool checkTriggerList(char *entName, int x, int y);
void killTrigger(const char *id);
void floatEntity(AIEntity *e, AIState state);
bool checkFloating(int x, int y);
bool getTableEnt(AIType type);
bool walkThroughEnt(AIType type);
void getItemSound(AIType type);
void lookAtEntity(AIEntity *e);
// Player Functions
void movePlayer(uint16 buttons);
void playerUse();
void setPlayerWeapon(AIType w, Tile *gfx) {
_weaponSelected = w;
_weaponGfx = gfx;
}
AIType getPlayerWeapon() {
return _weaponSelected;
}
Tile *getPlayerWeaponGfx() {
return _weaponGfx;
}
Tile *getPlayerWeaponSelGfx() {
return _weaponSelGfx;
}
AIEntity *getPlayer() {
if (!_player)
return &_dummyPlayer;
return _player;
}
void getPlayerXY(int *x, int *y) {
if (_player) {
*x = _player->x;
*y = _player->y;
} else {
*x = *y = 0;
}
}
void setPlayerXY(int x, int y) {
if (_player) {
_player->x = x;
_player->tileX = x / kTileWidth;
_player->y = y;
_player->tileY = y / kTileHeight;
_player->xVel = _player->yVel = 0;
}
}
void assignPlayer(AIEntity *p) {
_player = p;
}
bool playerDead() {
return _playerDead;
}
bool playerOnIce() {
return _playerOnIce;
}
bool playerLocked() {
return _playerLock;
}
void setPlayerLock(bool status) {
_playerLock = status;
}
void setPlayerInvisible(bool status) {
_playerInvisible = status;
}
bool playerRunning() {
return _playerRunning;
}
void togglePlayerRunning() {
_playerRunning = !_playerRunning;
}
// Cinematic Functions
bool cinematicsActive() {
return _cineActive;
}
bool cineAbortable() {
return _cineAbortable;
}
void processCines();
void cineCleanup();
void cineAbort();
void cineAddToBlitList(const char *id, Picture *pic, int x, int y, bool masked);
Picture *cineFindInBlitList(const char *name);
void cineRemoveFromBlitList(const char *name);
void cineAddToFreeList(Picture *pic);
void cineFreeGfx();
void cineStart(bool abortable, const char *abortFunc);
void cineStop(const char *funcNext);
void cineStartMap(const char *mapName);
void cineLockPlayer();
void cineUnlockPlayer();
void cineSetCamera(int x, int y);
void cineResetCamera();
void cineMoveCamera(int x, int y, int speed);
void cineWait(int seconds);
void cineWaitUntilDone();
void cineSetEntity(const char *entName, int x, int y, int level);
void cineMoveEntity(const char *entName, int x, int y, int level, int speed);
void cineSpawnEntity(AIType t, AIDir d, int x, int y, const char *func_init, const char *func_action,
const char *func_use, AIDir d2, int level, int value1, int value2);
void cineRemoveEntity(const char *entName);
void cineAnimEntity(const char *entName, AIState state, int loop);
void cineSetAnimFrame(const char *entName, AIState state, int frame);
void cineEntityFace(const char *luaName, double dir);
void cineDialog(const char *title, const char *string, int seconds);
void cineTextOut(const char *text, int x, int y, int timer);
void cineCenterTextOut(const char *text, int y, int timer);
void cineDrawPic(const char *id, const char *pic, int x, int y);
void cineDrawMaskedPic(const char *id, const char *pic, int x, int y);
void cineMovePic(const char *id, const char *pic, int x1, int y1, int x2, int y2, int speed);
void cineMoveMaskedPic(const char *id, const char *pic, int x1, int y1, int x2, int y2, int speed);
void cineUse(const char *entName);
void cinePlaySound(int index);
void cinePlayVoice(int index, int actor);
void cineFadeIn(bool isBlack, int steps);
void cineFadeOut(bool isBlack, int steps);
void cineClearForeground(int x, int y);
void cineSetBackground(int x, int y, int index);
void cineSetForeground(int x, int y, int index);
void cineFunction(const char *func);
// Waypoint & Movement Functions
void lookAtXY(int x, int y);
void addWaypoint(int px, int py, int x, int y, int level);
void removeFirstWaypoint();
void clearWaypoints();
bool traceStraightPath(int x1, int y1, int *x2, int *y2, int *lvl);
Tile *getStandFrameDir(AIEntity *e);
void drawWayPoints();
int waypointsLeft() {
return _numWaypoints;
}
// Inventory Functions
bool addToInventory(AIEntity *e);
void purgeInventory();
void clearInventory();
int getInvAmount() {
return _numInventory;
}
int getGemAmount() {
return _numGems;
}
int getMonkeystoneAmount() {
return _numMonkeystones;
}
int getGooCupAmount() {
return _numGooCups;
}
void setGemAmount(int amt) {
_numGems = amt;
}
int getInvMax() {
return _numInventory;
}
AIType getInvItemType(int which) {
return _inventory[which].ent.type;
}
Tile *getInvItemGfx(int which) {
return _inventory[which].ent.standdownGfx[0];
}
AIEntity *getInvItem(int which);
int queryInventory(const char *string);
bool removeInvItem(const char *string, int amount);
int queryInventoryType(AIType which);
int queryInventoryTypeSlot(AIType which);
bool removeInvItemType(AIType which, int amount);
bool addItemToInventory(AIType type, int amount, const char *funcInit, const char *funcAction, const char *funcUse);
void keepInvItem(AIType type);
void printYouGotMsg(const char *name);
// Delivery Functions
void newDelivery(const char *itemTextName, const char *itemGfxName, const char *destTextName, const char *destGfxName, const char *id);
int getDeliveriesAmount() {
return _numDeliveries;
}
DlvEnt *getDeliveryItem(int which) {
return &_deliveries[which];
}
bool completeDelivery(const char *id);
// Gate Puddles
int _gatePuddles;
void addGatePuddle(int amount) {
_gatePuddles += amount;
}
int getGatePuddles() {
return _gatePuddles;
}
// Platform-Specific Constants
int _youGotY;
// Player Variables
bool _playerDead;
bool _playerInvisible; // While on RailRider for example
bool _playerOnIce;
bool _playerEmerging;
bool _playerRunning;
uint16 _pushupFrames;
Tile *_pushupGfx[kMaxAnimFrames];
uint16 _pushdownFrames;
Tile *_pushdownGfx[kMaxAnimFrames];
uint16 _pushleftFrames;
Tile *_pushleftGfx[kMaxAnimFrames];
uint16 _pushrightFrames;
Tile *_pushrightGfx[kMaxAnimFrames];
Tile *_getGfx[5]; // only 1 frame in each direction (+1 for DIR_NONE at start)
uint16 _dyingFrames;
Tile *_dyingGfx[kMaxDeathFrames];
Tile *_goodjobGfx; // only 1 frame
uint16 _horrible1Frames;
Tile *_horrible1Gfx[kMaxDeathFrames];
uint16 _horrible2Frames;
Tile *_horrible2Gfx[kMaxDeathFrames];
uint16 _horrible3Frames;
Tile *_horrible3Gfx[kMaxDeathFrames];
uint16 _horrible4Frames;
Tile *_horrible4Gfx[kMaxDeathFrames];
uint16 _plummetFrames;
Tile *_plummetGfx[kMaxDeathFrames];
uint16 _clubUpFrames;
Picture *_clubUpGfx[kMaxAnimFrames];
uint16 _clubDownFrames;
Picture *_clubDownGfx[kMaxAnimFrames];
uint16 _clubLeftFrames;
Picture *_clubLeftGfx[kMaxAnimFrames];
uint16 _clubRightFrames;
Picture *_clubRightGfx[kMaxAnimFrames];
uint16 _stunUpFrames;
Tile *_stunUpGfx[kMaxAnimFrames];
uint16 _stunDownFrames;
Tile *_stunDownGfx[kMaxAnimFrames];
uint16 _stunLeftFrames;
Tile *_stunLeftGfx[kMaxAnimFrames];
uint16 _stunRightFrames;
Tile *_stunRightGfx[kMaxAnimFrames];
Tile *_stunLightningGfx[kMaxAnimFrames];
Tile *_stunnedGfx[kMaxAnimFrames];
uint16 _slugUpFrames;
Tile *_slugUpGfx[kMaxAnimFrames];
uint16 _slugDownFrames;
Tile *_slugDownGfx[kMaxAnimFrames];
uint16 _slugLeftFrames;
Tile *_slugLeftGfx[kMaxAnimFrames];
uint16 _slugRightFrames;
Tile *_slugRightGfx[kMaxAnimFrames];
uint16 _slugAttackFrames;
Picture *_slugAttackGfx[kMaxAnimFrames];
Tile *_weaponSelGfx;
Tile *_weaponGfx;
AIType _weaponSelected;
// Player Resources and Deliveries
int _numGems;
int _numGooCups;
int _numMonkeystones;
// Special Tiles that are usable
// These variables hold the tile-indices set
// in ai-init.cpp
int _useSwitchOff; // the door opening switch
int _useSwitchOn; // state, when opened
int _useHolderEmpty; // cell holding switch
int _useHolderFull; // state, when full
int _useSwitch2Off; // another switch
int _useSwitch2On; // state, when opened
int _useMailsorter; // mailsorter entity
int _useAskcomp; // askcomp entitiy
int _useTeleporter; // teleporter entity
int _useHandswitchOn; // 2-sided handswitch
int _useHandswitchOff; // 2-sided handswitch
int _targetDoorN; // horz SILVER door
int _targetDoorP; // horz BLUE door
int _targetDoorS; // horz RED door
int _targetDoorNv; // vert SILVER door
int _targetDoorPv; // vert BLUE door
int _targetDoorSv; // vert RED door
int _targetDoor2N; // horz SILVER door
int _targetDoor2P; // horz BLUE door
int _targetDoor2S; // horz RED door
int _targetDoor2Nv; // vert SILVER door
int _targetDoor2Pv; // vert BLUE door
int _targetDoor2Sv; // vert RED door
int _target2DoorN; // horz SILVER door
int _target2DoorP; // horz BLUE door
int _target2DoorS; // horz RED door
int _target2DoorNv; // vert SILVER door
int _target2DoorPv; // vert BLUE door
int _target2DoorSv; // vert RED door
int _target3DoorN; // horz SILVER door
int _target3DoorP; // horz BLUE door
int _target3DoorS; // horz RED door
int _target3DoorNv; // vert SILVER door
int _target3DoorPv; // vert BLUE door
int _target3DoorSv; // vert RED door
int _targetBridgeU; // bridge extending UP
int _targetBridgeD; // bridge extending DOWN
int _targetBridgeL; // bridge extending LEFT
int _targetBridgeR; // bridge extending RIGHT
int _targetBridgeMidLR; // bridge grating plank LEFT/RIGHT
int _targetBridgeMidUD; // bridge grating plank UP/DOWN
int _touchplateOn; // touchplate ON
int _touchplateOff;
int _templeTouchpOn; // touchplate ON
int _templeTouchpOff;
int _blockpole; // blockpole
int _kcHolderWhiteOff; // keycard holders
int _kcHolderWhiteOn;
int _kcHolderBlueOff;
int _kcHolderBlueOn;
int _kcHolderRedOff;
int _kcHolderRedOn;
int _kcHolderGreenOff;
int _kcHolderGreenOn;
int _kcHolderPurpleOff;
int _kcHolderPurpleOn;
int _kcHolderBlackOff;
int _kcHolderBlackOn;
AIEntLevel2 _entsLevel2[kMaxLevel2Ents];
int _numLevel2Ents;
InvEnt _inventory[kMaxInventory];
int _numInventory;
DlvEnt _deliveries[kMaxDeliveries];
int _numDeliveries;
Waypoint _waypoints[kMaxWaypoints];
int _numWaypoints;
Tile *_waypointGfx[4]; // Animating waypoint gfx
Tile *_debugQMark;
LuaT _luaList[kMaxLuaEnts];
int _numLuaList;
ActionInfo _actions[kMaxActions];
TeleInfo _teleporters[kMaxTeleporters];
int _numTeleporters;
// Virtual Player
AIEntity _dummyPlayer, _dummyLaser;
bool _laserRescan, _laserOnScreen;
AutoAction _autoActions[kMaxAutoActions];
Callback _callbacks[kMaxCallbacks];
Fairystone _fairystones[kMaxFairystones];
Bridge _bridges[kMaxBridges];
int _numBridges;
Common::Array<ArrowPath *> *_arrowPaths;
Common::Array<HereT *> *_hereList;
Common::Array<Trigger *> *_triggerList;
// Cinematic Variables
Common::Array<CineCommand *> _cine;
Picture *_cineFreeList[kMaxCineGfx];
int _numCineFreeList;
CineBlit *_cineBlitList[kMaxCineGfx];
int _numCineBlitList;
int _stunAnim;
uint32 _stunTimer;
// Bots Gfx
Picture *_icepSnowballGfxDown; // ICEPUFF's snowball moving down
Picture *_icepSnowballGfxLeft; // ICEPUFF's snowball moving left
Picture *_icepSnowballGfxRight; // ICEPUFF's snowball moving right
Tile *_tileFroglickMiddleUD;
Tile *_tileFroglickWiggleUD[3];
Tile *_tileFroglickMiddleLR;
Tile *_tileFroglickWiggleLeft[3];
Tile *_tileFroglickWiggleRight[3];
Picture *_gfxDragonAsleep;
Picture *_gfxDragonFlap[2];
Picture *_gfxDragonBreathe[3];
Tile *_gfxLaserbeamUD[4];
Tile *_gfxLaserbeamUDTop[4];
Tile *_gfxLaserbeamUDBottom[4];
Tile *_gfxLaserbeamLR[4];
Tile *_gfxLaserbeamLRLeft[4];
Tile *_gfxLaserbeamLRRight[4];
private:
// Action Functions
// Checks for the existence of a closed/open door
bool isClosedDoor(int x, int y);
bool isOpenDoor(int x, int y);
// MAIN FUNCTION : handles all animation of targeted tiles & changing the state of the "switch"
bool useTarget(int x, int y, int targetX, int targetY, int newTile, int *worked);
// Black Door Switch
bool useSwitch(AIEntity *e, int x, int y, int targetX, int targetY, int onTile);
bool useSwitchOn(AIEntity *e, int x, int y, int targetX, int targetY, int offTile);
bool useSwitch2(AIEntity *e, int x, int y, int targetX, int targetY);
// Colored Keycard Switch
bool useLockedSwitch(AIEntity *e, int x, int y, int targetX, int targetY, int onTile, AIType item, const char *keyerror);
bool useLockedSwitchOn(AIEntity *e, int x, int y, int targetX, int targetY, int offTile, AIType item);
// Purple Cell Holder Switch
bool useCellHolder(AIEntity *e, int x, int y, int targetX, int targetY);
// Touchplate
bool useTouchplate(AIEntity *e, int x, int y, int targetX, int targetY, int type);
bool useTouchplateOn(AIEntity *e, int x, int y, int targetX, int targetY, int type);
// Normal Door
bool useDoorOpenClose(AIEntity *e, int x, int y);
bool useAutoDoorOpenClose(AIEntity *e, int x, int y);
// Any Type Door
bool useDoorOpenCloseBot(AIEntity *e, int x, int y);
Common::Array<AIEntity *> *_ents;
Common::Array<AIEntity *> *_floats;
Common::Array<AnimTarget *> _animTargets;
AIEntity *_player;
// Cinematics Variables
bool _cineAbortable;
bool _cineAborted;
const char *_cineAbortFunc;
bool _cineActive;
bool _playerLock;
bool _cameraLock;
double _cameraX, _cameraY;
};
const char *AIType2Str(AIType v);
const char *AIState2Str(AIState v);
} // End of Namespace
#endif // !HDB_AI_H
|