2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Darkflame Universe
|
|
|
|
* Copyright 2018
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "ScriptComponent.h"
|
|
|
|
|
|
|
|
ScriptComponent::ScriptComponent(Entity* parent, std::string scriptName, bool serialized, bool client) : Component(parent) {
|
|
|
|
m_Serialized = serialized;
|
|
|
|
m_Client = client;
|
|
|
|
|
|
|
|
SetScript(scriptName);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptComponent::~ScriptComponent() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void ScriptComponent::Serialize(RakNet::BitStream& outBitStream, bool bIsInitialUpdate) {
|
2021-12-05 17:54:36 +00:00
|
|
|
if (bIsInitialUpdate) {
|
|
|
|
const auto& networkSettings = m_Parent->GetNetworkSettings();
|
|
|
|
auto hasNetworkSettings = !networkSettings.empty();
|
2024-02-27 07:25:44 +00:00
|
|
|
outBitStream.Write(hasNetworkSettings);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (hasNetworkSettings) {
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
// First write the most inner LDF data
|
|
|
|
RakNet::BitStream ldfData;
|
|
|
|
ldfData.Write<uint8_t>(0);
|
|
|
|
ldfData.Write<uint32_t>(networkSettings.size());
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
for (auto* networkSetting : networkSettings) {
|
2024-02-26 14:15:29 +00:00
|
|
|
networkSetting->WriteToPacket(ldfData);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
// Finally write everything to the stream
|
2024-02-27 07:25:44 +00:00
|
|
|
outBitStream.Write<uint32_t>(ldfData.GetNumberOfBytesUsed());
|
|
|
|
outBitStream.Write(ldfData);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-07 01:49:29 +00:00
|
|
|
CppScripts::Script* const ScriptComponent::GetScript() {
|
2021-12-05 17:54:36 +00:00
|
|
|
return m_Script;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptComponent::SetScript(const std::string& scriptName) {
|
2024-01-11 04:57:41 +00:00
|
|
|
// Scripts are managed by the CppScripts class and are effecitvely singletons
|
|
|
|
// and they may also be used by other script components so DON'T delete them.
|
2021-12-05 17:54:36 +00:00
|
|
|
m_Script = CppScripts::GetScript(m_Parent, scriptName);
|
|
|
|
}
|