2023-09-29 16:38:08 -04:00
|
|
|
#include "legofullscreenmovie.h"
|
2023-10-07 11:30:04 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "decomp.h"
|
2023-09-29 16:38:08 -04:00
|
|
|
#include "legoomni.h"
|
2023-10-07 11:30:04 -04:00
|
|
|
#include "legovideomanager.h"
|
|
|
|
#include "mxtypes.h"
|
2023-09-29 16:38:08 -04:00
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(LegoFullScreenMovie, 0x24)
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x100f3be8
|
2023-10-24 19:38:27 -04:00
|
|
|
const char* g_str_enable = "enable";
|
2023-09-29 16:38:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x100f3bf4
|
2023-10-24 19:38:27 -04:00
|
|
|
const char* g_str_disable = "disable";
|
2023-09-29 16:38:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1003c500
|
2023-10-24 19:38:27 -04:00
|
|
|
LegoFullScreenMovie::LegoFullScreenMovie(const char* p_key, const char* p_value)
|
2023-09-29 16:38:08 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
m_key = p_key;
|
|
|
|
m_key.ToUpperCase();
|
|
|
|
SetValue(p_value);
|
2023-09-29 16:38:08 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1003c5c0
|
2023-10-24 19:38:27 -04:00
|
|
|
void LegoFullScreenMovie::SetValue(const char* p_option)
|
2023-09-29 16:38:08 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
m_value = p_option;
|
|
|
|
m_value.ToLowerCase();
|
|
|
|
|
|
|
|
LegoVideoManager* videomanager = VideoManager();
|
|
|
|
if (videomanager) {
|
|
|
|
|
|
|
|
if (!strcmp(m_value.GetData(), g_str_enable)) {
|
|
|
|
videomanager->EnableFullScreenMovie(TRUE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(m_value.GetData(), g_str_disable)) {
|
|
|
|
videomanager->EnableFullScreenMovie(FALSE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-09-29 16:38:08 -04:00
|
|
|
}
|