| 899 | } |
| 900 | |
| 901 | bool ProcessFullName(RString name) |
| 902 | { |
| 903 | const auto selection = MissionPathLoader::Loader::DescribeMissionFile((const char*)name); |
| 904 | if (!selection) |
| 905 | { |
| 906 | return false; |
| 907 | } |
| 908 | |
| 909 | CurrentCampaign = ""; |
| 910 | CurrentBattle = ""; |
| 911 | CurrentMission = ""; |
| 912 | SetBaseDirectory(""); |
| 913 | SetMission(selection->worldName.c_str(), selection->missionName.c_str(), selection->missionParentDirectory.c_str()); |
| 914 | return true; |
| 915 | } |
| 916 | |
| 917 | bool ParseCutscene(RString cutscene, bool multiplayer) |
| 918 | { |
no test coverage detected