Files
daoge b3feddfef3 feat: TU19 (Dec 2014) Features & Content (#155)
* 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>
2026-03-03 03:04:10 +08:00

150 lines
3.7 KiB
C++

#pragma once
#include "AgableMob.h"
#include "Npc.h"
#include "Merchant.h"
#include "ParticleTypes.h"
class Level;
class Village;
class MerchantRecipeList;
class MerchantRecipe;
class Villager : public AgableMob, public Npc, public Merchant
{
public:
eINSTANCEOF GetType() { return eTYPE_VILLAGER; }
static Entity *create(Level *level) { return new Villager(level); }
//public static final String comment = "No, I won't 'fix' these! They're fine!! - Notch";
public:
static const int PROFESSION_FARMER = 0;
static const int PROFESSION_LIBRARIAN = 1;
static const int PROFESSION_PRIEST = 2;
static const int PROFESSION_SMITH = 3;
static const int PROFESSION_BUTCHER = 4;
static const int PROFESSION_MAX = 5;
private:
static const int DATA_PROFESSION_ID = 16;
int villageUpdateInterval;
bool inLove;
bool chasing;
weak_ptr<Village> village;
weak_ptr<Player> tradingPlayer;
MerchantRecipeList *offers;
int updateMerchantTimer;
bool addRecipeOnUpdate;
int riches;
wstring lastPlayerTradeName;
bool rewardPlayersOnFirstVillage;
private:
void _init(int profession);
public:
Villager(Level *level);
Villager(Level *level, int profession);
~Villager();
protected:
virtual void registerAttributes();
public:
virtual bool useNewAi();
protected:
virtual void serverAiMobStep();
public:
virtual bool mobInteract(shared_ptr<Player> player);
protected:
virtual void defineSynchedData();
public:
virtual void addAdditonalSaveData(CompoundTag *tag);
virtual void readAdditionalSaveData(CompoundTag *tag);
protected:
virtual bool removeWhenFarAway();
virtual int getAmbientSound();
virtual int getHurtSound();
virtual int getDeathSound();
public:
void setProfession(int profession);
int getProfession();
bool isInLove();
void setInLove(bool inLove);
void setChasing(bool chasing);
bool isChasing();
void setLastHurtByMob(shared_ptr<LivingEntity> mob);
void die(DamageSource *source);
void handleEntityEvent(byte id);
private:
void addParticlesAroundSelf(ePARTICLE_TYPE particle);
public:
void setTradingPlayer(shared_ptr<Player> player);
shared_ptr<Player> getTradingPlayer();
bool isTrading();
void notifyTrade(MerchantRecipe *activeRecipe);
void notifyTradeUpdated(shared_ptr<ItemInstance> item);
MerchantRecipeList *getOffers(shared_ptr<Player> forPlayer);
private:
float baseRecipeChanceMod;
float getRecipeChance(float baseChance);
void addOffers(int addCount);
public:
void overrideOffers(MerchantRecipeList *recipeList);
private:
static unordered_map<int, pair<int,int> > MIN_MAX_VALUES;
static unordered_map<int, pair<int,int> > MIN_MAX_PRICES;
public:
static void staticCtor();
private:
/**
* Adds a merchant recipe that trades items for a single ruby.
*
* @param list
* @param itemId
* @param random
* @param likelyHood
*/
static void addItemForTradeIn(MerchantRecipeList *list, int itemId, Random *random, float likelyHood);
static shared_ptr<ItemInstance> getItemTradeInValue(int itemId, Random *random);
static int getTradeInValue(int itemId, Random *random);
/**
* Adds a merchant recipe that trades rubies for an item. If the cost is
* negative, one ruby will give several of that item.
*
* @param list
* @param itemId
* @param random
* @param likelyHood
*/
static void addItemForPurchase(MerchantRecipeList *list, int itemId, Random *random, float likelyHood);
static int getPurchaseCost(int itemId, Random *random);
public:
virtual MobGroupData *finalizeMobSpawn(MobGroupData *groupData, int extraData = 0); // 4J Added extraData param
virtual void setRewardPlayersInVillage();
virtual shared_ptr<AgableMob> getBreedOffspring(shared_ptr<AgableMob> target);
virtual bool canBeLeashed();
virtual wstring getDisplayName();
};