* try to resolve merge conflict
* feat: TU19 (Dec 2014) Features & Content (#32)
* December 2014 files
* Working release build
* Fix compilation issues
* Add sound to Windows64Media
* Add DLC content and force Tutorial DLC
* Revert "Add DLC content and force Tutorial DLC"
This reverts commit 97a4399472.
* Disable broken light packing
* Disable breakpoint during DLC texture map load
Allows DLC loading but the DLC textures are still broken
* Fix post build not working
* ...
* fix vs2022 build
* fix cmake build
---------
Co-authored-by: Loki <lokirautio@gmail.com>
66 lines
1.3 KiB
C++
66 lines
1.3 KiB
C++
#include "stdafx.h"
|
|
#include <iostream>
|
|
#include "InputOutputStream.h"
|
|
#include "PacketListener.h"
|
|
#include "SetHealthPacket.h"
|
|
|
|
|
|
|
|
SetHealthPacket::SetHealthPacket()
|
|
{
|
|
this->health = 0.0f;
|
|
this->food = 0;
|
|
this->saturation = 0;
|
|
|
|
this->damageSource = eTelemetryChallenges_Unknown;
|
|
}
|
|
|
|
SetHealthPacket::SetHealthPacket(float health, int food, float saturation, ETelemetryChallenges damageSource)
|
|
{
|
|
this->health = health;
|
|
this->food = food;
|
|
this->saturation = saturation;
|
|
// this.exhaustion = exhaustion; // 4J - Original comment
|
|
|
|
this->damageSource = damageSource;
|
|
}
|
|
|
|
void SetHealthPacket::read(DataInputStream *dis) //throws IOException
|
|
{
|
|
health = dis->readFloat();
|
|
food = dis->readShort();
|
|
saturation = dis->readFloat();
|
|
// exhaustion = dis.readFloat();
|
|
|
|
damageSource = (ETelemetryChallenges)dis->readByte();
|
|
}
|
|
|
|
void SetHealthPacket::write(DataOutputStream *dos) //throws IOException
|
|
{
|
|
dos->writeFloat(health);
|
|
dos->writeShort(food);
|
|
dos->writeFloat(saturation);
|
|
// dos.writeFloat(exhaustion);
|
|
|
|
dos->writeByte(damageSource);
|
|
}
|
|
|
|
void SetHealthPacket::handle(PacketListener *listener)
|
|
{
|
|
listener->handleSetHealth(shared_from_this());
|
|
}
|
|
|
|
int SetHealthPacket::getEstimatedSize()
|
|
{
|
|
return 11;
|
|
}
|
|
|
|
bool SetHealthPacket::canBeInvalidated()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool SetHealthPacket::isInvalidatedBy(shared_ptr<Packet> packet)
|
|
{
|
|
return true;
|
|
} |