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 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
|
unit gears;
{The building block from which everything in this game}
{is constructed is called a GEAR. Just seemed a good}
{thing to name the record, given the name of the game.}
{
GearHead2, a roguelike mecha CRPG
Copyright (C) 2005 Joseph Hewitt
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
The full text of the LGPL can be found in license.txt.
This library 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 Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
{$LONGSTRINGS ON}
interface
uses sysutils,dos,texutil;
Const
NumGearStats = 8; {The number of STAT slots}
{in a GEAR record}
{ In general, negative G scores denote abstract things. }
{ Vitual gears are not subject to most game rules, range }
{ checking, and whatnot. }
GG_Secret = -21; { A secret, which may be revealed by story events. }
GG_CityMood = -20;
GG_Theme = -19;
GG_Meme = -18; { A collection of things the PC will be told, until timeout or all messages delivered. }
GG_SuperProp = -17; { Adds a bunch of props to the map in a pattern. }
GG_PlotThingSet = -16; { The collection of plot/quest/rancon-associated things that start play frozen. }
GG_ContentSet = -15; { The collection of unique scene content in an adventure. }
GG_ArtifactSet = -14; { The collection of unique artifacts in an adventure. }
GG_Set = -13; { A collection of things at a store, purchased as one item. }
GG_World = -12; { A planet, moon, or region of space. A place to group scenes. }
GG_MetaScene = -11;
GG_Story = -10;
GG_Plot = -9;
GG_MapFeature = -8; { Something that should be placed on the random map; subcom of SCENE. }
GG_Adventure = -7; { A placeholder for SCENES and FACTIONS. }
GG_Faction = -6; { A group or organization }
GG_Persona = -5; { A conversation or interaction with a NPC }
GG_Team = -4; { A team is a single cohesive unit on a map. }
GG_Scene = -3;
GG_AbsolutelyNothing = -1;
GG_Mecha = 0;
GG_Module = 1;
GG_Character = 2;
GG_Cockpit = 3;
GG_Weapon = 4;
GG_Ammo = 5;
GG_MoveSys = 6;
GG_Holder = 7;
GG_Sensor = 8;
GG_Support = 9;
GG_Shield = 10;
GG_ExArmor = 11;
GG_Treasure = 12;
GG_Prop = 13;
GG_MetaTerrain = 15; { Acts kind of like terrain, but it's a gear. }
GG_Tool = 16; { Gears which provide a skill bonus. Dealt with under ghswag. }
GG_RepairFuel = 17;
GG_Consumable = 18;
GG_Modifier = 19; { Modifies stats; Defined in ghmodule.pp }
GG_WeaponAddOn = 20; { Weapon accessory; Defined in ghweapon.pp }
GG_PowerSource = 21; { Power source for energy weapons }
GG_Computer = 22; { Computers! }
GG_Software = 23; { Software! Goes in the computer, above. }
GG_Harness = 24; { Can strap onto some SF:0 body part. }
GG_Usable = 25; { Can be activated via the appropriate command. }
NAG_GearOps = 2;
NumMaterial = 2;
NAS_Material = 0; { This is the famous duality taken from }
NAV_Metal = 0; { CyberPunk- metal vs. meat. Metal has }
NAV_Meat = 1; { higher DP, but meat regenerates. }
{ Default material for all items is metal. }
NAV_BioTech = 2; { Biotech has HP like metal but regen }
{ like meat. }
{ This array tells if a given material regenerates damage. }
MAT_Regenerate: Array [0..NumMaterial] of Boolean = (
False, True, True
);
NAS_MassAdjust = 1; { Can make an item heavier or lighter. }
NAS_DominationTarget = 2; { Target number for Dominate Animal skill }
NAS_EvolveAt = 3; { XP target for evolution }
NAS_Fudge = 4; { Value adjustment. }
NAS_Legality = 5; { Legality level; determines if you can find something }
{ in a store or not. }
NAS_MonsterTV = 6; { Monster Threat Value }
NAS_ArmorType = 7; { What kind of armor does this part have? }
NumArmorType = 2;
NAV_Hardened = 1; { Hardened armor degrades slower. }
NAV_AntiBeam = 2; { Strong against energy attacks. }
NAS_MaxStandardScriptID = 8; { The highest standard script ID assigned for this part. }
NAS_CorpseOp = 9; { What happens to this gear's corpse? }
NAV_LeaveCorpse = 0; { The default value }
NAV_NoCorpse = 1; { Don't leave behind a corpse. }
NAS_ShopRank = 10; { Used to determine what shopkeepers stock. }
NAS_CostAdjust = 11; { Adjusts the base cost of this item, but not the value. }
NAG_Narrative = 7; { Variables having to do with RPG }
NAS_NID = 0; { Narrative ID }
NAS_MaxCID = 3;
NAS_MaxNID = 4;
NAS_EntranceScene = 5; { Location of the entrance for MetaScenes. }
NAS_DungeonLevel = 6; { Used when expanding random dungeons. }
NAS_DungeonBranch = 7;
NAS_Stolen = 8; { If nonzero, item has been stolen. }
NAS_MinMSID = 9; { Minimum MetaScene ID }
NAS_ScriptActivatedTimer = 10; { Tells the last time this gear }
{ has had a script activated. }
NAS_HomeTownID = 11; { SceneID of the PC's home town. }
NAS_ControllingFaction = 12; { Included in a faction gear; used to describe power heirarchies. }
NAS_ContentID = 13; { ID tag for unique scene content. }
NAS_DatePoints = 14; { A counter used in the date scenario. }
NAS_MaxSceneID = 15;
NAS_NeededCells = 16; { Used by maps- indicates minimum number of cells required }
{ for requested random scene content. }
NAS_PartyPoints = 17; { A counter used in the party scenarios. }
NAS_ReturnToScene = 18; { If a RETURN command is encountered, if this }
{ value is nonzero, do not simply exit to the parent scene. Instead, }
{ exit to whatever scene is stored here. This functionality exists to }
{ make GH1-style "teleporting" battles possible. }
NAS_RandomLoot = 19; { A cash value for hiding random loot here. }
{ The loot category and allowable factions must be stored in }
{ string attributes LOOT_CATEGORY and LOOT_FACTIONS. }
NAS_MaxPlotID = 20; { New superplots are given ID numbers. }
NAS_NumSPElementsUsed = 21; { The number of elements used by subplots. }
NAS_PlotID = 22; { The ID number of a given plot. }
NAS_PlotLayer = 23; { The layer number of a superplot component. }
NAS_MaxPlotLayer = 24; { Needed for generating Layer IDs. }
NAS_DifficultyLevel = 26; { Threat rating for plots, stories, and quests, measured as Renown }
NAS_IsRandomEquipment = 27; { This item was generated by SelectEquipment procedure. }
NAS_GaveLMMecha = 28; { The NPC gave the PC a mecha when joining the lance. }
NAS_ControllerID = 29; { Used for attaching plots to scenes and moods. }
NAS_MaxControllerID = 30; { Used for generating new controller IDs as needed. }
NAS_DefaultFacTheme = 31; { Used to set the default theme for a faction; in high level }
{ encounters, mook mecha can get upgraded with this theme. }
NAS_MoodRecharge = 32; { Scenes will only attempt to load new moods once every 10 hours or so. }
NAS_QuestDungeonPlacement = 33; { Was this item originally a subcom of the quest dungeon? If not, }
{ remove it from the prototype and reinstall it in the goal level. }
NAV_WasQDOriginal = 1;
NAV_ForGoalLevel = -1; { Put this only in the goal level. }
NAV_ForEntryLevel = -2; { Put this only in the entry level. }
NAS_EncounterActive = 34; { Is this activatable encounter active? Formerly QEncActive... }
NAS_QuestInUse = 35; { Used when constructing quests, to prevent the same fragment }
{ from being selected multiple times. }
NAS_Fortune = 36; { Factions may rise and fall in fortune. }
{ This is used to help determine the RPG campaign ending. }
NAS_DungeonEntrance = 37; { Used to find the entrance of a dungeon. }
NAS_LancemateTraining_Total = 38; { Used to regulate lancemate training/advancement. }
NAS_LancemateTraining_Spent = 39;
{ The following are used by the randmaps unit... }
NAS_LockedDoorChance = 101;
NAS_SecretDoorChance = 102;
{ The following may be used by various scenarios... }
NAS_VictimsRecovered = 201;
{ The following record how many people died over the course of the adventure... }
Num_Fatality_Types = 5;
Fatality_Base = 300;
NAS_TotalFatalities = 301; { How many people died, total. }
NAS_FamilyFatalities = 302;
NAS_FriendFatalities = 303;
NAS_LoverFatalities = 304;
NAS_LancemateFatalities = 305;
MassPerMV = 15; { Amount of mass per MV , TR modifier. }
NAG_Display = 13;
NAS_PrimaryFrame = 0;
NAG_Prefrences = 15;
NAS_DefAtOp = 0; { Default Attack Option }
NAS_UseNonLethalAttacks = 1; { Use NonLethal attacks where appropriate. }
{ ******************************* }
{ *** FILE NAME CONSTANTS *** }
{ ******************************* }
OS_Dir_Separator = DirectorySeparator;
OS_Search_Separator = PathSeparator;
OS_Current_Directory = '.';
{ All of the following file names have been checked for }
{ correct capitalization. Hopefully, everything should run }
{ fine. }
Default_File_Ending = '.txt';
Default_Search_Pattern = '*.txt';
Design_DirName = '/usr/share/games/gearhead2/design';
Design_Directory = Design_DirName + OS_Dir_Separator;
PC_Equipment_Pattern = 'PC_*.txt';
Series_DirName = 'series';
Series_Directory = Series_DirName + OS_Dir_Separator;
Archetypes_File = Series_Directory + 'ANPCdefault.txt';
Adventure_File_Base = Series_Directory + 'ADV_';
STC_Item_Pattern = 'STC_*.txt';
Plot_Seacrh_Pattern = Series_Directory + 'PLOT' + Default_Search_Pattern;
Jobs_File = Series_Directory + 'RCJobs.txt';
Monsters_File_Pattern = 'WMON_*.txt';
Data_DirName = '/usr/share/games/gearhead2/gamedata';
Data_Directory = Data_DirName + OS_Dir_Separator;
MetaTerrain_File_Base = Data_Directory + 'meta';
Trait_Chatter_Base = Data_Directory + 'TC_';
Standard_Message_File = Data_Directory + 'messages.txt';
Damage_Strings_File = Data_Directory + 'damage.txt';
Ability_Message_File = Data_Directory + 'ability.txt';
Standard_Nouns_File = Data_Directory + 'nouns.txt';
Standard_Phrases_File = Data_Directory + 'phrases.txt';
Standard_Adjectives_File = Data_Directory + 'adjectives.txt';
Standard_Rumors_File = Data_Directory + 'rumors.txt';
Standard_Chatter_File = Data_Directory + 'chat_msg.txt';
Standard_Threats_File = Data_Directory + 'threats.txt';
Parser_Macro_File = Data_Directory + 'ghpmacro.txt';
Script_Macro_File = Data_Directory + 'aslmacro.txt';
Value_Macro_File = Data_Directory + 'asvmacro.txt';
Effects_Message_File = Data_Directory + 'effects.txt';
RandMaps_Param_File = Data_Directory + 'randmaps.txt';
NPC_Chatter_File = Data_Directory + 'taunts.txt';
Doc_DirName = '/usr/share/games/gearhead2/doc';
Doc_Directory = Doc_DirName + OS_Dir_Separator;
Mecha_Help_File = Doc_Directory + 'man_umek.txt';
FieldHQ_Help_File = Doc_Directory + 'man_mecha.txt';
Chara_Help_File = Doc_Directory + 'man_chara.txt';
Graphics_DirName = '/usr/share/games/gearhead2/image';
Graphics_Directory = Graphics_Dirname + OS_Dir_Separator;
STARTUP_OK: Boolean = True;
Type
SAttPtr = ^SAtt;
SAtt = Record {*** STRING ATTRIBUTE ***}
info: String;
next: SAttPtr;
end;
NAttPtr = ^NAtt;
NAtt = Record {*** NUMERICAL ATTRIBUTE ***}
G,S: Integer; {General, Specific, Value}
V: LongInt;
next: NAttPtr;
end;
GearPtr = ^gear;
gear = Record {*** GEARHEAD BIT ***}
G,S,V: Integer; {General Descriptive,}
{Specific Descriptive,}
{and Value Descriptive}
Scale: Integer; {Scale of this Gear}
Stat: Array [1..NumGearStats] of Integer;
{Gear Stats. Needed info for Gear type.}
SA: SAttPtr; {String Attributes.}
NA: NAttPtr; {Numerical Attributes.}
next: GearPtr; {Next sibling Gear}
subcom: GearPtr; {Child Internal Gear}
invcom: GearPtr; {Child External Gear}
parent: GearPtr; {Parent of the current Gear.}
end;
var
Save_Game_DirName,Save_Game_Directory,Save_Character_Base,Save_Egg_Base,Save_Unit_Base,Save_Campaign_Base: String;
Config_Directory,Config_File: String;
Function CreateSAtt(var LList: SAttPtr): SAttPtr;
Procedure DisposeSAtt(var LList: SAttPtr);
Procedure RemoveSAtt(var LList,LMember: SAttPtr);
Function FindSAtt(LList: SAttPtr; const Code_In: String): SAttPtr;
Function SetSAtt(var LList: SAttPtr; const Info: String): SAttPtr;
Function StoreSAtt(var LList: SAttPtr; const Info: String): SAttPtr;
Function AddSAtt( var LList: SAttPtr; const S_Label_in,S_Data: String ): SAttPtr;
Function SAttValue(LList: SAttPtr; const Code: String): String;
function NumSAtts( GList: SAttPtr ): Integer;
function RetrieveSAtt( List: SAttPtr; N: Integer ): SAttPtr;
function SelectRandomSAtt( SAList: SAttPtr ): SAttPtr;
Function LoadStringList( const FName_In: String ): SAttPtr;
Procedure SaveStringList( const FName: String; SList: SattPtr );
Procedure ExpandFileList( var FList: SAttPtr; const P: String );
Function CreateFileList( const P: String ): SAttPtr;
Procedure SortStringList( var LList: SAttPtr );
Function NumHeadMatches( const head_in: String; LList: SAttPtr ): Integer;
Function FindHeadMatch( const head_in: String; LList: SAttPtr; N: Integer ): SAttPtr;
Function StringInList( const string_to_match: String; LList: SAttPtr ): Boolean;
Function CreateNAtt(var LList: NAttPtr): NAttPtr;
Procedure DisposeNAtt(var LList: NAttPtr);
Procedure RemoveNAtt(var LList,LMember: NAttPtr);
Function FindNAtt(LList: NAttPtr; G,S: Integer): NAttPtr;
Function SetNAtt(var LList: NAttPtr; G,S: Integer; V: LongInt): NAttPtr;
Function AddNAtt(var LList: NAttPtr; G,S: Integer; V: LongInt): NAttPtr;
Function NAttValue(LList: NAttPtr; G,S: Integer): LongInt;
Procedure StripNAtt( Part: GearPtr ; G: Integer );
Function NumNAtts( LList: NAttPtr ): Integer;
function SelectRandomNAtt( NAList: NAttPtr ): NAttPtr;
Function LastGear(LList: GearPtr): GearPtr;
Function NewGear( Parent: GearPtr ): GearPtr;
Procedure AppendGear( var LList: GearPtr; It: GearPtr );
Function AddGear(var LList: GearPtr; Parent: GearPtr): GearPtr;
Procedure DisposeGear(var LList: GearPtr);
Procedure RemoveGear(var LList,LMember: GearPtr);
Procedure DelinkGear(var LList,LMember: GearPtr);
function NumSiblingGears( GList: GearPtr ): Integer;
function SelectRandomGear( GList: GearPtr ): GearPtr;
function FindRoot( Part: GearPtr ): GearPtr;
Procedure InsertSubCom( Parent,NewMember: GearPtr );
Procedure InsertInvCom( Parent,NewMember: GearPtr );
Function IsFoundAlongTrack( Track,Part: GearPtr ): Boolean;
Function IsSubCom( Part: GearPtr ): Boolean;
Function IsInvCom( Part: GearPtr ): Boolean;
Function CloneSAtt( SA: SAttPtr ): SAttPtr;
Function CloneGear( Part: GearPtr ): GearPtr;
Function RetrieveGearSib( List: GearPtr; N: Integer ): GearPtr;
Procedure Rescale( Part: GearPtr; SF: Integer );
Procedure MarkGearsWithNAtt( Master: GearPtr; G,S,V: LongInt );
Procedure MarkGearsWithSAtt( Master: GearPtr; const Info: String );
implementation
Function LastSAtt( LList: SAttPtr ): SAttPtr;
{ Find the last SAtt in this particular list. }
begin
if LList <> Nil then while LList^.Next <> Nil do LList := LList^.Next;
LastSAtt := LList;
end;
Function CreateSAtt(var LList: SAttPtr): SAttPtr;
{Add a new element to the tail of LList.}
var
it: SAttPtr;
begin
{Allocate memory for our new element.}
New(it);
if it = Nil then exit( Nil );
it^.Next := Nil;
{Attach IT to the list.}
if LList = Nil then begin
LList := it;
end else begin
LastSAtt( LList )^.Next := it;
end;
{Return a pointer to the new element.}
CreateSAtt := it;
end;
Procedure DisposeSAtt(var LList: SAttPtr);
{Dispose of the list, freeing all associated system resources.}
var
LTemp: SAttPtr;
begin
while LList <> Nil do begin
LTemp := LList^.Next;
Dispose(LList);
LList := LTemp;
end;
end;
Procedure RemoveSAtt(var LList,LMember: SAttPtr);
{Locate and extract member LMember from list LList.}
{Then, dispose of LMember.}
var
a,b: SAttPtr;
begin
{Initialize A and B}
B := LList;
A := Nil;
{Locate LMember in the list. A will thereafter be either Nil,}
{if LMember if first in the list, or it will be equal to the}
{element directly preceding LMember.}
while (B <> LMember) and (B <> Nil) do begin
A := B;
B := B^.next;
end;
if B = Nil then begin
{Major FUBAR. The member we were trying to remove can't}
{be found in the list.}
writeln('ERROR- RemoveSAtt asked to remove a link that doesnt exist.');
end
else if A = Nil then begin
{There's no element before the one we want to remove,}
{i.e. it's the first one in the list.}
LList := B^.Next;
Dispose(B);
end
else begin
{We found the attribute we want to delete and have another}
{one standing before it in line. Go to work.}
A^.next := B^.next;
Dispose(B);
end;
end;
Function LabelsMatch( const info,code: String ): Boolean;
{ Return TRUE if UpCase( CODE ) matches UpCase( INFO ) all the }
{ way to the first '<', ignoring spaces and tabs. }
var
i_pos,c_pos: Integer;
begin
{ error check... }
if ( info = '' ) or ( code = '' ) then Exit( False );
i_pos := 0;
c_pos := 0;
repeat
inc( i_pos );
inc( c_pos );
while (i_pos <= Length(info)) and ((info[i_pos] = ' ') or (info[i_pos] = #9)) do begin
Inc(i_pos);
end;
while (c_pos <= Length(code)) and ((code[c_pos] = ' ') or (code[c_pos] = #9)) do begin
Inc(c_pos);
end;
until ( i_pos > Length( info ) ) or ( c_pos > Length( code ) ) or ( UpCase( info[i_pos] ) <> UpCase( code[c_pos] ) );
LabelsMatch := ( c_pos > Length( code ) ) and ( i_pos <= Length( info ) ) and ( info[i_pos] = '<' );
end;
Function FindSAtt(LList: SAttPtr; const Code_In: String): SAttPtr;
{Search through the list looking for a String Attribute}
{whose code matches CODE and return its address.}
{Return Nil if no such SAtt can be found.}
var
it: SAttPtr;
Code: String;
begin
{Initialize IT to Nil.}
it := Nil;
Code := UpCase(Code_In);
{Check through all the SAtts looking for the SATT in question.}
while ( LList <> Nil ) and ( it = Nil ) do begin
if LabelsMatch( LList^.info , Code ) then it := LList;
LList := LList^.Next;
end;
FindSAtt := it;
end;
Function SetSAtt(var LList: SAttPtr; const Info: String): SAttPtr;
{Add string attribute Info to the list. However, a gear}
{may not have two string attributes with the same name.}
{So, check to see whether or not the list already contains}
{a string attribute of this type; if so, just replace the}
{INFO field. If not, create a new SAtt and fill it in.}
var
it: SAttPtr;
code: String;
begin
{Determine the CODE of the string.}
code := Info;
code := ExtractWord(code);
{See if that code already exists in the list,}
{if not create a new entry for it.}
it := FindSAtt(LList,code);
{Plug in the value.}
if RetrieveAString( Info ) = '' then begin
if it <> Nil then RemoveSAtt( LList , it );
end else begin
if it = Nil then it := CreateSAtt(LList);
it^.info := Info;
end;
{Return a pointer to the new attribute.}
SetSAtt := it;
end;
Function StoreSAtt(var LList: SAttPtr; const Info: String): SAttPtr;
{ Add string attribute Info to the list. This procedure }
{ doesn't check to make sure this attribute isn't duplicated. }
var
it: SAttPtr;
begin
it := CreateSAtt(LList);
it^.info := Info;
{Return a pointer to the new attribute.}
StoreSAtt := it;
end;
Function AddSAtt( var LList: SAttPtr; const S_Label_In,S_Data: String ): SAttPtr;
{ Store this data in the string attributes list with kind-of the }
{ same label. If the label already exists, store under Label1, }
{ then the next data under Label2, and so on. }
var
T: SAttPtr;
S_Label,Info: String;
Max,N: Integer;
begin
{ ERROR CHECK- if no line exists currently, just add the basic label. }
if FindSAtt( LList , S_Label_In ) = Nil then begin
Exit( SetSAtt( LList , S_Label_In + ' <' + S_Data + '>' ) );
end;
{ Find the maximum value of this label currently stored in }
{ the list. }
Max := 1;
S_Label := UpCase( S_Label_In ) + '_';
{ Scan the list for examples of this label. }
T := LList;
while T <> Nil do begin
Info := T^.Info;
Info := UpCase( ExtractWord( Info ) );
{ If the first characters are the same as S_label, this }
{ is another copy of the list. }
if Copy( Info , 1 , Length( S_Label ) ) = S_Label then begin
Info := Copy( Info , Length( S_Label ) + 1 , Length( Info ) );
N := ExtractValue( Info );
if N >= Max then Max := N + 1;
end;
T := T^.Next;
end;
AddSAtt := SetSAtt( LList , S_Label + BStr( Max ) + ' <' + S_Data + '>' );
end;
Function SAttValue(LList: SAttPtr; const Code: String): String;
{Find a String Attribute which corresponds to Code, then}
{return its embedded alligator string.}
var
it: SAttPtr;
begin
it := FindSAtt(LList,Code);
if it = Nil then Exit('');
SAttValue := RetrieveAString(it^.info);
end;
function NumSAtts( GList: SAttPtr ): Integer;
{ Count the number of sibling gears along this track. }
var
N: Integer;
begin
N := 0;
while GList <> Nil do begin
Inc( N );
GList := GList^.Next;
end;
NumSAtts := N;
end;
function RetrieveSAtt( List: SAttPtr; N: Integer ): SAttPtr;
{ Retrieve a SAtt from the list. }
begin
{ error check- if asked to find a gear before the first one in }
{ the list, obviously we can't do that. Return Nil. }
if N < 1 then Exit( Nil );
{ Search for the desired gear. }
while ( N > 1 ) and ( List <> Nil ) do begin
Dec( N );
List := List^.Next;
end;
{ Return the last gear found. }
RetrieveSAtt := List;
end;
function SelectRandomSAtt( SAList: SAttPtr ): SAttPtr;
{ Pick one of the string attributes from the provided }
{ list at random. }
var
ST: SAttPtr;
N,T: Integer;
begin
{ Count the number of SAtts total. }
ST := SAList;
N := NumSAtts( SAList );
{ Choose one randomly. }
if N > 0 then begin
T := Random( N ) + 1;
ST := RetrieveSATt( SAList , T );
end;
SelectRandomSAtt := ST;
end;
Function LoadStringList( const FName_In: String ): SAttPtr;
{ Load a list of string attributes from the listed file, }
{ if it can be found. }
var
SList: SAttPtr;
F: Text;
S: String;
FName: String;
begin
SList := Nil;
FName := FSearch( FName_In , '.' );
if FName <> '' then begin
Assign( F , FName );
Reset( F );
{ Get rid of the opening comment }
ReadLn( F , S );
while not EOF( F ) do begin
ReadLn( F , S );
if S <> '' then StoreSAtt( SList , S );
end;
Close( F );
end;
LoadStringList := SList;
end;
Procedure SaveStringList( const FName: String; SList: SattPtr );
{ Save a list of string attributes to the listed filename. }
var
F: Text;
begin
Assign( F , FName );
Rewrite( F );
WriteLn( F , '%%% File saved by SaveStringList %%%' );
while SList <> Nil do begin
WriteLn( F , SList^.Info );
SList := SList^.Next;
end;
Close( F );
end;
Procedure ExpandFileList( var FList: SAttPtr; const P: String );
{ Add more files to the list. }
var
SRec: SearchRec;
begin
FindFirst( P , AnyFile , SRec );
{ As long as there are files which match our description, }
{ process them. }
While DosError = 0 do begin
StoreSAtt( FList , SRec.Name );
{ Look for the next file in the directory. }
FindNext( SRec );
end;
FindClose( SRec );
end;
Function CreateFileList( const P: String ): SAttPtr;
{ Create a list of file names which match the requested pattern. }
var
LList: SAttPtr;
begin
{ Start the search process going... }
LList := Nil;
ExpandFileList( LList , P );
CreateFileList := LList;
end;
Procedure SortStringList( var LList: SAttPtr );
{ Sort this list of strings in alphabetical order. }
var
sorted: SAttPtr; {The sorted list}
a,b,c,d: SAttPtr;{Counters. We always need them, you know.}
youshouldstop: Boolean; {Can you think of a better name?}
begin
{Initialize A and Sorted.}
a := LList;
Sorted := Nil;
while a <> Nil do begin
b := a; {b is to be added to sorted}
a := a^.next; {increase A to the next item in the menu}
{Give b's Next field a value of Nil.}
b^.next := nil;
{Locate the correct position in Sorted to store b}
{ Get rid of anything that isn't a mecha. }
if HeadMatchesString( 'PC_' , b^.info ) then begin
{ This is an equipment file, not a mecha file. Delete it. }
DisposeSAtt( b );
end else if Sorted = Nil then
{This is the trivial case- Sorted is empty.}
Sorted := b
else if UpCase( b^.info ) < Upcase( Sorted^.info ) then begin
{b should be the first element in the list.}
c := sorted;
sorted := b;
sorted^.next := c;
end
else begin
{c and d will be used to move through Sorted.}
c := Sorted;
{Locate the last item lower than b}
youshouldstop := false;
repeat
d := c;
c := c^.next;
if c = Nil then
youshouldstop := true
else if UpCase( c^.info ) > UpCase( b^.info ) then begin
youshouldstop := true;
end;
until youshouldstop;
b^.next := c;
d^.next := b;
end;
end;
LList := Sorted;
end;
Function NumHeadMatches( const head_in: String; LList: SAttPtr ): Integer;
{ Return how many SAtts in the list match the HEAD provided. }
{ A match is made if the first Length(head) characters of }
{ the string attribute are equal to head. }
var
N: Integer;
Head: String;
begin
N := 0;
Head := UpCase( Head_In );
while LList <> Nil do begin
if UpCase( Copy( LList^.Info , 1 , Length( Head ) ) ) = Head then begin
Inc( N );
end;
LList := LList^.Next;
end;
NumHeadMatches := N;
end;
Function FindHeadMatch( const head_in: String; LList: SAttPtr; N: Integer ): SAttPtr;
{ Return head match number N, as defined above. }
{ If no match is found return Nil. }
var
HM: SAttPtr;
Head: String;
begin
HM := Nil;
Head := UpCase( Head_In );
while LList <> Nil do begin
if UpCase( Copy( LList^.Info , 1 , Length( Head ) ) ) = Head then begin
Dec( N );
if N = 0 then HM := LList;
end;
LList := LList^.Next;
end;
FindHeadMatch := HM;
end;
Function StringInList( const string_to_match: String; LList: SAttPtr ): Boolean;
{ Check this list to see if it includes string_to_match. If it does, }
{ return True. Otherwise return False. }
var
foundit: Boolean;
begin
foundit := False;
while ( LList <> Nil ) and not foundit do begin
if LList^.Info = string_to_match then foundit := True;
LList := LList^.Next;
end;
StringInList := foundit;
end;
Function CreateNAtt(var LList: NAttPtr): NAttPtr;
{Add a new element to the head of LList.}
var
it: NAttPtr;
begin
{Allocate memory for our new element.}
New(it);
if it = Nil then exit( Nil );
{Initialize values.}
it^.Next := LList;
LList := it;
{Return a pointer to the new element.}
CreateNAtt := it;
end;
Procedure DisposeNAtt(var LList: NAttPtr);
{Dispose of the list, freeing all associated system resources.}
var
LTemp: NAttPtr;
begin
while LList <> Nil do begin
LTemp := LList^.Next;
Dispose(LList);
LList := LTemp;
end;
end;
Procedure RemoveNAtt(var LList,LMember: NAttPtr);
{Locate and extract member LMember from list LList.}
{Then, dispose of LMember.}
var
a,b: NAttPtr;
begin
{Initialize A and B}
B := LList;
A := Nil;
{Locate LMember in the list. A will thereafter be either Nil,}
{if LMember if first in the list, or it will be equal to the}
{element directly preceding LMember.}
while (B <> LMember) and (B <> Nil) do begin
A := B;
B := B^.next;
end;
if B = Nil then begin
{Major FUBAR. The member we were trying to remove can't}
{be found in the list.}
writeln('ERROR- RemoveLink asked to remove a link that doesnt exist.');
end
else if A = Nil then begin
{There's no element before the one we want to remove,}
{i.e. it's the first one in the list.}
LList := B^.Next;
Dispose(B);
end
else begin
{We found the attribute we want to delete and have another}
{one standing before it in line. Go to work.}
A^.next := B^.next;
Dispose(B);
end;
end;
Function FindNAtt(LList: NAttPtr; G,S: Integer): NAttPtr;
{Locate the numerical attribute described by G,S and}
{return a pointer to it. If no such attribute exists}
{in the list, return Nil.}
var
it: NAttPtr;
begin
{Initialize it to Nil.}
it := Nil;
{Loop through all the elements.}
while ( LList <> Nil ) and ( it = Nil ) do begin
if (LList^.G = G) and (LList^.S = S) then it := LList;
LList := LList^.Next;
end;
{Return the value.}
FindNatt := it;
end;
Function SetNAtt(var LList: NAttPtr; G,S: Integer; V: LongInt ): NAttPtr;
{Set the Numerical Attribute described by G,S to value V.}
{If the attribute already exists, change its value. If not,}
{create the attribute.}
var
it: NAttPtr;
begin
it := FindNAtt(LList,G,S);
if ( it = Nil ) and ( V <> 0 ) then begin
{The attribute doesn't currently exist. Create it.}
it := CreateNAtt(LList);
it^.G := G;
it^.S := S;
it^.V := V;
end else if ( it <> Nil ) and ( V = 0 ) then begin
RemoveNAtt( LList , it );
end else if it <> Nil then begin
{The attribute is already posessed. Just change}
{its Value field.}
it^.V := V;
end;
SetNAtt := it;
end;
Function AddNAtt(var LList: NAttPtr; G,S: Integer; V: LongInt ): NAttPtr;
{Add value V to the value field of the Numerical Attribute}
{described by G,S. If the attribute does not exist, create}
{it and set its value to V.}
{If, as a result of this operation, V drops to 0,}
{the numerical attribute will be removed and Nil will}
{be returned.}
var
it: NAttPtr;
begin
it := FindNAtt(LList,G,S);
if it = Nil then begin
{The attribute doesn't currently exist. Create it.}
it := CreateNAtt(LList);
it^.G := G;
it^.S := S;
it^.V := V;
end else begin
it^.V := it^.V + V;
end;
if it^.V = 0 then RemoveNAtt(LList,it);
AddNAtt := it;
end;
Function NAttValue(LList: NAttPtr; G,S: Integer): LongInt;
{Return the value of Numeric Attribute G,S. If this}
{attribute is not posessed, return 0.}
var
it: LongInt;
begin
it := 0;
while LList <> Nil do begin
if (LList^.G = G) and (LList^.S = S) then it := LList^.V;
LList := LList^.Next;
end;
NAttValue := it;
end;
Procedure StripNAtt( Part: GearPtr ; G: Integer );
{ Remove all numeric attributes of general type G from }
{ PART and all of its children. }
var
SG: GearPtr;
NA,NA2: NAttPtr;
begin
{ Remove from PART. }
NA := Part^.NA;
while NA <> Nil do begin
NA2 := NA^.Next;
if NA^.G = G then RemoveNAtt( Part^.NA , NA );
NA := NA2;
end;
{ Remove from the InvComponents. }
SG := Part^.InvCom;
while SG <> Nil do begin
StripNAtt( SG , G );
SG := SG^.Next;
end;
{ Remove from the SubComponents. }
SG := Part^.SubCom;
while SG <> Nil do begin
StripNAtt( SG , G );
SG := SG^.Next;
end;
end;
Function NumNAtts( LList: NAttPtr ): Integer;
{ Count the number of siblings in this list. }
var
N: Integer;
begin
N := 0;
while LList <> Nil do begin
Inc( N );
LList := LList^.Next;
end;
NumNAtts := N;
end;
function RetrieveNAttByListPos( List: NAttPtr; N: Integer ): NAttPtr;
{ Return the N'th NAtt from the list. }
begin
{ error check- if asked to find a gear before the first one in }
{ the list, obviously we can't do that. Return Nil. }
if N < 1 then Exit( Nil );
{ Search for the desired attribute. }
while ( N > 1 ) and ( List <> Nil ) do begin
Dec( N );
List := List^.Next;
end;
{ Return the last attribute found. }
RetrieveNAttByListPos := List;
end;
function SelectRandomNAtt( NAList: NAttPtr ): NAttPtr;
{ Out of all the NAtts in the list, select one at random. }
var
N,T: Integer;
it: NAttPtr;
begin
{ Count the number of NAtts total. }
it := Nil;
N := NumNAtts( NAList );
{ Choose one randomly. }
if N > 0 then begin
T := Random( N ) + 1;
it := RetrieveNAttByListPos( NAList , T );
end;
SelectRandomNAtt := it;
end;
Function LastGear(LList: GearPtr): GearPtr;
{Search through the linked list, and return the last element.}
{If LList is empty, return Nil.}
begin
if LList <> Nil then
while LList^.Next <> Nil do
LList := LList^.Next;
LastGear := LList;
end;
Function NewGear( Parent: GearPtr ): GearPtr;
{ Create a new gear, and initialize it to default values. }
var
T: Integer;
it: GearPtr;
begin
{Allocate memory for our new element.}
New(it);
if it = Nil then exit( Nil );
{Initialize values.}
it^.Next := Nil;
it^.SA := Nil;
it^.NA := Nil;
it^.SubCom := Nil;
it^.InvCom := Nil;
it^.Parent := Parent;
it^.G := 0;
it^.S := 0;
it^.V := 0;
it^.Scale := 0;
for t := 1 to NumGearStats do it^.Stat[t] := 0;
NewGear := it;
end;
Procedure AppendGear( var LList: GearPtr; It: GearPtr );
{ Attach IT to the end of the list. }
begin
{Attach IT to the list.}
if LList = Nil then
LList := it
else
LastGear(LList)^.Next := it;
end;
Function AddGear(var LList: GearPtr; Parent: GearPtr): GearPtr;
{Add a new element to the end of LList.}
var
it: GearPtr;
begin
it := NewGear( Parent );
AppendGear( LList , It );
{Return a pointer to the new element.}
AddGear := it;
end;
Procedure DisposeGear( var LList: GearPtr);
{Dispose of the list, freeing all associated system resources.}
var
LTemp: GearPtr;
begin
while LList <> Nil do begin
LTemp := LList^.Next;
{Dispose of all resources and children attached to this GEAR.}
if LList^.SA <> Nil then DisposeSAtt(LList^.SA);
if LList^.NA <> Nil then DisposeNAtt(LList^.NA);
DisposeGear( LList^.SubCom );
DisposeGear( LList^.InvCom );
{Dispose of the GEAR itself.}
Dispose(LList);
LList := LTemp;
end;
end;
Procedure RemoveGear(var LList,LMember: GearPtr);
{Locate and extract member LMember from list LList.}
{Then, dispose of LMember.}
var
a,b: GearPtr;
begin
{Initialize A and B}
B := LList;
A := Nil;
{Locate LMember in the list. A will thereafter be either Nil,}
{if LMember if first in the list, or it will be equal to the}
{element directly preceding LMember.}
while (B <> LMember) and (B <> Nil) do begin
A := B;
B := B^.next;
end;
if B = Nil then begin
{Major FUBAR. The member we were trying to remove can't}
{be found in the list.}
writeln('ERROR- RemoveGear asked to remove a link that doesnt exist.');
end else if A = Nil then begin
{There's no element before the one we want to remove,}
{i.e. it's the first one in the list.}
LList := B^.Next;
B^.Next := Nil;
DisposeGear(B);
LMember := Nil;
end else begin
{We found the attribute we want to delete and have another}
{one standing before it in line. Go to work.}
A^.next := B^.next;
B^.next := Nil;
DisposeGear(B);
LMember := Nil;
end;
end;
Procedure DelinkGear(var LList,LMember: GearPtr);
{Locate and extract member LMember from list LList.}
var
a,b: GearPtr;
begin
{Initialize A and B}
B := LList;
A := Nil;
{Locate LMember in the list. A will thereafter be either Nil,}
{if LMember if first in the list, or it will be equal to the}
{element directly preceding LMember.}
while (B <> LMember) and (B <> Nil) do begin
A := B;
B := B^.next;
end;
if B = Nil then begin
{Major FUBAR. The member we were trying to remove can't}
{be found in the list.}
writeln('ERROR- DelinkGear asked to remove a link that doesnt exist.' + SAttValue( LList^.SA , 'NAME' ) + ' , ' + SAttValue( LMember^.SA , 'NAME' ));
end
else if A = Nil then begin
{There's no element before the one we want to remove,}
{i.e. it's the first one in the list.}
LList := B^.Next;
B^.Next := Nil;
end
else begin
{We found the attribute we want to delete and have another}
{one standing before it in line. Go to work.}
A^.next := B^.next;
B^.next := Nil;
end;
{ LMember has been delinked. Get rid of its parent, if it had one. }
LMember^.Parent := Nil;
end;
function NumSiblingGears( GList: GearPtr ): Integer;
{ Count the number of sibling gears along this track. }
var
N: Integer;
begin
N := 0;
while GList <> Nil do begin
Inc( N );
GList := GList^.Next;
end;
NumSiblingGears := N;
end;
function SelectRandomGear( GList: GearPtr ): GearPtr;
{ Pick one of the sibling gears from the provided }
{ list at random. }
var
ST: GearPtr;
N,T: Integer;
begin
{ Count the number of gears total. }
N := NumSiblingGears( GList );
{ Choose one randomly. }
if N > 0 then begin
T := Random( N ) + 1;
ST := GList;
N := 1;
while N < T do begin
Inc( N );
St := St^.Next;
end;
end else begin
ST := Nil;
end;
SelectRandomGear := ST;
end;
function FindRoot( Part: GearPtr ): GearPtr;
{ Locate the master of PART. Return NIL if there is no master. }
begin
{ Move the pointer up to either root level or the first Master parent. }
while ( Part <> Nil ) and ( Part^.Parent <> Nil ) do Part := Part^.Parent;
FindRoot := Part;
end;
Procedure InsertSubCom( Parent,NewMember: GearPtr );
{ Insert the new gear NewMember as a child of Parent. }
begin
if Parent^.SubCom = Nil then begin
Parent^.SubCom := NewMember;
end else begin
LastGear(Parent^.SubCom)^.Next := NewMember;
end;
{ Set the parent value to the parent gear. Do this for every }
{ item in the NewMember list. }
while NewMember <> Nil do begin
NewMember^.Parent := Parent;
NewMember := NewMember^.Next;
end;
end;
Procedure InsertInvCom( Parent,NewMember: GearPtr );
{ Insert the new gear NewMember as a child of Parent. }
begin
if Parent^.InvCom = Nil then begin
Parent^.InvCom := NewMember;
end else begin
LastGear(Parent^.InvCom)^.Next := NewMember;
end;
{ Set the parent value to the parent gear. Do this for every }
{ item in the NewMember list. }
while NewMember <> Nil do begin
NewMember^.Parent := Parent;
NewMember := NewMember^.Next;
end;
end;
Function CloneSAtt( SA: SAttPtr ): SAttPtr;
{ Exactly copy a list of strings. }
var
LList: SAttPtr;
begin
LList := Nil;
while SA <> Nil do begin
SetSAtt( LList , SA^.Info );
SA := SA^.Next;
end;
CloneSAtt := LList;
end;
Function CloneGear( Part: GearPtr ): GearPtr;
{ Create an exact copy of PART, including all attributes and }
{ components. }
Procedure XeroxGear( Master,Blank: GearPtr );
{ Copy Master to Blank, ignoring the connective fields. }
var
t: Integer;
NA: NAttPtr;
begin
{ Copy basic info. }
Blank^.G := Master^.G;
Blank^.S := Master^.S;
Blank^.V := Master^.V;
Blank^.Scale := Master^.Scale;
{ Copy stats. }
for T := 1 to NumGearStats do Blank^.Stat[t] := Master^.Stat[t];
{ Copy attributes. }
NA := Master^.NA;
while NA <> Nil do begin
SetNAtt( Blank^.NA , NA^.G , NA^.S , NA^.V );
NA := NA^.Next;
end;
Blank^.SA := CloneSAtt( Master^.SA );
end;
Function CloneTrack( Parent,Part: GearPtr ): GearPtr;
{ Copy this gear and all its siblings. }
var
it,P2: GearPtr;
begin
it := Nil;
while Part <> Nil do begin
P2 := AddGear( it , Parent );
XeroxGear( Part , P2 );
P2^.SubCom := CloneTrack( P2 , Part^.SubCom );
P2^.InvCom := CloneTrack( P2 , Part^.InvCom );
Part := Part^.Next;
end;
CloneTrack := it;
end;
var
it: GearPtr;
begin
if Part = Nil then exit( Nil );
it := NewGear( Nil );
XeroxGear( Part , it );
it^.SubCom := CloneTrack( it , Part^.SubCom );
it^.InvCom := CloneTrack( it , Part^.InvCom );
CloneGear := it;
end;
Function RetrieveGearSib( List: GearPtr; N: Integer ): GearPtr;
{ Find the address of the Nth sibling gear in this list. }
{ If no such gear exists, return Nil. }
begin
{ error check- if asked to find a gear before the first one in }
{ the list, obviously we can't do that. Return Nil. }
if N < 1 then Exit( Nil );
{ Search for the desired gear. }
while ( N > 1 ) and ( List <> Nil ) do begin
Dec( N );
List := List^.Next;
end;
{ Return the last gear found. }
RetrieveGearSib := List;
end;
Function IsFoundAlongTrack( Track,Part: GearPtr ): Boolean;
{ Return TRUE if PART is found as a sibling component somewhere }
{ along TRACK, or FALSE if it cannot be found. }
var
it: Boolean;
begin
it := False;
While Track <> Nil do begin
if Track = Part then it := True;
Track := Track^.Next;
end;
IsFoundAlongTrack := it;
end;
Function IsSubCom( Part: GearPtr ): Boolean;
{ Return TRUE if PART is a subcomponent of its parent, FALSE otherwise. }
begin
{ First an error check- if PART doesn't exist, or if it is at root }
{ level, it can't be a subcom. }
if ( Part = Nil ) or ( Part^.Parent = Nil ) then begin
IsSubCom := False;
end else begin
IsSubCom := IsFoundAlongTrack( Part^.Parent^.SubCom , Part );
end;
end;
Function IsInvCom( Part: GearPtr ): Boolean;
{ Return TRUE if PART is an invcomponent of its parent, FALSE otherwise. }
begin
{ First an error check- if PART doesn't exist, or if it is at root }
{ level, it can't be an invcom. }
if ( Part = Nil ) or ( Part^.Parent = Nil ) then begin
IsInvCom := False;
end else begin
IsInvCom := IsFoundAlongTrack( Part^.Parent^.InvCom , Part );
end;
end;
Procedure Rescale( Part: GearPtr; SF: Integer );
{ Alter the scale of this part and all its subcoms. }
var
S: GearPtr;
begin
Part^.Scale := SF;
S := Part^.SubCom;
while S <> Nil do begin
Rescale( S , SF );
S := S^.Next;
end;
S := Part^.InvCom;
while S <> Nil do begin
Rescale( S , SF );
S := S^.Next;
end;
end;
Procedure MarkGearsWithNAtt( Master: GearPtr; G,S,V: LongInt );
{ Mark all the gears in this tree with the provided NAtt. }
Procedure DoAlongPath( LList: GearPtr );
{ Mark the NAtt along this list, and along all children. }
begin
while LList <> Nil do begin
SetNAtt( LList^.NA , G , S , V );
DoAlongPath( LList^.SubCom );
DoAlongPath( LList^.InvCom );
LList := LList^.Next;
end;
end;
begin
SetNAtt( Master^.NA , G , S , V );
DoAlongPath( Master^.SubCom );
DoAlongPath( Master^.InvCom );
end;
Procedure MarkGearsWithSAtt( Master: GearPtr; const Info: String );
{ Mark all the gears in this tree with the provided SAtt. }
Procedure DoAlongPath( LList: GearPtr );
{ Mark the SAtt along this list, and along all children. }
begin
while LList <> Nil do begin
SetSAtt( LList^.SA , Info );
DoAlongPath( LList^.SubCom );
DoAlongPath( LList^.InvCom );
LList := LList^.Next;
end;
end;
begin
SetSAtt( Master^.SA , Info );
DoAlongPath( Master^.SubCom );
DoAlongPath( Master^.InvCom );
end;
Procedure CheckDirectoryPresent;
{ Make sure that the default save directory exists. If not, }
{ create it. }
begin
if not DirectoryExists( Config_Directory ) then begin
MkDir( Config_Directory );
end;
if not DirectoryExists( Save_Game_Directory ) then begin
MkDir( Save_Game_Directory );
end;
{ Check to make sure all the other directories can be found. }
Startup_OK := DirectoryExists( Design_DirName );
Startup_OK := Startup_OK and DirectoryExists( Series_DirName );
Startup_OK := Startup_OK and DirectoryExists( Data_DirName );
{$IFNDEF ASCII}
Startup_OK := Startup_OK and DirectoryExists( Graphics_DirName );
{$ENDIF}
end;
initialization
{ Make sure we have the required data directories. }
ChDir( '/usr/share/games/gearhead2' );
if paramcount() > 0 then begin
Config_Directory := IncludeTrailingPathDelimiter( paramstr(1) );
end else begin
{$IFDEF WINDOWS}
Config_Directory := GetUserDir() + OS_Dir_Separator + 'gearhead2' + OS_Dir_Separator;
{$ELSE}
Config_Directory := GetEnv( 'HOME' ) + '/.gearhead2/';
{$ENDIF}
end;
Config_File := Config_Directory + 'gearhead2.conf';
Save_Game_DirName := 'savegame2';
Save_Game_Directory := Config_Directory + Save_Game_Dirname + OS_Dir_Separator;
Save_Character_Base := Save_Game_Directory + 'CHA';
Save_Egg_Base := Save_Game_Directory + 'EGG';
Save_Unit_Base := Save_Game_Directory + 'GHU';
Save_Campaign_Base := Save_Game_Directory + 'RPG';
{ Make sure we have the required data directories. }
CheckDirectoryPresent;
end.
|