- switch (c->months_of_bankruptcy) {
- case 0:
- case 1:
- case 2:
- case 3:
- case 5:
- case 6:
- case 8:
- case 9:
- break;
- case 4:{
- CompanyNewsInformation *cni = MallocT<CompanyNewsInformation>(1);
- cni->FillData(c);
- SetDParam(0, STR_NEWS_COMPANY_IN_TROUBLE_TITLE);
- SetDParam(1, STR_NEWS_COMPANY_IN_TROUBLE_DESCRIPTION);
- SetDParamStr(2, cni->company_name);
- AddCompanyNewsItem(STR_MESSAGE_NEWS_FORMAT, cni);
- AI::BroadcastNewEvent(new ScriptEventCompanyInTrouble(c->index));
- Game::NewEvent(new ScriptEventCompanyInTrouble(c->index));
- break;
- }
- case 7: {
- /* Check if the company has any value.. if not, declare it bankrupt
- * right now */
- Money val = CalculateCompanyValue(c, false);
- if (val > 0) {
- c->bankrupt_value = val;
- c->bankrupt_asked = 1 << c->index; // Don't ask the owner
- c->bankrupt_timeout = 0;
- break;
- }
- /* FALL THROUGH to case 10... */
- }
- default:
- 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
- * he/she is no long in control of this company. However... when you
- * join another company (cheat) the "unowned" company can bankrupt. */
- c->bankrupt_asked = MAX_UVALUE(CompanyMask);
- break;
- }