2021-12-05 17:54:36 +00:00
|
|
|
#include "SwitchMultipleBehavior.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "CDActivitiesTable.h"
|
|
|
|
#include "Game.h"
|
|
|
|
#include "dLogger.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
|
|
|
|
|
|
|
|
void SwitchMultipleBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
|
|
|
float value;
|
|
|
|
|
|
|
|
bit_stream->Read(value);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
uint32_t trigger = 0;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < this->m_behaviors.size(); i++) {
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
const double data = this->m_behaviors.at(i).first;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (value <= data) {
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
trigger = i;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* behavior = this->m_behaviors.at(trigger).second;
|
|
|
|
|
|
|
|
behavior->Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwitchMultipleBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2022-01-07 02:12:47 +00:00
|
|
|
void SwitchMultipleBehavior::Load() {
|
2022-01-13 03:48:27 +00:00
|
|
|
auto query = CDClientDatabase::CreatePreppedStmt(
|
2022-01-07 02:12:47 +00:00
|
|
|
"SELECT replace(bP1.parameterID, 'behavior ', '') as key, bP1.value as behavior, "
|
2022-01-13 03:48:27 +00:00
|
|
|
"(select bP2.value FROM BehaviorParameter bP2 WHERE bP2.behaviorID = ?1 AND bP2.parameterID LIKE 'value %' "
|
2022-01-07 02:12:47 +00:00
|
|
|
"AND replace(bP1.parameterID, 'behavior ', '') = replace(bP2.parameterID, 'value ', '')) as value "
|
2022-01-13 03:48:27 +00:00
|
|
|
"FROM BehaviorParameter bP1 WHERE bP1.behaviorID = ?1 AND bP1.parameterID LIKE 'behavior %';");
|
|
|
|
query.bind(1, (int)this->m_behaviorId);
|
|
|
|
|
|
|
|
auto result = query.execQuery();
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
while (!result.eof()) {
|
|
|
|
const auto behavior_id = static_cast<uint32_t>(result.getFloatField(1));
|
|
|
|
|
|
|
|
auto* behavior = CreateBehavior(behavior_id);
|
|
|
|
|
|
|
|
auto value = result.getFloatField(2);
|
|
|
|
|
|
|
|
this->m_behaviors.emplace_back(value, behavior);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
result.nextRow();
|
|
|
|
}
|
|
|
|
}
|