2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/MP1/CPlayMovie.hpp"
|
2017-03-30 22:36:18 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde::MP1 {
|
2015-08-27 00:23:46 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const char* kMovies[] = {"Video/wingame.thp", "Video/wingame_best.thp", "Video/wingame_best.thp",
|
|
|
|
"Video/losegame.thp", "Video/05_tallonText.thp", "Video/AfterCredits.thp",
|
|
|
|
"Video/SpecialEnding.thp", "Video/creditBG.thp"};
|
2015-08-27 00:23:46 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CPlayMovie::IsResultsScreen(EWhichMovie which) { return int(which) <= 2; }
|
2017-03-30 22:36:18 +00:00
|
|
|
|
2020-04-10 19:25:40 +00:00
|
|
|
CPlayMovie::CPlayMovie(EWhichMovie which)
|
|
|
|
: CPlayMovieBase("CPlayMovie", kMovies[int(which)])
|
|
|
|
, x18_which(which)
|
|
|
|
, x78_24_(false)
|
|
|
|
, x78_25_(false)
|
|
|
|
, x78_26_resultsScreen(false)
|
|
|
|
, x78_27_(false) {
|
2018-12-08 05:30:43 +00:00
|
|
|
(void)x18_which;
|
2017-03-30 22:36:18 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde::MP1
|