mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:33:41 +00:00
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
#include "AwardStatPacket.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "PacketListener.h"
|
|
#include "java/InputOutputStream/DataInputStream.h"
|
|
#include "java/InputOutputStream/DataOutputStream.h"
|
|
|
|
AwardStatPacket::AwardStatPacket() { this->m_paramData.clear(); }
|
|
|
|
AwardStatPacket::AwardStatPacket(int statId, int count) {
|
|
this->statId = statId;
|
|
|
|
// 4jcraft, changed from (uint8_t*) new int(count); to:
|
|
// new uint8_t[sizeof(int)];
|
|
// and memcpy of the integer into the array
|
|
// reason: operator missmatch, array is deleted with delete[]
|
|
// and typesafety
|
|
this->m_paramData.resize(sizeof(int));
|
|
memcpy(this->m_paramData.data(), &count, sizeof(int));
|
|
}
|
|
|
|
AwardStatPacket::AwardStatPacket(int statId, std::vector<uint8_t>& paramData) {
|
|
this->statId = statId;
|
|
this->m_paramData = paramData;
|
|
}
|
|
|
|
AwardStatPacket::~AwardStatPacket() { m_paramData.clear(); }
|
|
|
|
void AwardStatPacket::handle(PacketListener* listener) {
|
|
listener->handleAwardStat(shared_from_this());
|
|
m_paramData.clear();
|
|
}
|
|
|
|
void AwardStatPacket::read(DataInputStream* dis) // throws IOException
|
|
{
|
|
statId = dis->readInt();
|
|
|
|
// Read parameter blob.
|
|
int length = dis->readInt();
|
|
if (length > 0) {
|
|
m_paramData = std::vector<uint8_t>(length);
|
|
dis->readFully(m_paramData);
|
|
}
|
|
}
|
|
|
|
void AwardStatPacket::write(DataOutputStream* dos) // throws IOException
|
|
{
|
|
dos->writeInt(statId);
|
|
dos->writeInt(m_paramData.size());
|
|
if (m_paramData.size() > 0) dos->write(m_paramData);
|
|
}
|
|
|
|
int AwardStatPacket::getEstimatedSize() { return 6; }
|
|
|
|
bool AwardStatPacket::isAync() { return true; }
|
|
|
|
// On most platforms we only store 'count' in an AwardStatPacket.
|
|
int AwardStatPacket::getCount() { return *((int*)this->m_paramData.data()); }
|
|
|
|
// On Durango we store 'Event' parameters here in a blob.
|
|
std::vector<uint8_t> AwardStatPacket::getParamData() { return m_paramData; }
|