mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 19:45:33 +00:00
Merge branch '0.7.1-sound-records' into 0.7.1
This commit is contained in:
commit
0acf6f0242
9 changed files with 199 additions and 1 deletions
|
@ -484,6 +484,13 @@ void ObjectFunctions::SetObjectRotation(double x, double y, double z) noexcept
|
|||
tempObject.position.rot[2] = z;
|
||||
}
|
||||
|
||||
void ObjectFunctions::SetObjectSound(const char* soundId, double volume, double pitch) noexcept
|
||||
{
|
||||
tempObject.soundId = soundId;
|
||||
tempObject.volume = volume;
|
||||
tempObject.pitch = pitch;
|
||||
}
|
||||
|
||||
void ObjectFunctions::SetObjectSummonState(bool summonState) noexcept
|
||||
{
|
||||
tempObject.isSummon = summonState;
|
||||
|
|
|
@ -102,6 +102,7 @@
|
|||
{"SetObjectDroppedByPlayerState", ObjectFunctions::SetObjectDroppedByPlayerState},\
|
||||
{"SetObjectPosition", ObjectFunctions::SetObjectPosition},\
|
||||
{"SetObjectRotation", ObjectFunctions::SetObjectRotation},\
|
||||
{"SetObjectSound", ObjectFunctions::SetObjectSound},\
|
||||
\
|
||||
{"SetObjectSummonState", ObjectFunctions::SetObjectSummonState},\
|
||||
{"SetObjectSummonEffectId", ObjectFunctions::SetObjectSummonEffectId},\
|
||||
|
@ -934,6 +935,8 @@ public:
|
|||
*/
|
||||
static void SetObjectRotation(double x, double y, double z) noexcept;
|
||||
|
||||
static void SetObjectSound(const char* soundId, double volume, double pitch) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the summon state of the temporary object stored on the server.
|
||||
*
|
||||
|
|
|
@ -35,6 +35,7 @@ ProbeRecord tempProbe;
|
|||
RepairRecord tempRepair;
|
||||
ScriptRecord tempScript;
|
||||
StaticRecord tempStatic;
|
||||
SoundRecord tempSound;
|
||||
|
||||
BaseOverrides tempOverrides;
|
||||
|
||||
|
@ -84,6 +85,7 @@ void RecordsDynamicFunctions::ClearRecords() noexcept
|
|||
WorldstateFunctions::writeWorldstate.repairRecords.clear();
|
||||
WorldstateFunctions::writeWorldstate.scriptRecords.clear();
|
||||
WorldstateFunctions::writeWorldstate.staticRecords.clear();
|
||||
WorldstateFunctions::writeWorldstate.soundRecords.clear();
|
||||
}
|
||||
|
||||
unsigned short RecordsDynamicFunctions::GetRecordType() noexcept
|
||||
|
@ -398,6 +400,8 @@ void RecordsDynamicFunctions::SetRecordId(const char* id) noexcept
|
|||
tempScript.data.mId = id;
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::STATIC)
|
||||
tempStatic.data.mId = id;
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.data.mId = id;
|
||||
else
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set id for record type %i which lacks that property", writeRecordsType);
|
||||
}
|
||||
|
@ -452,6 +456,8 @@ void RecordsDynamicFunctions::SetRecordBaseId(const char* baseId) noexcept
|
|||
tempScript.baseId = baseId;
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::STATIC)
|
||||
tempStatic.baseId = baseId;
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.baseId = baseId;
|
||||
else
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set baseId for record type %i which lacks that property", writeRecordsType);
|
||||
}
|
||||
|
@ -1411,6 +1417,8 @@ void RecordsDynamicFunctions::SetRecordSound(const char* sound) noexcept
|
|||
|
||||
if (writeRecordsType == mwmp::RECORD_TYPE::LIGHT)
|
||||
tempLight.data.mSound = sound;
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.data.mSound = sound;
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set sound for record type %i which lacks that property", writeRecordsType);
|
||||
|
@ -1420,6 +1428,51 @@ void RecordsDynamicFunctions::SetRecordSound(const char* sound) noexcept
|
|||
tempOverrides.hasSound = true;
|
||||
}
|
||||
|
||||
void RecordsDynamicFunctions::SetRecordVolume(double volume) noexcept
|
||||
{
|
||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||
|
||||
if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.data.mData.mVolume = volume;
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set sound for record type %i which lacks that property", writeRecordsType);
|
||||
return;
|
||||
}
|
||||
|
||||
tempOverrides.hasVolume = true;
|
||||
}
|
||||
|
||||
void RecordsDynamicFunctions::SetRecordMinRange(double minRange) noexcept
|
||||
{
|
||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||
|
||||
if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.data.mData.mMinRange = minRange;
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set sound for record type %i which lacks that property", writeRecordsType);
|
||||
return;
|
||||
}
|
||||
|
||||
tempOverrides.hasMinRange = true;
|
||||
}
|
||||
|
||||
void RecordsDynamicFunctions::SetRecordMaxRange(double maxRange) noexcept
|
||||
{
|
||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||
|
||||
if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
tempSound.data.mData.mMinRange = maxRange;
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Tried to set sound for record type %i which lacks that property", writeRecordsType);
|
||||
return;
|
||||
}
|
||||
|
||||
tempOverrides.hasMaxRange = true;
|
||||
}
|
||||
|
||||
void RecordsDynamicFunctions::SetRecordOpenSound(const char* sound) noexcept
|
||||
{
|
||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||
|
@ -1718,6 +1771,12 @@ void RecordsDynamicFunctions::AddRecord() noexcept
|
|||
WorldstateFunctions::writeWorldstate.staticRecords.push_back(tempStatic);
|
||||
tempStatic = {};
|
||||
}
|
||||
else if (writeRecordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
{
|
||||
tempSound.baseOverrides = tempOverrides;
|
||||
WorldstateFunctions::writeWorldstate.soundRecords.push_back(tempSound);
|
||||
tempSound = {};
|
||||
}
|
||||
|
||||
effectCount = 0;
|
||||
tempOverrides = {};
|
||||
|
|
|
@ -99,6 +99,8 @@
|
|||
{"SetRecordAIServices", RecordsDynamicFunctions::SetRecordAIServices},\
|
||||
\
|
||||
{"SetRecordSound", RecordsDynamicFunctions::SetRecordSound},\
|
||||
{"SetRecordMinRange", RecordsDynamicFunctions::SetRecordMinRange},\
|
||||
{"SetRecordMaxRange", RecordsDynamicFunctions::SetRecordMaxRange},\
|
||||
{"SetRecordOpenSound", RecordsDynamicFunctions::SetRecordOpenSound},\
|
||||
{"SetRecordCloseSound", RecordsDynamicFunctions::SetRecordCloseSound},\
|
||||
\
|
||||
|
@ -849,6 +851,33 @@ public:
|
|||
*/
|
||||
static void SetRecordSound(const char* sound) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the volume of the temporary record stored on the server for the currently
|
||||
* specified record type.
|
||||
*
|
||||
* \param volume The volume of the record.
|
||||
* \return void
|
||||
*/
|
||||
static void SetRecordVolume(double volume) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the minimum range of the temporary record stored on the server for the currently
|
||||
* specified record type.
|
||||
*
|
||||
* \param volume The minimum range of the record.
|
||||
* \return void
|
||||
*/
|
||||
static void SetRecordMinRange(double minRange) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the maximum range of the temporary record stored on the server for the currently
|
||||
* specified record type.
|
||||
*
|
||||
* \param volume The maximum range of the record.
|
||||
* \return void
|
||||
*/
|
||||
static void SetRecordMaxRange(double maxRange) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the opening sound of the temporary record stored on the server for the
|
||||
* currently specified record type.
|
||||
|
|
|
@ -1461,3 +1461,49 @@ void RecordHelper::overrideRecord(const mwmp::WeaponRecord& record)
|
|||
if (isExistingId)
|
||||
world->updatePtrsWithRefId(recordData.mId);
|
||||
}
|
||||
|
||||
void RecordHelper::overrideRecord(const mwmp::SoundRecord& record) {
|
||||
const ESM::Sound& recordData = record.data;
|
||||
|
||||
if (recordData.mId.empty())
|
||||
{
|
||||
LOG_APPEND(TimedLog::LOG_INFO, "-- Ignoring record override with no id provided");
|
||||
return;
|
||||
}
|
||||
|
||||
bool isExistingId = doesRecordIdExist<ESM::Sound>(recordData.mId);
|
||||
MWBase::World* world = MWBase::Environment::get().getWorld();
|
||||
|
||||
if (record.baseId.empty())
|
||||
{
|
||||
world->getModifiableStore().overrideRecord(recordData);
|
||||
}
|
||||
else if (doesRecordIdExist<ESM::Sound>(record.baseId))
|
||||
{
|
||||
const ESM::Sound* baseData = world->getStore().get<ESM::Sound>().search(record.baseId);
|
||||
ESM::Sound finalData = *baseData;
|
||||
finalData.mId = recordData.mId;
|
||||
|
||||
if (record.baseOverrides.hasSound)
|
||||
finalData.mSound = recordData.mSound;
|
||||
|
||||
if (record.baseOverrides.hasVolume)
|
||||
finalData.mData.mVolume = recordData.mData.mVolume;
|
||||
|
||||
if (record.baseOverrides.hasMinRange)
|
||||
finalData.mData.mMinRange = recordData.mData.mMinRange;
|
||||
|
||||
if (record.baseOverrides.hasMaxRange)
|
||||
finalData.mData.mMaxRange = recordData.mData.mMaxRange;
|
||||
|
||||
world->getModifiableStore().overrideRecord(finalData);
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG_APPEND(TimedLog::LOG_INFO, "-- Ignoring record override with invalid baseId %s", record.baseId.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
if (isExistingId)
|
||||
world->updatePtrsWithRefId(recordData.mId);
|
||||
}
|
||||
|
|
|
@ -30,6 +30,7 @@ namespace RecordHelper
|
|||
void overrideRecord(const mwmp::SpellRecord& record);
|
||||
void overrideRecord(const mwmp::StaticRecord& record);
|
||||
void overrideRecord(const mwmp::WeaponRecord& record);
|
||||
void overrideRecord(const mwmp::SoundRecord& record);
|
||||
|
||||
template<class RecordType>
|
||||
void overrideRecord(const RecordType &record)
|
||||
|
|
|
@ -316,6 +316,18 @@ void Worldstate::addRecords()
|
|||
RecordHelper::overrideRecord(record);
|
||||
}
|
||||
}
|
||||
else if (recordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
{
|
||||
for (auto&& record : soundRecords)
|
||||
{
|
||||
bool hasBaseId = !record.baseId.empty();
|
||||
|
||||
LOG_APPEND(TimedLog::LOG_INFO, "- sound record %s\n-- baseId is %s", record.data.mId.c_str(),
|
||||
hasBaseId ? record.baseId.c_str() : "empty");
|
||||
|
||||
RecordHelper::overrideRecord(record);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool Worldstate::containsExploredMapTile(int cellX, int cellY)
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <components/esm/loadspel.hpp>
|
||||
#include <components/esm/loadstat.hpp>
|
||||
#include <components/esm/loadweap.hpp>
|
||||
#include <components/esm/loadsoun.hpp>
|
||||
|
||||
#include <components/openmw-mp/Base/BaseStructs.hpp>
|
||||
|
||||
|
@ -57,7 +58,8 @@ namespace mwmp
|
|||
SCRIPT,
|
||||
SPELL,
|
||||
STATIC,
|
||||
WEAPON
|
||||
WEAPON,
|
||||
SOUND
|
||||
};
|
||||
|
||||
// When using an existing record as a base, this struct tracks which changes
|
||||
|
@ -138,6 +140,10 @@ namespace mwmp
|
|||
bool hasCloseSound = false;
|
||||
|
||||
bool hasScriptText = false;
|
||||
|
||||
bool hasVolume = false;
|
||||
bool hasMinRange = false;
|
||||
bool hasMaxRange = false;
|
||||
};
|
||||
|
||||
struct ActivatorRecord
|
||||
|
@ -307,6 +313,13 @@ namespace mwmp
|
|||
BaseOverrides baseOverrides;
|
||||
};
|
||||
|
||||
struct SoundRecord
|
||||
{
|
||||
ESM::Sound data;
|
||||
std::string baseId;
|
||||
BaseOverrides baseOverrides;
|
||||
};
|
||||
|
||||
static const int maxImageDataSize = 1800;
|
||||
|
||||
struct MapTile
|
||||
|
@ -393,6 +406,7 @@ namespace mwmp
|
|||
std::vector<ProbeRecord> probeRecords;
|
||||
std::vector<RepairRecord> repairRecords;
|
||||
std::vector<ScriptRecord> scriptRecords;
|
||||
std::vector<SoundRecord> soundRecords;
|
||||
std::vector<SpellRecord> spellRecords;
|
||||
std::vector<StaticRecord> staticRecords;
|
||||
std::vector<WeaponRecord> weaponRecords;
|
||||
|
|
|
@ -68,6 +68,8 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *newBitstream, bool send)
|
|||
worldstate->recordsCount = Utils::getVectorSize(worldstate->scriptRecords);
|
||||
else if (worldstate->recordsType == mwmp::RECORD_TYPE::STATIC)
|
||||
worldstate->recordsCount = Utils::getVectorSize(worldstate->staticRecords);
|
||||
else if (worldstate->recordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
worldstate->recordsCount = Utils::getVectorSize(worldstate->soundRecords);
|
||||
else
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(TimedLog::LOG_ERROR, "Processed invalid ID_RECORD_DYNAMIC packet about unimplemented recordsType %i",
|
||||
|
@ -134,6 +136,8 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *newBitstream, bool send)
|
|||
Utils::resetVector(worldstate->scriptRecords, worldstate->recordsCount);
|
||||
else if (worldstate->recordsType == mwmp::RECORD_TYPE::STATIC)
|
||||
Utils::resetVector(worldstate->staticRecords, worldstate->recordsCount);
|
||||
else if (worldstate->recordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
Utils::resetVector(worldstate->soundRecords, worldstate->recordsCount);
|
||||
}
|
||||
|
||||
if (worldstate->recordsType == mwmp::RECORD_TYPE::SPELL)
|
||||
|
@ -847,6 +851,29 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *newBitstream, bool send)
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (worldstate->recordsType == mwmp::RECORD_TYPE::SOUND)
|
||||
{
|
||||
for (auto&& record : worldstate->soundRecords)
|
||||
{
|
||||
auto& recordData = record.data;
|
||||
|
||||
RW(record.baseId, send, true);
|
||||
RW(recordData.mId, send, true);
|
||||
RW(recordData.mSound, send, true);
|
||||
RW(recordData.mData.mVolume, send);
|
||||
RW(recordData.mData.mMinRange, send);
|
||||
RW(recordData.mData.mMaxRange, send);
|
||||
|
||||
if (!record.baseId.empty())
|
||||
{
|
||||
auto&& overrides = record.baseOverrides;
|
||||
RW(overrides.hasSound, send);
|
||||
RW(overrides.hasVolume, send);
|
||||
RW(overrides.hasMinRange, send);
|
||||
RW(overrides.hasMaxRange, send);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void PacketRecordDynamic::ProcessEffects(ESM::EffectList &effectList, bool send)
|
||||
|
|
Loading…
Reference in a new issue