2023-06-29 04:10:08 -04:00
|
|
|
#include "mxvideopresenter.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
|
2023-11-14 15:25:14 -05:00
|
|
|
#include "mxautolocker.h"
|
|
|
|
#include "mxdsmediaaction.h"
|
2023-12-29 16:30:17 -05:00
|
|
|
#include "mxregioncursor.h"
|
2023-10-24 08:27:24 -04:00
|
|
|
#include "mxvideomanager.h"
|
2023-07-02 03:00:28 -04:00
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(MxVideoPresenter, 0x64);
|
2023-10-21 18:40:31 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxVideoPresenter::AlphaMask, 0xc);
|
2023-07-02 03:00:28 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c700
|
2023-11-25 14:08:10 -05:00
|
|
|
void MxVideoPresenter::LoadHeader(MxStreamChunk* p_chunk)
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// Empty
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c710
|
2023-11-25 14:08:10 -05:00
|
|
|
void MxVideoPresenter::CreateBitmap()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// Empty
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c720
|
2023-11-25 14:08:10 -05:00
|
|
|
void MxVideoPresenter::LoadFrame(MxStreamChunk* p_chunk)
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// Empty
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c730
|
2023-12-07 07:13:31 -05:00
|
|
|
void MxVideoPresenter::RealizePalette()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// Empty
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c740
|
2023-10-05 06:31:20 -04:00
|
|
|
MxVideoPresenter::~MxVideoPresenter()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
Destroy(TRUE);
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c7a0
|
2023-10-13 12:43:45 -04:00
|
|
|
void MxVideoPresenter::Destroy()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
Destroy(FALSE);
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c7b0
|
2023-10-16 16:09:08 -04:00
|
|
|
LPDIRECTDRAWSURFACE MxVideoPresenter::VTable0x78()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return m_unk0x58;
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c7c0
|
2023-10-07 12:48:36 -04:00
|
|
|
MxBool MxVideoPresenter::VTable0x7c()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return (m_bitmap != NULL) || (m_alpha != NULL);
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c7e0
|
2023-10-05 06:31:20 -04:00
|
|
|
MxS32 MxVideoPresenter::GetWidth()
|
|
|
|
{
|
2023-12-29 17:34:10 -05:00
|
|
|
return m_alpha ? m_alpha->m_width : m_bitmap->GetBmiWidth();
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000c800
|
2023-10-05 06:31:20 -04:00
|
|
|
MxS32 MxVideoPresenter::GetHeight()
|
|
|
|
{
|
2023-12-29 17:34:10 -05:00
|
|
|
return m_alpha ? m_alpha->m_height : m_bitmap->GetBmiHeightAbs();
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b24f0
|
2023-10-24 19:38:27 -04:00
|
|
|
MxVideoPresenter::AlphaMask::AlphaMask(const MxBitmap& p_bitmap)
|
|
|
|
{
|
|
|
|
m_width = p_bitmap.GetBmiWidth();
|
|
|
|
// DECOMP: ECX becomes word-sized if these are not two separate actions.
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong height = p_bitmap.GetBmiHeightAbs();
|
|
|
|
m_height = height;
|
2023-10-24 19:38:27 -04:00
|
|
|
|
|
|
|
MxS32 size = ((m_width * m_height) / 8) + 1;
|
|
|
|
m_bitmask = new MxU8[size];
|
|
|
|
memset(m_bitmask, 0, size);
|
|
|
|
|
|
|
|
MxU32 biCompression = p_bitmap.GetBmiHeader()->biCompression;
|
2023-12-13 05:48:14 -05:00
|
|
|
MxU32 rowsBeforeTop;
|
|
|
|
MxU8* bitmapSrcPtr;
|
2023-10-24 19:38:27 -04:00
|
|
|
|
|
|
|
// The goal here is to enable us to walk through the bitmap's rows
|
|
|
|
// in order, regardless of the orientation. We want to end up at the
|
|
|
|
// start of the first row, which is either at position 0, or at
|
|
|
|
// (image_stride * biHeight) - 1.
|
|
|
|
|
|
|
|
// Reminder: Negative biHeight means this is a top-down DIB.
|
|
|
|
// Otherwise it is bottom-up.
|
|
|
|
|
|
|
|
if (biCompression == BI_RGB) {
|
|
|
|
// DECOMP: I think this must be an OR. If not, the check for
|
|
|
|
// biCompression == 16 gets optimized away.
|
|
|
|
if (biCompression == BI_RGB_TOPDOWN || p_bitmap.GetBmiHeight() < 0) {
|
2023-12-13 05:48:14 -05:00
|
|
|
rowsBeforeTop = 0;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
else {
|
2023-12-13 05:48:14 -05:00
|
|
|
rowsBeforeTop = p_bitmap.GetBmiHeightAbs();
|
|
|
|
rowsBeforeTop--;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
goto seek_to_last_row;
|
|
|
|
}
|
|
|
|
else if (biCompression == BI_RGB_TOPDOWN) {
|
|
|
|
// DECOMP: This is the only condition where we skip the
|
|
|
|
// calculation below.
|
2023-12-13 05:48:14 -05:00
|
|
|
bitmapSrcPtr = p_bitmap.GetBitmapData();
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (p_bitmap.GetBmiHeight() < 0) {
|
2023-12-13 05:48:14 -05:00
|
|
|
rowsBeforeTop = 0;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
else {
|
2023-12-13 05:48:14 -05:00
|
|
|
rowsBeforeTop = p_bitmap.GetBmiHeightAbs();
|
|
|
|
rowsBeforeTop--;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: would prefer not to use goto if we can figure this structure out
|
|
|
|
seek_to_last_row:
|
2023-12-13 05:48:14 -05:00
|
|
|
bitmapSrcPtr = p_bitmap.GetBmiStride() * rowsBeforeTop + p_bitmap.GetBitmapData();
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// How many bytes are there for each row of the bitmap?
|
|
|
|
// (i.e. the image stride)
|
|
|
|
// If this is a bottom-up DIB, we will walk it in reverse.
|
|
|
|
// TODO: Same rounding trick as in MxBitmap
|
2023-12-13 05:48:14 -05:00
|
|
|
MxS32 rowSeek = ((m_width + 3) & -4);
|
2023-10-24 19:38:27 -04:00
|
|
|
if (p_bitmap.GetBmiHeight() < 0)
|
2023-12-13 05:48:14 -05:00
|
|
|
rowSeek = -rowSeek;
|
2023-10-24 19:38:27 -04:00
|
|
|
|
|
|
|
// The actual offset into the m_bitmask array. The two for-loops
|
|
|
|
// are just for counting the pixels.
|
|
|
|
MxS32 offset = 0;
|
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
MxU8* tPtr = bitmapSrcPtr;
|
2023-10-24 19:38:27 -04:00
|
|
|
for (MxS32 j = 0; j < m_height; j++) {
|
|
|
|
for (MxS32 i = 0; i < m_width; i++) {
|
2023-12-13 05:48:14 -05:00
|
|
|
if (*tPtr) {
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO: Second CDQ instruction for abs() should not be there.
|
|
|
|
MxU32 shift = abs(offset) & 7;
|
|
|
|
m_bitmask[offset / 8] |= (1 << abs((MxS32) shift));
|
|
|
|
}
|
2023-12-13 05:48:14 -05:00
|
|
|
tPtr++;
|
2023-10-24 19:38:27 -04:00
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
// Seek to the start of the next row
|
2023-12-13 05:48:14 -05:00
|
|
|
bitmapSrcPtr += rowSeek;
|
|
|
|
tPtr = bitmapSrcPtr;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-10-21 18:40:31 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2670
|
2023-10-24 19:38:27 -04:00
|
|
|
MxVideoPresenter::AlphaMask::AlphaMask(const MxVideoPresenter::AlphaMask& p_alpha)
|
2023-10-21 19:47:48 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
m_width = p_alpha.m_width;
|
|
|
|
m_height = p_alpha.m_height;
|
2023-10-21 19:47:48 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxS32 size = ((m_width * m_height) / 8) + 1;
|
|
|
|
m_bitmask = new MxU8[size];
|
|
|
|
memcpy(m_bitmask, p_alpha.m_bitmask, size);
|
2023-10-21 19:47:48 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b26d0
|
2023-10-21 18:40:31 -04:00
|
|
|
MxVideoPresenter::AlphaMask::~AlphaMask()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
if (m_bitmask)
|
|
|
|
delete[] m_bitmask;
|
2023-10-21 18:40:31 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b26f0
|
2023-10-25 06:02:36 -04:00
|
|
|
MxS32 MxVideoPresenter::AlphaMask::IsHit(MxU32 p_x, MxU32 p_y)
|
|
|
|
{
|
|
|
|
if (p_x >= m_width || p_y >= m_height)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
MxS32 pos = p_y * m_width + p_x;
|
|
|
|
return m_bitmask[pos / 8] & (1 << abs(abs(pos) & 7)) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2760
|
2023-07-02 05:07:11 -04:00
|
|
|
void MxVideoPresenter::Init()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
m_bitmap = NULL;
|
|
|
|
m_alpha = NULL;
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x5c = 1;
|
|
|
|
m_unk0x58 = NULL;
|
|
|
|
m_unk0x60 = -1;
|
2023-12-22 14:10:20 -05:00
|
|
|
m_flags &= ~Flag_Bit1;
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
if (MVideoManager() != NULL) {
|
|
|
|
MVideoManager();
|
2023-12-22 14:10:20 -05:00
|
|
|
m_flags |= Flag_Bit2;
|
|
|
|
m_flags &= ~Flag_Bit3;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-12-22 14:10:20 -05:00
|
|
|
m_flags &= ~Flag_Bit4;
|
|
|
|
m_flags &= ~Flag_Bit5;
|
2023-07-02 03:00:28 -04:00
|
|
|
}
|
2023-10-05 06:31:20 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b27b0
|
2023-10-13 12:43:45 -04:00
|
|
|
void MxVideoPresenter::Destroy(MxBool p_fromDestructor)
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
if (MVideoManager() != NULL)
|
|
|
|
MVideoManager()->RemovePresenter(*this);
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
if (m_unk0x58) {
|
|
|
|
m_unk0x58->Release();
|
|
|
|
m_unk0x58 = NULL;
|
2023-12-22 14:10:20 -05:00
|
|
|
m_flags &= ~Flag_Bit2;
|
|
|
|
m_flags &= ~Flag_Bit3;
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
if (MVideoManager() && (m_alpha || m_bitmap)) {
|
2023-12-29 16:30:17 -05:00
|
|
|
MxRect32 rect(m_location, MxSize32(GetWidth(), GetHeight()));
|
2023-10-24 19:38:27 -04:00
|
|
|
MVideoManager()->InvalidateRect(rect);
|
2023-12-13 05:48:14 -05:00
|
|
|
MVideoManager()->VTable0x34(rect.GetLeft(), rect.GetTop(), rect.GetWidth(), rect.GetHeight());
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
delete m_bitmap;
|
|
|
|
delete m_alpha;
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
Init();
|
2023-10-16 16:09:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
if (!p_fromDestructor)
|
|
|
|
MxMediaPresenter::Destroy(FALSE);
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b28b0
|
2023-11-25 14:08:10 -05:00
|
|
|
void MxVideoPresenter::NextFrame()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-11-14 15:25:14 -05:00
|
|
|
MxStreamChunk* chunk = NextChunk();
|
|
|
|
|
|
|
|
if (chunk->GetFlags() & MxStreamChunk::Flag_Bit2) {
|
|
|
|
m_subscriber->FUN_100b8390(chunk);
|
|
|
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
|
|
|
m_currentTickleState = TickleState_Repeating;
|
|
|
|
}
|
|
|
|
else {
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadFrame(chunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_subscriber->FUN_100b8390(chunk);
|
|
|
|
}
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2900
|
2023-10-25 06:02:36 -04:00
|
|
|
MxBool MxVideoPresenter::IsHit(MxS32 p_x, MxS32 p_y)
|
|
|
|
{
|
|
|
|
MxDSAction* action = GetAction();
|
2023-12-16 10:59:01 -05:00
|
|
|
if ((action == NULL) || (((action->GetFlags() & MxDSAction::Flag_Bit11) == 0) && !IsEnabled()) ||
|
2023-10-25 06:02:36 -04:00
|
|
|
(!m_bitmap && !m_alpha))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!m_bitmap)
|
2023-12-21 10:52:42 -05:00
|
|
|
return m_alpha->IsHit(p_x - m_location.GetX(), p_y - m_location.GetY());
|
2023-10-25 06:02:36 -04:00
|
|
|
|
|
|
|
MxLong heightAbs = m_bitmap->GetBmiHeightAbs();
|
|
|
|
|
2023-12-21 10:52:42 -05:00
|
|
|
MxLong minX = m_location.GetX();
|
|
|
|
MxLong minY = m_location.GetY();
|
2023-10-25 06:02:36 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong maxY = minY + heightAbs;
|
|
|
|
MxLong maxX = minX + m_bitmap->GetBmiWidth();
|
2023-10-25 06:02:36 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
if (p_x < minX || p_x >= maxX || p_y < minY || p_y >= maxY)
|
2023-10-25 06:02:36 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
MxU8* pixel;
|
|
|
|
|
|
|
|
MxLong biCompression = m_bitmap->GetBmiHeader()->biCompression;
|
|
|
|
MxLong height = m_bitmap->GetBmiHeight();
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong seekRow;
|
2023-10-25 06:02:36 -04:00
|
|
|
|
|
|
|
// DECOMP: Same basic layout as AlphaMask constructor
|
|
|
|
// The idea here is to again seek to the correct place in the bitmap's
|
|
|
|
// m_data buffer. The x,y args are (most likely) screen x and y, so we
|
|
|
|
// need to shift that to coordinates local to the bitmap by removing
|
|
|
|
// the MxPresenter location x and y coordinates.
|
|
|
|
if (biCompression == BI_RGB) {
|
|
|
|
if (biCompression == BI_RGB_TOPDOWN || height < 0) {
|
2023-12-21 10:52:42 -05:00
|
|
|
seekRow = p_y - m_location.GetY();
|
2023-10-25 06:02:36 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
height = height > 0 ? height : -height;
|
2023-12-21 10:52:42 -05:00
|
|
|
seekRow = height - p_y - 1 + m_location.GetY();
|
2023-10-25 06:02:36 -04:00
|
|
|
}
|
2023-12-21 10:52:42 -05:00
|
|
|
pixel = m_bitmap->GetBmiStride() * seekRow + m_bitmap->GetBitmapData() - m_location.GetX() + p_x;
|
2023-10-25 06:02:36 -04:00
|
|
|
}
|
|
|
|
else if (biCompression == BI_RGB_TOPDOWN) {
|
|
|
|
pixel = m_bitmap->GetBitmapData();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
height = height > 0 ? height : -height;
|
|
|
|
height--;
|
|
|
|
pixel = m_bitmap->GetBmiStride() * height + m_bitmap->GetBitmapData();
|
|
|
|
}
|
|
|
|
|
|
|
|
// DECOMP: m_flags is 1 byte, so no enum here
|
|
|
|
if (m_flags & 0x10)
|
|
|
|
return (MxBool) *pixel;
|
|
|
|
|
|
|
|
if ((GetAction()->GetFlags() & MxDSAction::Flag_Bit4) && *pixel == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-29 16:30:17 -05:00
|
|
|
inline MxS32 MxVideoPresenter::PrepareRects(MxRect32& p_rectDest, MxRect32& p_rectSrc)
|
|
|
|
{
|
|
|
|
if (p_rectDest.GetTop() > 480 || p_rectDest.GetLeft() > 640 || p_rectSrc.GetTop() > 480 ||
|
|
|
|
p_rectSrc.GetLeft() > 640)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (p_rectDest.GetBottom() > 480)
|
|
|
|
p_rectDest.SetBottom(480);
|
|
|
|
|
|
|
|
if (p_rectDest.GetRight() > 640)
|
|
|
|
p_rectDest.SetRight(640);
|
|
|
|
|
|
|
|
if (p_rectSrc.GetBottom() > 480)
|
|
|
|
p_rectSrc.SetBottom(480);
|
|
|
|
|
|
|
|
if (p_rectSrc.GetRight() > 640)
|
|
|
|
p_rectSrc.SetRight(640);
|
|
|
|
|
|
|
|
MxS32 height = p_rectDest.GetHeight();
|
|
|
|
if (height <= 1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
MxS32 width = p_rectDest.GetWidth();
|
|
|
|
if (width <= 1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (p_rectSrc.GetRight() - width - p_rectSrc.GetLeft() == -1 &&
|
|
|
|
p_rectSrc.GetBottom() - height - p_rectSrc.GetTop() == -1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
p_rectSrc.SetRight(p_rectSrc.GetLeft() + width - 1);
|
|
|
|
p_rectSrc.SetBottom(p_rectSrc.GetTop() + height - 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100b2a70
|
2023-12-28 23:37:21 -05:00
|
|
|
void MxVideoPresenter::PutFrame()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-12-29 16:30:17 -05:00
|
|
|
MxDisplaySurface* displaySurface = MVideoManager()->GetDisplaySurface();
|
|
|
|
MxRegion* region = MVideoManager()->GetRegion();
|
|
|
|
MxRect32 rect(m_location, MxSize32(GetWidth() - 1, GetHeight() - 1));
|
|
|
|
LPDIRECTDRAWSURFACE ddSurface = displaySurface->GetDirectDrawSurface2();
|
|
|
|
|
|
|
|
MxRect32 rectSrc, rectDest;
|
|
|
|
if (m_action->GetFlags() & MxDSAction::Flag_Bit5) {
|
|
|
|
if (m_unk0x58) {
|
|
|
|
// TODO: Match
|
|
|
|
rectSrc.CopyFrom(MxPoint32(0, 0), MxSize32(GetWidth(), GetHeight()));
|
|
|
|
rectDest.CopyFrom(m_location, MxSize32(GetWidth(), GetHeight()));
|
|
|
|
|
|
|
|
switch (PrepareRects(rectDest, rectSrc)) {
|
|
|
|
case 0:
|
|
|
|
ddSurface->Blt((LPRECT) &rectDest, m_unk0x58, (LPRECT) &rectSrc, DDBLT_KEYSRC, NULL);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
ddSurface->BltFast(
|
|
|
|
rectDest.GetLeft(),
|
|
|
|
rectDest.GetTop(),
|
|
|
|
m_unk0x58,
|
|
|
|
(LPRECT) &rectSrc,
|
|
|
|
DDBLTFAST_SRCCOLORKEY | DDBLTFAST_WAIT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
displaySurface->VTable0x30(
|
|
|
|
m_bitmap,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
rect.GetLeft(),
|
|
|
|
rect.GetTop(),
|
|
|
|
m_bitmap->GetBmiWidth(),
|
|
|
|
m_bitmap->GetBmiHeightAbs(),
|
|
|
|
TRUE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MxRegionCursor cursor(region);
|
|
|
|
MxRect32* regionRect;
|
|
|
|
|
|
|
|
while (regionRect = cursor.VTable0x24(rect)) {
|
|
|
|
if (regionRect->GetWidth() >= 1 && regionRect->GetHeight() >= 1) {
|
|
|
|
if (m_unk0x58) {
|
|
|
|
// TODO: Match
|
|
|
|
rectSrc.CopyFrom(
|
|
|
|
MxPoint32(regionRect->GetLeft() - m_location.GetX(), regionRect->GetTop() - m_location.GetY()),
|
|
|
|
MxSize32(regionRect->GetWidth(), regionRect->GetHeight())
|
|
|
|
);
|
|
|
|
rectDest.CopyFrom(
|
|
|
|
MxPoint32(regionRect->GetLeft(), regionRect->GetTop()),
|
|
|
|
MxSize32(regionRect->GetWidth(), regionRect->GetHeight())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_action->GetFlags() & MxDSAction::Flag_Bit4) {
|
|
|
|
if (m_unk0x58) {
|
|
|
|
if (PrepareRects(rectDest, rectSrc) >= 0)
|
|
|
|
ddSurface->Blt((LPRECT) &rectDest, m_unk0x58, (LPRECT) &rectSrc, DDBLT_KEYSRC, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
displaySurface->VTable0x30(
|
|
|
|
m_bitmap,
|
|
|
|
regionRect->GetLeft() - m_location.GetX(),
|
|
|
|
regionRect->GetTop() - m_location.GetY(),
|
|
|
|
regionRect->GetLeft(),
|
|
|
|
regionRect->GetTop(),
|
|
|
|
regionRect->GetWidth(),
|
|
|
|
regionRect->GetHeight(),
|
|
|
|
FALSE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (m_unk0x58) {
|
|
|
|
if (PrepareRects(rectDest, rectSrc) >= 0)
|
|
|
|
ddSurface->Blt((LPRECT) &rectDest, m_unk0x58, (LPRECT) &rectSrc, 0, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
displaySurface->VTable0x28(
|
|
|
|
m_bitmap,
|
|
|
|
regionRect->GetLeft() - m_location.GetX(),
|
|
|
|
regionRect->GetTop() - m_location.GetY(),
|
|
|
|
regionRect->GetLeft(),
|
|
|
|
regionRect->GetTop(),
|
|
|
|
regionRect->GetWidth(),
|
|
|
|
regionRect->GetHeight()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2f60
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::ReadyTickle()
|
|
|
|
{
|
|
|
|
MxStreamChunk* chunk = NextChunk();
|
|
|
|
|
|
|
|
if (chunk) {
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadHeader(chunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_subscriber->FUN_100b8390(chunk);
|
|
|
|
ParseExtra();
|
|
|
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
|
|
|
m_currentTickleState = TickleState_Starting;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2fa0
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::StartingTickle()
|
|
|
|
{
|
|
|
|
MxStreamChunk* chunk = FUN_100b5650();
|
|
|
|
|
|
|
|
if (chunk && m_action->GetElapsedTime() >= chunk->GetTime()) {
|
2023-11-25 14:08:10 -05:00
|
|
|
CreateBitmap();
|
2023-11-14 15:25:14 -05:00
|
|
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
|
|
|
m_currentTickleState = TickleState_Streaming;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b2fe0
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::StreamingTickle()
|
|
|
|
{
|
2023-12-16 10:59:01 -05:00
|
|
|
if (m_action->GetFlags() & MxDSAction::Flag_Bit10) {
|
2023-11-14 15:25:14 -05:00
|
|
|
if (!m_currentChunk)
|
|
|
|
MxMediaPresenter::StreamingTickle();
|
|
|
|
|
|
|
|
if (m_currentChunk) {
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadFrame(m_currentChunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_currentChunk = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2023-12-13 05:48:14 -05:00
|
|
|
for (MxS16 i = 0; i < m_unk0x5c; i++) {
|
2023-11-14 15:25:14 -05:00
|
|
|
if (!m_currentChunk) {
|
|
|
|
MxMediaPresenter::StreamingTickle();
|
|
|
|
|
|
|
|
if (!m_currentChunk)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_action->GetElapsedTime() < m_currentChunk->GetTime())
|
|
|
|
break;
|
|
|
|
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadFrame(m_currentChunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_subscriber->FUN_100b8390(m_currentChunk);
|
|
|
|
m_currentChunk = NULL;
|
|
|
|
m_flags |= Flag_Bit1;
|
|
|
|
|
|
|
|
if (m_currentTickleState != TickleState_Streaming)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_flags & Flag_Bit1)
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x5c = 5;
|
2023-11-14 15:25:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b3080
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::RepeatingTickle()
|
|
|
|
{
|
|
|
|
if (IsEnabled()) {
|
2023-12-16 10:59:01 -05:00
|
|
|
if (m_action->GetFlags() & MxDSAction::Flag_Bit10) {
|
2023-11-14 15:25:14 -05:00
|
|
|
if (!m_currentChunk)
|
|
|
|
MxMediaPresenter::RepeatingTickle();
|
|
|
|
|
|
|
|
if (m_currentChunk) {
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadFrame(m_currentChunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_currentChunk = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2023-12-13 05:48:14 -05:00
|
|
|
for (MxS16 i = 0; i < m_unk0x5c; i++) {
|
2023-11-14 15:25:14 -05:00
|
|
|
if (!m_currentChunk) {
|
|
|
|
MxMediaPresenter::RepeatingTickle();
|
|
|
|
|
|
|
|
if (!m_currentChunk)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_action->GetElapsedTime() % m_action->GetLoopCount() < m_currentChunk->GetTime())
|
|
|
|
break;
|
|
|
|
|
2023-11-25 14:08:10 -05:00
|
|
|
LoadFrame(m_currentChunk);
|
2023-11-14 15:25:14 -05:00
|
|
|
m_currentChunk = NULL;
|
|
|
|
m_flags |= Flag_Bit1;
|
|
|
|
|
|
|
|
if (m_currentTickleState != TickleState_Repeating)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_flags & Flag_Bit1)
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x5c = 5;
|
2023-11-14 15:25:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b3130
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::Unk5Tickle()
|
|
|
|
{
|
|
|
|
MxLong sustainTime = ((MxDSMediaAction*) m_action)->GetSustainTime();
|
|
|
|
|
|
|
|
if (sustainTime != -1) {
|
|
|
|
if (sustainTime) {
|
2023-12-13 05:48:14 -05:00
|
|
|
if (m_unk0x60 == -1)
|
|
|
|
m_unk0x60 = m_action->GetElapsedTime();
|
2023-11-14 15:25:14 -05:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
if (m_action->GetElapsedTime() >= m_unk0x60 + ((MxDSMediaAction*) m_action)->GetSustainTime()) {
|
2023-11-14 15:25:14 -05:00
|
|
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
|
|
|
m_currentTickleState = TickleState_Done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
|
|
|
m_currentTickleState = TickleState_Done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b31a0
|
2023-11-14 15:25:14 -05:00
|
|
|
MxResult MxVideoPresenter::AddToManager()
|
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
|
|
|
if (MVideoManager()) {
|
|
|
|
result = SUCCESS;
|
|
|
|
MVideoManager()->AddPresenter(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b31d0
|
2023-11-14 15:25:14 -05:00
|
|
|
void MxVideoPresenter::EndAction()
|
|
|
|
{
|
|
|
|
if (m_action) {
|
|
|
|
MxMediaPresenter::EndAction();
|
|
|
|
MxAutoLocker lock(&m_criticalSection);
|
|
|
|
|
|
|
|
if (m_bitmap) {
|
|
|
|
MxLong height = m_bitmap->GetBmiHeightAbs();
|
|
|
|
MxLong width = m_bitmap->GetBmiWidth();
|
2023-12-21 10:52:42 -05:00
|
|
|
MxS32 x = m_location.GetX();
|
|
|
|
MxS32 y = m_location.GetY();
|
2023-11-14 15:25:14 -05:00
|
|
|
|
|
|
|
MxRect32 rect(x, y, x + width, y + height);
|
|
|
|
|
|
|
|
MVideoManager()->InvalidateRect(rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b3280
|
2023-11-26 09:03:40 -05:00
|
|
|
MxResult MxVideoPresenter::PutData()
|
2023-11-14 15:25:14 -05:00
|
|
|
{
|
|
|
|
MxAutoLocker lock(&m_criticalSection);
|
|
|
|
|
|
|
|
if (IsEnabled() && m_currentTickleState >= TickleState_Streaming && m_currentTickleState <= TickleState_unk5)
|
2023-12-28 23:37:21 -05:00
|
|
|
PutFrame();
|
2023-11-14 15:25:14 -05:00
|
|
|
|
2023-11-26 09:03:40 -05:00
|
|
|
return SUCCESS;
|
2023-11-14 15:25:14 -05:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b3300
|
2023-10-16 16:09:08 -04:00
|
|
|
undefined MxVideoPresenter::VTable0x74()
|
2023-10-05 06:31:20 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return 0;
|
2023-10-05 06:31:20 -04:00
|
|
|
}
|