Esempio n. 1
0
    public Finances(int f, float dr, float dra, WorldPopulation wp)
    {
        funds                    = f;
        donationRate             = dr;
        donationRateAcceleration = dra;
        worldPopulation          = wp;

        income = (int)(worldPopulation.DisplayPopulation() * donationRate);
    }
Esempio n. 2
0
    void Update()
    {
        populationDisplay.text = string.Format("{0}B ({1})", worldPopulation.DisplayPopulation(), worldPopulation.DisplayChange());

        if (production.GetProductionType() == -1)
        {
            int profit = finances.GetChange();
            profit += production.GetWealthProduction();
            string displayChange = "";

            if (profit > 0)
            {
                displayChange = "+" + profit;
            }
            else
            {
                displayChange = profit.ToString();
            }

            moneyDisplay.text = string.Format("{0}M ({1})", finances.DisplayFunds(), displayChange);
        }
        else
        {
            moneyDisplay.text = string.Format("{0}M ({1})", finances.DisplayFunds(), finances.DisplayChange());
        }

        laborerDisplay.text    = string.Format("Laborers: {0}K\nCost: -{1}M p/t", workforce.GetLaborers(), workforce.GetLaborerCost());
        researcherDisplay.text = string.Format("Researchers: {0}K\nCost: -{1}M p/t", workforce.GetResearchers(), workforce.GetResearcherCost());
        planningDisplay.text   = string.Format("Family Planning Centers: {0}K\nCost: -{1}M p/t", workforce.GetPlanning(), workforce.GetPlanningCost());
        donationDisplay.text   = string.Format("Donation Centers: {0}K", workforce.GetDonations());

        switch (production.GetProductionType())
        {
        case -1:
            productionTypeDisplay.text = "Consumer Goods";
            break;

        case 0:
            productionTypeDisplay.text = "Basic Colony Ship";
            break;

        case 1:
            productionTypeDisplay.text = "Advanced Colony Ship";
            break;

        case 2:
            productionTypeDisplay.text = "Mega Colony Ship";
            break;

        case 3:
            productionTypeDisplay.text = "Colony Ark";
            break;

        default:
            productionTypeDisplay.text = "None";
            break;
        }

        if (production.GetProductionType() == -1)
        {
            productionRemainingDisplay.text = string.Format("+{0}M Funds", production.GetWealthProduction());
        }
        else
        {
            productionRemainingDisplay.text = string.Format("Remaining: {0}P (-{1})", production.GetProductionLeft(), production.GetProductionRate());
        }

        researchDisplay.text   = string.Format("{0} (+{1})", research.GetResearchPoints(), workforce.GetResearchers());
        manCostDisplay.text    = string.Format("{0}", research.GetResearchCost(0));
        manLevelDisplay.text   = research.GetResearchLevel(0).ToString();
        cryCostDisplay.text    = string.Format("{0}", research.GetResearchCost(1));
        cryLevelDisplay.text   = research.GetResearchLevel(1).ToString();
        birthCostDisplay.text  = string.Format("{0}", research.GetResearchCost(2));
        birthLevelDisplay.text = research.GetResearchLevel(2).ToString();
        campCostDisplay.text   = string.Format("{0}", research.GetResearchCost(3));
        campLevelDisplay.text  = research.GetResearchLevel(3).ToString();

        yearDisplay.text = string.Format("{0} CE", turn);
    }
Esempio n. 3
0
 public void UpdateIncome(float change)
 {
     donationRate += change;
     income        = (int)(worldPopulation.DisplayPopulation() * donationRate);
 }