mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-28 10:54:16 +00:00
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
66 lines
1.1 KiB
C++
66 lines
1.1 KiB
C++
#include "mxdssound.h"
|
|
|
|
#include "mxutil.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxDSSound, 0xc0)
|
|
|
|
// FUNCTION: LEGO1 0x100c92c0
|
|
MxDSSound::MxDSSound()
|
|
{
|
|
this->m_volume = 0x4f;
|
|
this->SetType(e_sound);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c9470
|
|
MxDSSound::~MxDSSound()
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c94c0
|
|
void MxDSSound::CopyFrom(MxDSSound& p_dsSound)
|
|
{
|
|
this->SetType(p_dsSound.GetType());
|
|
this->m_volume = p_dsSound.m_volume;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c94e0
|
|
MxDSSound& MxDSSound::operator=(MxDSSound& p_dsSound)
|
|
{
|
|
if (this == &p_dsSound) {
|
|
return *this;
|
|
}
|
|
|
|
MxDSMediaAction::operator=(p_dsSound);
|
|
this->CopyFrom(p_dsSound);
|
|
return *this;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c9510
|
|
MxDSAction* MxDSSound::Clone()
|
|
{
|
|
MxDSSound* clone = new MxDSSound();
|
|
|
|
if (clone) {
|
|
*clone = *this;
|
|
}
|
|
|
|
return clone;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c95a0
|
|
void MxDSSound::Deserialize(MxU8** p_source, MxS16 p_unk0x24)
|
|
{
|
|
MxDSMediaAction::Deserialize(p_source, p_unk0x24);
|
|
|
|
GetScalar(p_source, this->m_volume);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c95d0
|
|
MxU32 MxDSSound::GetSizeOnDisk()
|
|
{
|
|
MxU32 totalSizeOnDisk = MxDSMediaAction::GetSizeOnDisk();
|
|
|
|
this->m_sizeOnDisk = sizeof(this->m_volume);
|
|
return totalSizeOnDisk + 4;
|
|
}
|