diff options
author | planetmaker <planetmaker@openttd.org> | 2012-10-20 22:05:26 +0000 |
---|---|---|
committer | planetmaker <planetmaker@openttd.org> | 2012-10-20 22:05:26 +0000 |
commit | f2e94237fc6dbca89f06de0befd44c2e9faf3b72 (patch) | |
tree | 44e0bb58670faf89266128d139e965a2ae6f3837 /src/economy.cpp | |
parent | b446780f01bdf4b01c43204503d38eb191613741 (diff) | |
download | openttd-f2e94237fc6dbca89f06de0befd44c2e9faf3b72.tar.xz |
(svn r24619) -Change: Check for bankruptcy on a monthly basis (ZxBioHazardZx)
Diffstat (limited to 'src/economy.cpp')
-rw-r--r-- | src/economy.cpp | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/src/economy.cpp b/src/economy.cpp index 2483d7b69..072b10795 100644 --- a/src/economy.cpp +++ b/src/economy.cpp @@ -524,19 +524,29 @@ static void CompanyCheckBankrupt(Company *c) { /* If the company has money again, it does not go bankrupt */ if (c->money - c->current_loan >= -_economy.max_loan) { - c->quarters_of_bankruptcy = 0; + c->months_of_bankruptcy = 0; c->bankrupt_asked = 0; return; } - c->quarters_of_bankruptcy++; + c->months_of_bankruptcy++; - switch (c->quarters_of_bankruptcy) { + switch (c->months_of_bankruptcy) { + /* All the boring cases (months) with a bad balance where no action is taken */ case 0: case 1: + case 2: + case 3: + + case 5: + case 6: + + case 8: + case 9: break; - case 2: { + /* Warn about bancruptcy after 3 months */ + case 4: { CompanyNewsInformation *cni = MallocT<CompanyNewsInformation>(1); cni->FillData(c); SetDParam(0, STR_NEWS_COMPANY_IN_TROUBLE_TITLE); @@ -548,8 +558,9 @@ static void CompanyCheckBankrupt(Company *c) break; } - case 3: { - /* Check if the company has any value.. if not, declare it bankrupt + /* Offer company for sale after 6 months */ + case 7: { + /* Check if the company has any value. If not, declare it bankrupt * right now */ Money val = CalculateCompanyValue(c, false); if (val > 0) { @@ -558,10 +569,13 @@ static void CompanyCheckBankrupt(Company *c) c->bankrupt_timeout = 0; break; } - /* FALL THROUGH to case 4... */ + /* FALL THROUGH to case 10 */ } + + /* Bancrupt company after 6 months (if the company has no value) or latest + * after 9 months (if it still had value after 6 months) */ default: - case 4: + case 10: { if (!_networking && _local_company == c->index) { /* If we are in offline mode, leave the company playing. Eg. there * is no THE-END, otherwise mark the client as spectator to make sure @@ -582,6 +596,7 @@ static void CompanyCheckBankrupt(Company *c) * company and thus we won't be moved. */ if (!_networking || _network_server) DoCommandP(0, 2 | (c->index << 16), CRR_BANKRUPT, CMD_COMPANY_CTRL); break; + } } } @@ -625,6 +640,11 @@ static void CompaniesGenStatistics() } cur_company.Restore(); + /* Check for bankruptcy each month */ + FOR_ALL_COMPANIES(c) { + CompanyCheckBankrupt(c); + } + /* Only run the economic statics and update company stats every 3rd month (1st of quarter). */ if (!HasBit(1 << 0 | 1 << 3 | 1 << 6 | 1 << 9, _cur_month)) return; @@ -637,7 +657,6 @@ static void CompaniesGenStatistics() UpdateCompanyRatingAndValue(c, true); if (c->block_preview != 0) c->block_preview--; - CompanyCheckBankrupt(c); } SetWindowDirty(WC_INCOME_GRAPH, 0); |