You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
4.3 KiB
C++
135 lines
4.3 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
#include "EditorDefs.h"
|
|
|
|
// CryCommon
|
|
#include <CryCommon/Maestro/Types/AnimParamType.h> // for AnimParamType
|
|
|
|
// Editor
|
|
#include "TrackViewKeyPropertiesDlg.h" // for CTrackViewKeyUIControls
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
class CSoundKeyUIControls
|
|
: public CTrackViewKeyUIControls
|
|
{
|
|
public:
|
|
CSmartVariableArray mv_table;
|
|
CSmartVariableArray mv_options;
|
|
|
|
CSmartVariable<QString> mv_startTrigger;
|
|
CSmartVariable<QString> mv_stopTrigger;
|
|
CSmartVariable<float> mv_duration;
|
|
CSmartVariable<Vec3> mv_customColor;
|
|
|
|
void OnCreateVars() override
|
|
{
|
|
AddVariable(mv_table, "Key Properties");
|
|
AddVariable(mv_table, mv_startTrigger, "StartTrigger", IVariable::DT_AUDIO_TRIGGER);
|
|
AddVariable(mv_table, mv_stopTrigger, "StopTrigger", IVariable::DT_AUDIO_TRIGGER);
|
|
AddVariable(mv_table, mv_duration, "Duration");
|
|
AddVariable(mv_options, "Options");
|
|
AddVariable(mv_options, mv_customColor, "Custom Color", IVariable::DT_COLOR);
|
|
}
|
|
bool SupportTrackType(const CAnimParamType& paramType, [[maybe_unused]] EAnimCurveType trackType, [[maybe_unused]] AnimValueType valueType) const override
|
|
{
|
|
return paramType == AnimParamType::Sound;
|
|
}
|
|
bool OnKeySelectionChange(CTrackViewKeyBundle& selectedKeys) override;
|
|
void OnUIChange(IVariable* pVar, CTrackViewKeyBundle& selectedKeys) override;
|
|
|
|
unsigned int GetPriority() const override { return 1; }
|
|
|
|
static const GUID& GetClassID()
|
|
{
|
|
// {AB2226E5-D593-49d2-B7CB-989412CAAEDE}
|
|
static const GUID guid =
|
|
{
|
|
0xab2226e5, 0xd593, 0x49d2, { 0xb7, 0xcb, 0x98, 0x94, 0x12, 0xca, 0xae, 0xde }
|
|
};
|
|
return guid;
|
|
}
|
|
};
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
bool CSoundKeyUIControls::OnKeySelectionChange(CTrackViewKeyBundle& selectedKeys)
|
|
{
|
|
if (!selectedKeys.AreAllKeysOfSameType())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool bAssigned = false;
|
|
if (selectedKeys.GetKeyCount() == 1)
|
|
{
|
|
const CTrackViewKeyHandle& keyHandle = selectedKeys.GetKey(0);
|
|
|
|
CAnimParamType paramType = keyHandle.GetTrack()->GetParameterType();
|
|
if (paramType == AnimParamType::Sound)
|
|
{
|
|
ISoundKey soundKey;
|
|
keyHandle.GetKey(&soundKey);
|
|
|
|
mv_startTrigger = soundKey.sStartTrigger.c_str();
|
|
mv_stopTrigger = soundKey.sStopTrigger.c_str();
|
|
mv_duration = soundKey.fDuration;
|
|
mv_customColor = soundKey.customColor;
|
|
|
|
bAssigned = true;
|
|
}
|
|
}
|
|
return bAssigned;
|
|
}
|
|
|
|
// Called when UI variable changes.
|
|
void CSoundKeyUIControls::OnUIChange(IVariable* pVar, CTrackViewKeyBundle& selectedKeys)
|
|
{
|
|
CTrackViewSequence* pSequence = GetIEditor()->GetAnimation()->GetSequence();
|
|
|
|
if (!pSequence || !selectedKeys.AreAllKeysOfSameType())
|
|
{
|
|
return;
|
|
}
|
|
|
|
for (unsigned int keyIndex = 0; keyIndex < selectedKeys.GetKeyCount(); ++keyIndex)
|
|
{
|
|
CTrackViewKeyHandle keyHandle = selectedKeys.GetKey(keyIndex);
|
|
|
|
CAnimParamType paramType = keyHandle.GetTrack()->GetParameterType();
|
|
if (paramType == AnimParamType::Sound)
|
|
{
|
|
ISoundKey soundKey;
|
|
keyHandle.GetKey(&soundKey);
|
|
bool bChangedSoundFile = false;
|
|
|
|
if (pVar == mv_startTrigger.GetVar())
|
|
{
|
|
QString sFilename = mv_startTrigger;
|
|
bChangedSoundFile = sFilename != soundKey.sStartTrigger.c_str();
|
|
soundKey.sStartTrigger = sFilename.toUtf8().data();
|
|
}
|
|
else if (pVar == mv_stopTrigger.GetVar())
|
|
{
|
|
QString sFilename = mv_stopTrigger;
|
|
bChangedSoundFile = sFilename != soundKey.sStopTrigger.c_str();
|
|
soundKey.sStopTrigger = sFilename.toUtf8().data();
|
|
}
|
|
|
|
SyncValue(mv_duration, soundKey.fDuration, false, pVar);
|
|
SyncValue(mv_customColor, soundKey.customColor, false, pVar);
|
|
|
|
keyHandle.SetKey(&soundKey);
|
|
}
|
|
}
|
|
}
|
|
|
|
REGISTER_QT_CLASS_DESC(CSoundKeyUIControls, "TrackView.KeyUI.Sound", "TrackViewKeyUI");
|