Ignore:
Timestamp:
Mar 6, 2019, 8:10:23 AM (5 years ago)
Author:
chronos
Message:
  • Added: StdAI from original game. Previously used only AI dev kit.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AI/StdAI/Names.pas

    r124 r160  
    44
    55uses
    6   Protocol;
     6Protocol;
    77
    88const
    99
    10   Name_Advance: array [0 .. nAdv - 1] of string = ('Advanced Flight',
    11     'Amphibious Warfare', 'Astronomy', 'Atomic Theory', 'Automobile',
    12     'Ballistics', 'Banking', 'Bridge Building', 'Bronze Working',
    13     'Ceremonial Burial', 'Chemistry', 'Chivalry', 'Composites', 'Code of Laws',
    14     'Combined Arms', 'Combustion Engine', 'Communism', 'Computers',
    15     'Conscription', 'Construction', 'The Corporation', 'Space Flight',
    16     'Currency', 'Democracy', 'Economics', 'Electricity', 'Electronics',
    17     'Engineering', 'Environmentalism', 'The Wheel', 'Explosives', 'Flight',
    18     'Intelligence', 'Gunpowder', 'Horseback Riding', 'Impulse Drive',
    19     'Industrialization', 'Intelligent Arms', 'Invention', 'Iron Working',
    20     'The Laser', 'Nuclear Power', 'Literature', 'Internet', 'Magnetism',
    21     'Map Making', 'Masonry', 'Mass Production', 'Mathematics', 'Medicine',
    22     'Metallurgy', 'Miniaturization', 'Mobile Warfare', 'Monarchy', 'Mysticism',
    23     'Navigation', 'Nuclear Fission', 'Philosophy', 'Physics', 'Plastics',
    24     'Poetry', 'Pottery', 'Radio Communication', 'Recycling', 'Refrigeration',
    25     'Monotheism', 'The Republic', 'Robotics', 'Rocketry', 'Railroad',
    26     'Sanitation', 'Science', 'Writing', 'Seafaring',
    27     'Self-Contained Environment', 'Stealth', 'Steam Engine', 'Steel',
    28     'Synthetic Food', 'Tactics', 'Theology', 'Theory of Gravity', 'Trade',
    29     'Transstellar Colonization', 'University', 'Advanced Rocketry',
    30     'Warrior Code', 'Alphabet', 'Polytheism', 'Refining',
    31     'Computing Technology', 'Nano Technology', 'Material Technology',
    32     'Artificial Intelligence');
    33 
    34   Name_Improvement: array [0 .. nImp - 1] of string = ('The Pyramids',
    35     'The Temple of Zeus', 'The Hanging Gardens', 'The Colossus',
    36     'The Lighthouse', 'The Great Library', 'The Oracle',
    37     'Sun Tzu''s War Academy', 'Leonardo''s Workshop', 'Magellan''s Expedition',
    38     'Michelangelo''s Chapel', '*', 'Newton''s College', 'Bach''s Cathedral',
    39     '*', 'The Statue of Liberty', 'The Eiffel Tower', 'The Hoover Dam',
    40     'The Shinkansen Express', 'The Manhattan Project', 'MIR Space Station', '*',
    41     '*', '*', '*', '*', '*', '*', 'Trade Goods', 'Barracks', 'Granary',
    42     'Temple', 'Marketplace', 'Library', 'Courthouse', 'City Walls', 'Aqueduct',
    43     'Bank', 'Cathedral', 'University', 'Harbor', 'Theater', 'Factory',
    44     'Manufacturing Plant', 'Recycling Center', 'Power Station',
    45     'Hydroelectric Dam', 'Nuclear Plant', 'Offshore Platform', 'Town Hall',
    46     'Sewer System', 'Supermarket', 'Superhighways', 'Research Lab',
    47     'SAM Missile Battery', 'Coastal Fortress', 'Airport', 'Dockyard', 'Palace',
    48     'Great Wall', 'Colosseum', 'Observatory', 'Military Academy',
    49     'Command Bunker', 'Algae Plant', 'Stock Exchange', 'Space Port',
    50     'Colony Ship Component', 'Power Module', 'Habitation Module');
    51 
    52   Name_Feature: array [0 .. nFeature - 1] of string = ('Weapons', 'Armor',
    53     'Mobility', 'Sea Transport', 'Carrier', 'Turbines', 'Bombs', 'Fuel',
    54     'Air Transport', 'Navigation', 'Radar / Sonar', 'Submarine', 'Artillery',
    55     'Alpine', 'Supply Ship', 'Overweight', 'Air Defence', 'Spy Plane',
    56     'Steam Power', 'Nuclear Power', 'Jet Engines', 'Stealth', 'Fanatic',
    57     'First Strike', 'Power of Will', 'Academy Training', 'Line Production');
    58 
    59   Name_TerrainType: array [0 .. 11] of string = ('Ocean', 'Coast', 'Grassland',
    60     'Desert', 'Prairie', 'Tundra', 'Arctic', 'Swamp', '*', 'Forest', 'Hills',
    61     'Mountains');
    62 
    63   Name_Government: array [0 .. nGov - 1] of string = ('Anarchy', 'Despotism',
    64     'Monarchy', 'Republic', 'Fundamentalism', 'Communism', 'Democracy',
    65     'Future Society');
     10Name_Advance: array[0..nAdv-1] of string=
     11('Advanced Flight',
     12'Amphibious Warfare',
     13'Astronomy',
     14'Atomic Theory',
     15'Automobile',
     16'Ballistics',
     17'Banking',
     18'Bridge Building',
     19'Bronze Working',
     20'Ceremonial Burial',
     21'Chemistry',
     22'Chivalry',
     23'Composites',
     24'Code of Laws',
     25'Combined Arms',
     26'Combustion Engine',
     27'Communism',
     28'Computers',
     29'Conscription',
     30'Construction',
     31'The Corporation',
     32'Space Flight',
     33'Currency',
     34'Democracy',
     35'Economics',
     36'Electricity',
     37'Electronics',
     38'Engineering',
     39'Environmentalism',
     40'The Wheel',
     41'Explosives',
     42'Flight',
     43'Intelligence',
     44'Gunpowder',
     45'Horseback Riding',
     46'Impulse Drive',
     47'Industrialization',
     48'Intelligent Arms',
     49'Invention',
     50'Iron Working',
     51'The Laser',
     52'Nuclear Power',
     53'Literature',
     54'Internet',
     55'Magnetism',
     56'Map Making',
     57'Masonry',
     58'Mass Production',
     59'Mathematics',
     60'Medicine',
     61'Metallurgy',
     62'Miniaturization',
     63'Mobile Warfare',
     64'Monarchy',
     65'Mysticism',
     66'Navigation',
     67'Nuclear Fission',
     68'Philosophy',
     69'Physics',
     70'Plastics',
     71'Poetry',
     72'Pottery',
     73'Radio Communication',
     74'Recycling',
     75'Refrigeration',
     76'Monotheism',
     77'The Republic',
     78'Robotics',
     79'Rocketry',
     80'Railroad',
     81'Sanitation',
     82'Science',
     83'Writing',
     84'Seafaring',
     85'Self-Contained Environment',
     86'Stealth',
     87'Steam Engine',
     88'Steel',
     89'Synthetic Food',
     90'Tactics',
     91'Theology',
     92'Theory of Gravity',
     93'Trade',
     94'Transstellar Colonization',
     95'University',
     96'Advanced Rocketry',
     97'Warrior Code',
     98'Alphabet',
     99'Polytheism',
     100'Refining',
     101'Computing Technology',
     102'Nano Technology',
     103'Material Technology',
     104'Artificial Intelligence');
     105
     106Name_Improvement: array[0..nImp-1] of string=
     107('The Pyramids',
     108'The Temple of Zeus',
     109'The Hanging Gardens',
     110'The Colossus',
     111'The Lighthouse',
     112'The Great Library',
     113'The Oracle',
     114'Sun Tzu''s War Academy',
     115'Leonardo''s Workshop',
     116'Magellan''s Expedition',
     117'Michelangelo''s Chapel',
     118'*',
     119'Newton''s College',
     120'Bach''s Cathedral',
     121'*',
     122'The Statue of Liberty',
     123'The Eiffel Tower',
     124'The Hoover Dam',
     125'The Shinkansen Express',
     126'The Manhattan Project',
     127'MIR Space Station',
     128'*',
     129'*',
     130'*',
     131'*',
     132'*',
     133'*',
     134'*',
     135'Trade Goods',
     136'Barracks',
     137'Granary',
     138'Temple',
     139'Marketplace',
     140'Library',
     141'Courthouse',
     142'City Walls',
     143'Aqueduct',
     144'Bank',
     145'Cathedral',
     146'University',
     147'Harbor',
     148'Theater',
     149'Factory',
     150'Manufacturing Plant',
     151'Recycling Center',
     152'Power Station',
     153'Hydroelectric Dam',
     154'Nuclear Plant',
     155'Offshore Platform',
     156'Town Hall',
     157'Sewer System',
     158'Supermarket',
     159'Superhighways',
     160'Research Lab',
     161'SAM Missile Battery',
     162'Coastal Fortress',
     163'Airport',
     164'Dockyard',
     165'Palace',
     166'Great Wall',
     167'Colosseum',
     168'Observatory',
     169'Military Academy',
     170'Command Bunker',
     171'Algae Plant',
     172'Stock Exchange',
     173'Space Port',
     174'Colony Ship Component',
     175'Power Module',
     176'Habitation Module');
     177
     178Name_Feature: array[0..nFeature-1] of string=
     179('Weapons',
     180'Armor',
     181'Mobility',
     182'Sea Transport',
     183'Carrier',
     184'Turbines',
     185'Bombs',
     186'Fuel',
     187'Air Transport',
     188'Navigation',
     189'Radar / Sonar',
     190'Submarine',
     191'Artillery',
     192'Alpine',
     193'Supply Ship',
     194'Overweight',
     195'Air Defence',
     196'Spy Plane',
     197'Steam Power',
     198'Nuclear Power',
     199'Jet Engines',
     200'Stealth',
     201'Fanatic',
     202'First Strike',
     203'Power of Will',
     204'Academy Training',
     205'Line Production');
     206
     207Name_TerrainType: array[0..11] of string=
     208('Ocean',
     209'Coast',
     210'Grassland',
     211'Desert',
     212'Prairie',
     213'Tundra',
     214'Arctic',
     215'Swamp',
     216'*',
     217'Forest',
     218'Hills',
     219'Mountains');
     220
     221Name_Government: array[0..nGov-1] of string=
     222('Anarchy',
     223'Despotism',
     224'Monarchy',
     225'Republic',
     226'Fundamentalism',
     227'Communism',
     228'Democracy',
     229'Future Society');
    66230
    67231implementation
    68232
    69233end.
     234
Note: See TracChangeset for help on using the changeset viewer.