1. switch (c->months_of_bankruptcy) {
  2. case 0:
  3. case 1:
  4. case 2:
  5. case 3:
  6. case 5:
  7. case 6:
  8. case 8:
  9. case 9:
  10. break;
  11. case 4:{
  12. CompanyNewsInformation *cni = MallocT<CompanyNewsInformation>(1);
  13. cni->FillData(c);
  14. SetDParam(0, STR_NEWS_COMPANY_IN_TROUBLE_TITLE);
  15. SetDParam(1, STR_NEWS_COMPANY_IN_TROUBLE_DESCRIPTION);
  16. SetDParamStr(2, cni->company_name);
  17. AddCompanyNewsItem(STR_MESSAGE_NEWS_FORMAT, cni);
  18. AI::BroadcastNewEvent(new ScriptEventCompanyInTrouble(c->index));
  19. Game::NewEvent(new ScriptEventCompanyInTrouble(c->index));
  20. break;
  21. }
  22. case 7: {
  23. /* Check if the company has any value.. if not, declare it bankrupt
  24. * right now */
  25. Money val = CalculateCompanyValue(c, false);
  26. if (val > 0) {
  27. c->bankrupt_value = val;
  28. c->bankrupt_asked = 1 << c->index; // Don't ask the owner
  29. c->bankrupt_timeout = 0;
  30. break;
  31. }
  32. /* FALL THROUGH to case 10... */
  33. }
  34. default:
  35. case 10:
  36. if (!_networking && _local_company == c->index) {
  37. /* If we are in offline mode, leave the company playing. Eg. there
  38. * is no THE-END, otherwise mark the client as spectator to make sure
  39. * he/she is no long in control of this company. However... when you
  40. * join another company (cheat) the "unowned" company can bankrupt. */
  41. c->bankrupt_asked = MAX_UVALUE(CompanyMask);
  42. break;
  43. }