home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / CvAdvisorUtils.py next >
Encoding:
Python Source  |  2005-11-09  |  39.1 KB  |  836 lines

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. ## 
  4. ## CvAdvisorUtils
  5.  
  6.  
  7. from CvPythonExtensions import *
  8. import PyHelpers
  9.  
  10.  
  11. gc = CyGlobalContext()
  12. localText = CyTranslator()
  13. PyPlayer = PyHelpers.PyPlayer
  14.  
  15.  
  16. g_iAdvisorNags = 0
  17.  
  18.  
  19. def resetAdvisorNags():
  20.     global g_iAdvisorNags
  21.     g_iAdvisorNags = 0
  22.     
  23.     
  24. def featPopup(iPlayer):
  25.     if (not gc.getPlayer(iPlayer).isOption(PlayerOptionTypes.PLAYEROPTION_ADVISOR_POPUPS)):
  26.         return False
  27.     if (not gc.getPlayer(iPlayer).isHuman()):
  28.         return False
  29.     if (gc.getGame().isNetworkMultiPlayer()):
  30.         return False
  31.     if (gc.getGame().getElapsedGameTurns() == 0):
  32.         return False
  33.     return True
  34.  
  35.  
  36. def populationFeat(iPlayer, eFeat, szText):
  37.  
  38.     if (not gc.getPlayer(iPlayer).isFeatAccomplished(eFeat)):
  39.     
  40.         gc.getPlayer(iPlayer).setFeatAccomplished(eFeat, True)
  41.         
  42.         if (featPopup(iPlayer)):
  43.             popupInfo = CyPopupInfo()
  44.             popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  45.             popupInfo.setData1(eFeat)
  46.             popupInfo.setText(localText.getText(szText, (gc.getPlayer(iPlayer).getCivilizationDescriptionKey(), )))
  47.             popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  48.             popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  49.             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  50.             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  51.             popupInfo.addPopup(iPlayer)
  52.  
  53. def unitBuiltFeats(pCity, pUnit):
  54.     
  55.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_ARCHER)):
  56.  
  57.         if (pUnit.getUnitCombatType() == gc.getInfoTypeForString("UNITCOMBAT_ARCHER")):
  58.         
  59.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_ARCHER, True)
  60.             
  61.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  62.                 popupInfo = CyPopupInfo()
  63.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  64.                 popupInfo.setData1(FeatTypes.FEAT_UNITCOMBAT_ARCHER)
  65.                 popupInfo.setData2(pCity.getID())
  66.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_UNITCOMBAT_ARCHER", (pUnit.getNameKey(), pCity.getNameKey(), )))
  67.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  68.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  69.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  70.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  71.                 popupInfo.addPopup(pCity.getOwner())
  72.     
  73.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_MOUNTED)):
  74.  
  75.         if (pUnit.getUnitCombatType() == gc.getInfoTypeForString("UNITCOMBAT_MOUNTED")):
  76.         
  77.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_MOUNTED, True)
  78.             
  79.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  80.                 popupInfo = CyPopupInfo()
  81.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  82.                 popupInfo.setData1(FeatTypes.FEAT_UNITCOMBAT_MOUNTED)
  83.                 popupInfo.setData2(pCity.getID())
  84.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_UNITCOMBAT_MOUNTED", (pUnit.getNameKey(), pCity.getNameKey(), )))
  85.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  86.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  87.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  88.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  89.                 popupInfo.addPopup(pCity.getOwner())
  90.         
  91.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_MELEE)):
  92.  
  93.         if (pUnit.getUnitCombatType() == gc.getInfoTypeForString("UNITCOMBAT_MELEE")):
  94.         
  95.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_MELEE, True)
  96.             
  97.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  98.                 popupInfo = CyPopupInfo()
  99.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  100.                 popupInfo.setData1(FeatTypes.FEAT_UNITCOMBAT_MELEE)
  101.                 popupInfo.setData2(pCity.getID())
  102.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_UNITCOMBAT_MELEE", (pUnit.getNameKey(), pCity.getNameKey(), )))
  103.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  104.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  105.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  106.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  107.                 popupInfo.addPopup(pCity.getOwner())
  108.  
  109.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_SIEGE)):
  110.  
  111.         if (pUnit.getUnitCombatType() == gc.getInfoTypeForString("UNITCOMBAT_SIEGE")):
  112.         
  113.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_SIEGE, True)
  114.             
  115.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  116.                 popupInfo = CyPopupInfo()
  117.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  118.                 popupInfo.setData1(FeatTypes.FEAT_UNITCOMBAT_SIEGE)
  119.                 popupInfo.setData2(pCity.getID())
  120.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_UNITCOMBAT_SIEGE", (pUnit.getNameKey(), pCity.getNameKey(), )))
  121.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  122.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  123.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  124.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  125.                 popupInfo.addPopup(pCity.getOwner())
  126.         
  127.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_NAVAL)):
  128.  
  129.         if (pUnit.getUnitCombatType() == gc.getInfoTypeForString("UNITCOMBAT_NAVAL")):
  130.         
  131.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_UNITCOMBAT_NAVAL, True)
  132.             
  133.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  134.                 popupInfo = CyPopupInfo()
  135.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  136.                 popupInfo.setData1(FeatTypes.FEAT_UNITCOMBAT_NAVAL)
  137.                 popupInfo.setData2(pCity.getID())
  138.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_UNITCOMBAT_NAVAL", (pUnit.getNameKey(), pCity.getNameKey(), )))
  139.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  140.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  141.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  142.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  143.                 popupInfo.addPopup(pCity.getOwner())
  144.  
  145. def buildingBuiltFeats(pCity, iBuildingType):
  146.     
  147.     if (not gc.getPlayer(pCity.getOwner()).isFeatAccomplished(FeatTypes.FEAT_NATIONAL_WONDER)):
  148.  
  149.         if (isNationalWonderClass(gc.getBuildingInfo(iBuildingType).getBuildingClassType())):
  150.         
  151.             gc.getPlayer(pCity.getOwner()).setFeatAccomplished(FeatTypes.FEAT_NATIONAL_WONDER, True)
  152.             
  153.             if (featPopup(pCity.getOwner()) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  154.                 popupInfo = CyPopupInfo()
  155.                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  156.                 popupInfo.setData1(FeatTypes.FEAT_NATIONAL_WONDER)
  157.                 popupInfo.setData2(pCity.getID())
  158.                 popupInfo.setText(localText.getText("TXT_KEY_FEAT_NATIONAL_WONDER", (gc.getBuildingInfo(iBuildingType).getTextKey(), pCity.getNameKey(), )))
  159.                 popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  160.                 popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  161.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  162.                 popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  163.                 popupInfo.addPopup(pCity.getOwner())
  164.  
  165. def endTurnFeats(iPlayer):
  166.  
  167.     lRealPopulation = gc.getPlayer(iPlayer).getRealPopulation()
  168.  
  169.     if (lRealPopulation > 500000):
  170.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_HALF_MILLION, "TXT_KEY_FEAT_HALF_MILLION")
  171.     if (lRealPopulation > 1000000):
  172.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_1_MILLION, "TXT_KEY_FEAT_1_MILLION")
  173.     if (lRealPopulation > 2000000):
  174.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_2_MILLION, "TXT_KEY_FEAT_2_MILLION")
  175.     if (lRealPopulation > 5000000):
  176.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_5_MILLION, "TXT_KEY_FEAT_5_MILLION")
  177.     if (lRealPopulation > 10000000):
  178.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_10_MILLION, "TXT_KEY_FEAT_10_MILLION")
  179.     if (lRealPopulation > 20000000):
  180.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_20_MILLION, "TXT_KEY_FEAT_20_MILLION")
  181.     if (lRealPopulation > 50000000):
  182.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_50_MILLION, "TXT_KEY_FEAT_50_MILLION")
  183.     if (lRealPopulation > 100000000):
  184.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_100_MILLION, "TXT_KEY_FEAT_100_MILLION")
  185.     if (lRealPopulation > 200000000):
  186.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_200_MILLION, "TXT_KEY_FEAT_200_MILLION")
  187.     if (lRealPopulation > 500000000):
  188.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_500_MILLION, "TXT_KEY_FEAT_500_MILLION")
  189.     if (lRealPopulation > 1000000000):
  190.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_1_BILLION, "TXT_KEY_FEAT_1_BILLION")
  191.     if (lRealPopulation > 2000000000):
  192.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_2_BILLION, "TXT_KEY_FEAT_2_BILLION")
  193.     if (lRealPopulation > 5000000000):
  194.         populationFeat(iPlayer, FeatTypes.FEAT_POPULATION_5_BILLION, "TXT_KEY_FEAT_5_BILLION")
  195.  
  196.     if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_TRADE_ROUTE)):
  197.     
  198.         apCityList = PyPlayer(iPlayer).getCityList()
  199.         for pCity in apCityList:
  200.             if (not pCity.isCapital()):
  201.                 if (pCity.isConnectedToCapital(iPlayer)):
  202.                     gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_TRADE_ROUTE, True)
  203.                     
  204.                     if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  205.                         popupInfo = CyPopupInfo()
  206.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  207.                         popupInfo.setData1(FeatTypes.FEAT_TRADE_ROUTE)
  208.                         popupInfo.setData2(pCity.getID())
  209.                         popupInfo.setText(localText.getText("TXT_KEY_FEAT_TRADE_ROUTE", (pCity.getNameKey(), )))
  210.                         popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  211.                         popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  212.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  213.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  214.                         popupInfo.addPopup(iPlayer)
  215.                     
  216.                     break
  217.  
  218.     pCapitalCity = gc.getPlayer(iPlayer).getCapitalCity()
  219.  
  220.     if (not pCapitalCity.isNone()):
  221.  
  222.         if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_COPPER_CONNECTED)):
  223.         
  224.             iBonus = gc.getInfoTypeForString("BONUS_COPPER")
  225.             if (iBonus != BonusTypes.NO_BONUS):
  226.                 if (pCapitalCity.hasBonus(iBonus)):
  227.                     gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_COPPER_CONNECTED, True)
  228.                     
  229.                     if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  230.                         popupInfo = CyPopupInfo()
  231.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  232.                         popupInfo.setData1(FeatTypes.FEAT_COPPER_CONNECTED)
  233.                         popupInfo.setData2(pCapitalCity.getID())
  234.                         popupInfo.setText(localText.getText("TXT_KEY_FEAT_COPPER_CONNECTED", ()))
  235.                         popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  236.                         popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  237.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  238.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  239.                         popupInfo.addPopup(iPlayer)
  240.  
  241.         if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_HORSE_CONNECTED)):
  242.         
  243.             iBonus = gc.getInfoTypeForString("BONUS_HORSE")
  244.             if (iBonus != BonusTypes.NO_BONUS):
  245.                 if (pCapitalCity.hasBonus(iBonus)):
  246.                     gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_HORSE_CONNECTED, True)
  247.                     
  248.                     if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  249.                         popupInfo = CyPopupInfo()
  250.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  251.                         popupInfo.setData1(FeatTypes.FEAT_HORSE_CONNECTED)
  252.                         popupInfo.setData2(pCapitalCity.getID())
  253.                         popupInfo.setText(localText.getText("TXT_KEY_FEAT_HORSE_CONNECTED", ()))
  254.                         popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  255.                         popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  256.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  257.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  258.                         popupInfo.addPopup(iPlayer)
  259.  
  260.         if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_IRON_CONNECTED)):
  261.         
  262.             iBonus = gc.getInfoTypeForString("BONUS_IRON")
  263.             if (iBonus != BonusTypes.NO_BONUS):
  264.                 if (pCapitalCity.hasBonus(iBonus)):
  265.                     gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_IRON_CONNECTED, True)
  266.                     
  267.                     if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  268.                         popupInfo = CyPopupInfo()
  269.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  270.                         popupInfo.setData1(FeatTypes.FEAT_IRON_CONNECTED)
  271.                         popupInfo.setData2(pCapitalCity.getID())
  272.                         popupInfo.setText(localText.getText("TXT_KEY_FEAT_IRON_CONNECTED", ()))
  273.                         popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  274.                         popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  275.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  276.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  277.                         popupInfo.addPopup(iPlayer)
  278.  
  279.         if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_LUXURY_CONNECTED)):
  280.         
  281.             for iI in range(gc.getNumBonusInfos()):
  282.                 if (gc.getBonusInfo(iI).getHappiness() > 0):
  283.                     if (pCapitalCity.hasBonus(iI)):
  284.                         gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_LUXURY_CONNECTED, True)
  285.                         
  286.                         if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  287.                             popupInfo = CyPopupInfo()
  288.                             popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  289.                             popupInfo.setData1(FeatTypes.FEAT_LUXURY_CONNECTED)
  290.                             popupInfo.setData2(pCapitalCity.getID())
  291.                             popupInfo.setText(localText.getText("TXT_KEY_FEAT_LUXURY_CONNECTED", (gc.getBonusInfo(iI).getTextKey(), )))
  292.                             popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  293.                             popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  294.                             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  295.                             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  296.                             popupInfo.addPopup(iPlayer)
  297.                         
  298.                         break
  299.  
  300.         if (not gc.getPlayer(iPlayer).isFeatAccomplished(FeatTypes.FEAT_FOOD_CONNECTED)):
  301.         
  302.             for iI in range(gc.getNumBonusInfos()):
  303.                 if (gc.getBonusInfo(iI).getHealth() > 0):
  304.                     if (pCapitalCity.hasBonus(iI)):
  305.                         gc.getPlayer(iPlayer).setFeatAccomplished(FeatTypes.FEAT_FOOD_CONNECTED, True)
  306.                         
  307.                         if (featPopup(iPlayer) and (gc.getGame().getStartYear() == gc.getDefineINT("START_YEAR"))):
  308.                             popupInfo = CyPopupInfo()
  309.                             popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  310.                             popupInfo.setData1(FeatTypes.FEAT_FOOD_CONNECTED)
  311.                             popupInfo.setData2(pCapitalCity.getID())
  312.                             popupInfo.setText(localText.getText("TXT_KEY_FEAT_FOOD_CONNECTED", (gc.getBonusInfo(iI).getTextKey(), )))
  313.                             popupInfo.setOnClickedPythonCallback("featAccomplishedOnClickedCallback")
  314.                             popupInfo.setOnFocusPythonCallback("featAccomplishedOnFocusCallback")
  315.                             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()), "")
  316.                             popupInfo.addPythonButton(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_MORE", ()), "")
  317.                             popupInfo.addPopup(iPlayer)
  318.                         
  319.                         break
  320.  
  321. def cityAdvise(pCity, iPlayer):
  322.  
  323.     global g_iAdvisorNags
  324.  
  325.     if (g_iAdvisorNags >= 2):
  326.         return
  327.  
  328.     if (gc.getPlayer(iPlayer).isOption(PlayerOptionTypes.PLAYEROPTION_ADVISOR_POPUPS) and gc.getPlayer(iPlayer).isHuman() and not gc.getGame().isNetworkMultiPlayer()):
  329.         
  330.         if (not pCity.isProductionUnit() and (pCity.getOrderQueueLength() <= 1)):
  331.  
  332.             if (gc.getGame().getGameTurn() + 1) % 40 == pCity.getGameTurnFounded() % 40:
  333.                 
  334.                 if ((pCity.getPopulation() > 2) and (gc.getPlayer(iPlayer).AI_totalAreaUnitAIs(pCity.area(), UnitAITypes.UNITAI_SETTLE) == 0) and not gc.getPlayer(iPlayer).AI_isFinancialTrouble() and (pCity.area().getBestFoundValue(iPlayer) > 0)):
  335.                 
  336.                     iBestValue = 0
  337.                     eBestUnit = UnitTypes.NO_UNIT
  338.  
  339.                     for iI in range(gc.getNumUnitClassInfos()):
  340.  
  341.                         if (not isLimitedUnitClass(iI)):
  342.                             
  343.                             eLoopUnit = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationUnits(iI)
  344.                             
  345.                             if (eLoopUnit != UnitTypes.NO_UNIT):
  346.                             
  347.                                 if (gc.getUnitInfo(eLoopUnit).getDomainType() == DomainTypes.DOMAIN_LAND):
  348.  
  349.                                     if pCity.canTrain(eLoopUnit, False, False):
  350.  
  351.                                         if (pCity.getFirstUnitOrder(eLoopUnit) == -1):
  352.                                         
  353.                                             iValue = gc.getPlayer(iPlayer).AI_unitValue(eLoopUnit, UnitAITypes.UNITAI_SETTLE, pCity.area())
  354.  
  355.                                             if (iValue > iBestValue):
  356.                                             
  357.                                                 iBestValue = iValue
  358.                                                 eBestUnit = eLoopUnit
  359.                                         
  360.                     if (eBestUnit != UnitTypes.NO_UNIT):
  361.                         popupInfo = CyPopupInfo()
  362.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  363.                         popupInfo.setData1(pCity.getID())
  364.                         popupInfo.setData2(OrderTypes.ORDER_TRAIN)
  365.                         popupInfo.setData3(eBestUnit)
  366.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_UNIT_SETTLE_DEMAND", (gc.getUnitInfo(eBestUnit).getTextKey(), )))
  367.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  368.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  369.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  370.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  371.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  372.                         popupInfo.addPopup(iPlayer)
  373.                         g_iAdvisorNags += 1
  374.                 
  375.             if (gc.getGame().getGameTurn() + 5) % 40 == pCity.getGameTurnFounded() % 40:
  376.                 
  377.                 if ((pCity.getPopulation() > 1) and (pCity.countNumImprovedPlots() == 0) and (pCity.AI_countBestBuilds(pCity.area()) > 3)):
  378.                 
  379.                     iBestValue = 0
  380.                     eBestUnit = UnitTypes.NO_UNIT
  381.  
  382.                     for iI in range(gc.getNumUnitClassInfos()):
  383.  
  384.                         if (not isLimitedUnitClass(iI)):
  385.                             
  386.                             eLoopUnit = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationUnits(iI)
  387.                             
  388.                             if (eLoopUnit != UnitTypes.NO_UNIT):
  389.                             
  390.                                 if (gc.getUnitInfo(eLoopUnit).getDomainType() == DomainTypes.DOMAIN_LAND):
  391.  
  392.                                     if pCity.canTrain(eLoopUnit, False, False):
  393.  
  394.                                         if (pCity.getFirstUnitOrder(eLoopUnit) == -1):
  395.                                         
  396.                                             iValue = gc.getPlayer(iPlayer).AI_unitValue(eLoopUnit, UnitAITypes.UNITAI_WORKER, pCity.area())
  397.  
  398.                                             if (iValue > iBestValue):
  399.                                             
  400.                                                 iBestValue = iValue
  401.                                                 eBestUnit = eLoopUnit
  402.                                         
  403.                     if (eBestUnit != UnitTypes.NO_UNIT):
  404.                         popupInfo = CyPopupInfo()
  405.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  406.                         popupInfo.setData1(pCity.getID())
  407.                         popupInfo.setData2(OrderTypes.ORDER_TRAIN)
  408.                         popupInfo.setData3(eBestUnit)
  409.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_UNIT_WORKER_DEMAND", (pCity.getNameKey(), gc.getUnitInfo(eBestUnit).getTextKey())))
  410.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  411.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  412.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  413.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  414.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  415.                         popupInfo.addPopup(iPlayer)
  416.                         g_iAdvisorNags += 1
  417.  
  418.             if (gc.getGame().getGameTurn() + 9) % 40 == pCity.getGameTurnFounded() % 40:
  419.                 
  420.                 if (pCity.plot().getNumDefenders(iPlayer) == 0):
  421.                 
  422.                     iBestValue = 0
  423.                     eBestUnit = UnitTypes.NO_UNIT
  424.  
  425.                     for iI in range(gc.getNumUnitClassInfos()):
  426.  
  427.                         if (not isLimitedUnitClass(iI)):
  428.                             
  429.                             eLoopUnit = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationUnits(iI)
  430.                             
  431.                             if (eLoopUnit != UnitTypes.NO_UNIT):
  432.                             
  433.                                 if (gc.getUnitInfo(eLoopUnit).getDomainType() == DomainTypes.DOMAIN_LAND):
  434.  
  435.                                     if pCity.canTrain(eLoopUnit, False, False):
  436.  
  437.                                         iValue = (gc.getPlayer(iPlayer).AI_unitValue(eLoopUnit, UnitAITypes.UNITAI_CITY_DEFENSE, pCity.area()) * 2)
  438.                                         iValue += gc.getPlayer(iPlayer).AI_unitValue(eLoopUnit, UnitAITypes.UNITAI_ATTACK, pCity.area())
  439.  
  440.                                         if (iValue > iBestValue):
  441.                                         
  442.                                             iBestValue = iValue
  443.                                             eBestUnit = eLoopUnit
  444.                                     
  445.                     if (eBestUnit != UnitTypes.NO_UNIT):
  446.                         popupInfo = CyPopupInfo()
  447.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  448.                         popupInfo.setData1(pCity.getID())
  449.                         popupInfo.setData2(OrderTypes.ORDER_TRAIN)
  450.                         popupInfo.setData3(eBestUnit)
  451.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_UNIT_DEFENSE_DEMAND", (pCity.getNameKey(), gc.getUnitInfo(eBestUnit).getTextKey())))
  452.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  453.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  454.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  455.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  456.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  457.                         popupInfo.addPopup(iPlayer)
  458.                         g_iAdvisorNags += 1
  459.  
  460.             if (gc.getGame().getGameTurn() + 12) % 40 == pCity.getGameTurnFounded() % 40:
  461.                 
  462.                 if ((gc.getPlayer(iPlayer).AI_totalAreaUnitAIs(pCity.area(), UnitAITypes.UNITAI_MISSIONARY) == 0) and (gc.getTeam(gc.getPlayer(iPlayer).getTeam()).getAtWarCount(True) == 0)):
  463.                 
  464.                     eStateReligion = gc.getPlayer(iPlayer).getStateReligion()
  465.                     
  466.                     if (eStateReligion != ReligionTypes.NO_RELIGION):
  467.                     
  468.                         if (gc.getPlayer(iPlayer).getHasReligionCount(eStateReligion) < (gc.getPlayer(iPlayer).getNumCities() / 2)):
  469.                         
  470.                             iBestValue = 0
  471.                             eBestUnit = UnitTypes.NO_UNIT
  472.  
  473.                             for iI in range(gc.getNumUnitClassInfos()):
  474.  
  475.                                 eLoopUnit = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationUnits(iI)
  476.                                 
  477.                                 if (eLoopUnit != UnitTypes.NO_UNIT):
  478.                                 
  479.                                     if (gc.getUnitInfo(eLoopUnit).getDomainType() == DomainTypes.DOMAIN_LAND):
  480.  
  481.                                         if (gc.getUnitInfo(eLoopUnit).getReligionSpreads(eStateReligion)):
  482.                                         
  483.                                             if pCity.canTrain(eLoopUnit, False, False):
  484.  
  485.                                                 iValue = gc.getPlayer(iPlayer).AI_unitValue(eLoopUnit, UnitAITypes.UNITAI_MISSIONARY, pCity.area())
  486.  
  487.                                                 if (iValue > iBestValue):
  488.                                                 
  489.                                                     iBestValue = iValue
  490.                                                     eBestUnit = eLoopUnit
  491.                                             
  492.                             if (eBestUnit != UnitTypes.NO_UNIT):
  493.                                 popupInfo = CyPopupInfo()
  494.                                 popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  495.                                 popupInfo.setData1(pCity.getID())
  496.                                 popupInfo.setData2(OrderTypes.ORDER_TRAIN)
  497.                                 popupInfo.setData3(eBestUnit)
  498.                                 popupInfo.setText(localText.getText("TXT_KEY_POPUP_MISSIONARY_DEMAND", (gc.getReligionInfo(eStateReligion).getTextKey(), gc.getUnitInfo(eBestUnit).getTextKey(), pCity.getNameKey())))
  499.                                 popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  500.                                 popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  501.                                 popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  502.                                 popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  503.                                 popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  504.                                 popupInfo.addPopup(iPlayer)
  505.                                 g_iAdvisorNags += 1
  506.  
  507.         if (not pCity.isProductionBuilding() and (pCity.getOrderQueueLength() <= 1)):
  508.  
  509.             if (pCity.healthRate(False, 0) < 0):
  510.             
  511.                 if (gc.getGame().getGameTurn() + 2) % 40 == pCity.getGameTurnFounded() % 40:
  512.                         
  513.                     iBestValue = 0
  514.                     eBestBuilding = BuildingTypes.NO_BUILDING
  515.  
  516.                     for iI in range(gc.getNumBuildingClassInfos()):
  517.  
  518.                         if (not isLimitedWonderClass(iI)):
  519.                         
  520.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  521.                             
  522.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  523.                             
  524.                                 if (gc.getBuildingInfo(eLoopBuilding).getHealth() > 0):
  525.  
  526.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  527.  
  528.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getHealth()
  529.  
  530.                                         if (iValue > iBestValue):
  531.                                         
  532.                                             iBestValue = iValue
  533.                                             eBestBuilding = eLoopBuilding
  534.                                     
  535.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  536.                         popupInfo = CyPopupInfo()
  537.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  538.                         popupInfo.setData1(pCity.getID())
  539.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  540.                         popupInfo.setData3(eBestBuilding)
  541.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_UNHEALTHY_CITIZENS_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  542.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  543.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  544.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHEALTHY_DO_SO_NEXT", ()), "")
  545.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHEALTHY_REFUSE", ()), "")
  546.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHEALTHY_EXAMINE", ()), "")
  547.                         popupInfo.addPopup(iPlayer)
  548.                         g_iAdvisorNags += 1
  549.  
  550.             if (pCity.angryPopulation(0) > 0):
  551.  
  552.                 if (gc.getGame().getGameTurn() + 3) % 40 == pCity.getGameTurnFounded() % 40:
  553.  
  554.                     iBestValue = 0
  555.                     eBestBuilding = BuildingTypes.NO_BUILDING
  556.  
  557.                     for iI in range(gc.getNumBuildingClassInfos()):
  558.  
  559.                         if (not isLimitedWonderClass(iI)):
  560.                         
  561.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  562.                             
  563.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  564.                             
  565.                                 if (gc.getBuildingInfo(eLoopBuilding).getHappiness() > 0):
  566.  
  567.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  568.  
  569.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getHappiness()
  570.  
  571.                                         if (iValue > iBestValue):
  572.  
  573.                                             iBestValue = iValue
  574.                                             eBestBuilding = eLoopBuilding
  575.  
  576.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  577.                         popupInfo = CyPopupInfo()
  578.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  579.                         popupInfo.setData1(pCity.getID())
  580.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  581.                         popupInfo.setData3(eBestBuilding)
  582.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_UNHAPPY_CITIZENS_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  583.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  584.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  585.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHAPPY_DO_SO_NEXT", ()), "")
  586.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHAPPY_REFUSE", ()), "")
  587.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_UNHEALTHY_EXAMINE", ()), "")
  588.                         popupInfo.addPopup(iPlayer)
  589.                         g_iAdvisorNags += 1
  590.  
  591.             if ((gc.getGame().getGameTurn < 100) and (gc.getTeam(gc.getPlayer(iPlayer).getTeam()).getHasMetCivCount(True) > 0) and (pCity.getBuildingDefense() == 0)):
  592.             
  593.                 if (gc.getGame().getGameTurn() + 4) % 40 == pCity.getGameTurnFounded() % 40:
  594.  
  595.                     iBestValue = 0
  596.                     eBestBuilding = BuildingTypes.NO_BUILDING
  597.  
  598.                     for iI in range(gc.getNumBuildingClassInfos()):
  599.  
  600.                         if (not isLimitedWonderClass(iI)):
  601.                         
  602.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  603.                             
  604.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  605.                             
  606.                                 if (gc.getBuildingInfo(eLoopBuilding).getDefenseModifier() > pCity.getNaturalDefense()):
  607.  
  608.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  609.  
  610.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getDefenseModifier()
  611.  
  612.                                         if (iValue > iBestValue):
  613.                                         
  614.                                             iBestValue = iValue
  615.                                             eBestBuilding = eLoopBuilding
  616.                                     
  617.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  618.                         popupInfo = CyPopupInfo()
  619.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  620.                         popupInfo.setData1(pCity.getID())
  621.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  622.                         popupInfo.setData3(eBestBuilding)
  623.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_BUILDING_DEFENSE_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  624.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  625.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  626.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  627.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  628.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  629.                         popupInfo.addPopup(iPlayer)
  630.                         g_iAdvisorNags += 1
  631.  
  632.             if (pCity.getMaintenance() >= 8):
  633.             
  634.                 if (gc.getGame().getGameTurn() + 6) % 40 == pCity.getGameTurnFounded() % 40:
  635.  
  636.                     iBestValue = 0
  637.                     eBestBuilding = BuildingTypes.NO_BUILDING
  638.  
  639.                     for iI in range(gc.getNumBuildingClassInfos()):
  640.  
  641.                         if (not isLimitedWonderClass(iI)):
  642.                         
  643.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  644.                             
  645.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  646.                             
  647.                                 if (gc.getBuildingInfo(eLoopBuilding).getMaintenanceModifier() < 0):
  648.  
  649.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  650.  
  651.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getMaintenanceModifier()
  652.  
  653.                                         if (iValue < iBestValue):
  654.                                         
  655.                                             iBestValue = iValue
  656.                                             eBestBuilding = eLoopBuilding
  657.                                     
  658.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  659.                         popupInfo = CyPopupInfo()
  660.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  661.                         popupInfo.setData1(pCity.getID())
  662.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  663.                         popupInfo.setData3(eBestBuilding)
  664.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_MAINTENANCE_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  665.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  666.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  667.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  668.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  669.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  670.                         popupInfo.addPopup(iPlayer)
  671.                         g_iAdvisorNags += 1
  672.  
  673.             if (pCity.getCommerceRate(CommerceTypes.COMMERCE_CULTURE) == 0):
  674.             
  675.                 if (gc.getGame().getGameTurn() + 7) % 40 == pCity.getGameTurnFounded() % 40:
  676.  
  677.                     iBestValue = 0
  678.                     eBestBuilding = BuildingTypes.NO_BUILDING
  679.  
  680.                     for iI in range(gc.getNumBuildingClassInfos()):
  681.  
  682.                         if (not isLimitedWonderClass(iI)):
  683.                         
  684.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  685.                             
  686.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  687.                             
  688.                                 if (gc.getBuildingInfo(eLoopBuilding).getObsoleteSafeCommerceChange(CommerceTypes.COMMERCE_CULTURE) > 0):
  689.  
  690.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  691.  
  692.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getObsoleteSafeCommerceChange(CommerceTypes.COMMERCE_CULTURE)
  693.  
  694.                                         if (iValue > iBestValue):
  695.                                         
  696.                                             iBestValue = iValue
  697.                                             eBestBuilding = eLoopBuilding
  698.                                     
  699.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  700.                         popupInfo = CyPopupInfo()
  701.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  702.                         popupInfo.setData1(pCity.getID())
  703.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  704.                         popupInfo.setData3(eBestBuilding)
  705.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_CULTURE_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  706.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  707.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  708.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  709.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  710.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  711.                         popupInfo.addPopup(iPlayer)
  712.                         g_iAdvisorNags += 1
  713.  
  714.             if (pCity.getBaseCommerceRate(CommerceTypes.COMMERCE_GOLD) > 10):
  715.             
  716.                 if (gc.getGame().getGameTurn() + 8) % 40 == pCity.getGameTurnFounded() % 40:
  717.  
  718.                     iBestValue = 0
  719.                     eBestBuilding = BuildingTypes.NO_BUILDING
  720.  
  721.                     for iI in range(gc.getNumBuildingClassInfos()):
  722.  
  723.                         if (not isLimitedWonderClass(iI)):
  724.                         
  725.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  726.                             
  727.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  728.                             
  729.                                 if (gc.getBuildingInfo(eLoopBuilding).getCommerceModifier(CommerceTypes.COMMERCE_GOLD) > 0):
  730.  
  731.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  732.  
  733.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getCommerceModifier(CommerceTypes.COMMERCE_GOLD)
  734.  
  735.                                         if (iValue > iBestValue):
  736.                                         
  737.                                             iBestValue = iValue
  738.                                             eBestBuilding = eLoopBuilding
  739.                                     
  740.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  741.                         popupInfo = CyPopupInfo()
  742.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  743.                         popupInfo.setData1(pCity.getID())
  744.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  745.                         popupInfo.setData3(eBestBuilding)
  746.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_GOLD_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  747.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  748.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  749.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  750.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  751.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  752.                         popupInfo.addPopup(iPlayer)
  753.                         g_iAdvisorNags += 1
  754.  
  755.             if (pCity.getBaseCommerceRate(CommerceTypes.COMMERCE_RESEARCH) > 10):
  756.             
  757.                 if (gc.getGame().getGameTurn() + 10) % 40 == pCity.getGameTurnFounded() % 40:
  758.  
  759.                     iBestValue = 0
  760.                     eBestBuilding = BuildingTypes.NO_BUILDING
  761.  
  762.                     for iI in range(gc.getNumBuildingClassInfos()):
  763.  
  764.                         if (not isLimitedWonderClass(iI)):
  765.                         
  766.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  767.                             
  768.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  769.                             
  770.                                 if (gc.getBuildingInfo(eLoopBuilding).getCommerceModifier(CommerceTypes.COMMERCE_RESEARCH) > 0):
  771.  
  772.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  773.  
  774.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getCommerceModifier(CommerceTypes.COMMERCE_RESEARCH)
  775.  
  776.                                         if (iValue > iBestValue):
  777.                                         
  778.                                             iBestValue = iValue
  779.                                             eBestBuilding = eLoopBuilding
  780.                                     
  781.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  782.                         popupInfo = CyPopupInfo()
  783.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  784.                         popupInfo.setData1(pCity.getID())
  785.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  786.                         popupInfo.setData3(eBestBuilding)
  787.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_RESEARCH_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  788.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  789.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  790.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  791.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  792.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  793.                         popupInfo.addPopup(iPlayer)
  794.                         g_iAdvisorNags += 1
  795.  
  796.             if (pCity.countNumWaterPlots() > 10):
  797.             
  798.                 if (gc.getGame().getGameTurn() + 11) % 40 == pCity.getGameTurnFounded() % 40:
  799.  
  800.                     iBestValue = 0
  801.                     eBestBuilding = BuildingTypes.NO_BUILDING
  802.  
  803.                     for iI in range(gc.getNumBuildingClassInfos()):
  804.  
  805.                         if (not isLimitedWonderClass(iI)):
  806.                         
  807.                             eLoopBuilding = gc.getCivilizationInfo(gc.getPlayer(iPlayer).getCivilizationType()).getCivilizationBuildings(iI)
  808.                             
  809.                             if (eLoopBuilding != BuildingTypes.NO_BUILDING):
  810.                             
  811.                                 if (gc.getBuildingInfo(eLoopBuilding).getSeaPlotYieldChange(YieldTypes.YIELD_FOOD) > 0):
  812.  
  813.                                     if pCity.canConstruct(eLoopBuilding, False, False, False):
  814.  
  815.                                         iValue = gc.getBuildingInfo(eLoopBuilding).getSeaPlotYieldChange(YieldTypes.YIELD_FOOD)
  816.  
  817.                                         if (iValue > iBestValue):
  818.                                         
  819.                                             iBestValue = iValue
  820.                                             eBestBuilding = eLoopBuilding
  821.                                     
  822.                     if (eBestBuilding != BuildingTypes.NO_BUILDING):
  823.                         popupInfo = CyPopupInfo()
  824.                         popupInfo.setButtonPopupType(ButtonPopupTypes.BUTTONPOPUP_PYTHON)
  825.                         popupInfo.setData1(pCity.getID())
  826.                         popupInfo.setData2(OrderTypes.ORDER_CONSTRUCT)
  827.                         popupInfo.setData3(eBestBuilding)
  828.                         popupInfo.setText(localText.getText("TXT_KEY_POPUP_WATER_FOOD_DEMAND", (pCity.getNameKey(), gc.getBuildingInfo(eBestBuilding).getTextKey())))
  829.                         popupInfo.setOnClickedPythonCallback("cityWarningOnClickedCallback")
  830.                         popupInfo.setOnFocusPythonCallback("cityWarningOnFocusCallback")
  831.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_AGREE", ()), "")
  832.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_REFUSE", ()), "")
  833.                         popupInfo.addPythonButton(localText.getText("TXT_KEY_POPUP_DEMAND_EXAMINE", ()), "")
  834.                         popupInfo.addPopup(iPlayer)
  835.                         g_iAdvisorNags += 1
  836.