mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-23 15:36:07 +00:00
Notably also adds some metadata files for NixOS * add support for linux clang cross compiles * add linux clang instructions * un-capitalize Mob.horse.* * update the description in flake.nix --------- Co-authored-by: Loki <lokirautio@gmail.com>
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#include "stdafx.h"
|
|
|
|
#include <string>
|
|
|
|
#include "Minecraft.h"
|
|
#include "Tutorial.h"
|
|
|
|
#include "../Minecraft.World/EntityHorse.h"
|
|
|
|
#include "HorseChoiceTask.h"
|
|
|
|
HorseChoiceTask::HorseChoiceTask(Tutorial *tutorial, int iDescHorse, int iDescDonkey, int iDescMule, int iPromptId,
|
|
bool requiresUserInput, int iConfirmMapping, int iCancelMapping,
|
|
eTutorial_CompletionAction cancelAction, ETelemetryChallenges telemetryEvent)
|
|
|
|
: ChoiceTask(tutorial, -1, iPromptId, requiresUserInput, iConfirmMapping, iCancelMapping, cancelAction, telemetryEvent)
|
|
{
|
|
m_eHorseType = -1;
|
|
m_iDescMule = iDescMule;
|
|
m_iDescDonkey = iDescDonkey;
|
|
m_iDescHorse = iDescHorse;
|
|
}
|
|
|
|
int HorseChoiceTask::getDescriptionId()
|
|
{
|
|
switch (m_eHorseType)
|
|
{
|
|
case EntityHorse::TYPE_HORSE: return m_iDescHorse;
|
|
case EntityHorse::TYPE_DONKEY: return m_iDescDonkey;
|
|
case EntityHorse::TYPE_MULE: return m_iDescMule;
|
|
default: return -1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void HorseChoiceTask::onLookAtEntity(shared_ptr<Entity> entity)
|
|
{
|
|
if ( (m_eHorseType < 0) && entity->instanceof(eTYPE_HORSE) )
|
|
{
|
|
shared_ptr<EntityHorse> horse = dynamic_pointer_cast<EntityHorse>(entity);
|
|
if ( horse->isAdult() ) m_eHorseType = horse->getType();
|
|
}
|
|
} |