#pragma once #include #include "Area.h" #include "BlockType.h" #include "Registries.h" #include "FactoryCraftModel.h" using namespace Framework; class BasicBlockItemType; class Chunk; class Block : public FactoryCraftModel { protected: float hp; float maxHP; const BlockType* zType; bool sideVisible[6]; Vec3 location; unsigned char lightData[6 * 6]; char needRequestModelInfo; int partOfModel; char flowOptions; char distanceToSource; bool passable; float speedModifier; void beforeRender( GraphicsApi* api, Shader* zVertexShader, Shader* zPixelShader) override; public: Block(const BlockType* zType, Vec3 position, Model3DData* model, Model3DTextur* texture, int maxHp, bool transparent, bool needRequestModelInfo, float size, bool passable, float speedModifier); virtual ~Block(); void setFlow(char flowOptions, char distanceToSource); void api(char* message); void copyLightTo(Block* zB); void setLightData(Direction dir, unsigned char* data); void setPartOfModel(int type, bool part); __int64 getMaxLight() const; const unsigned char* getLightData(Direction dir) const; bool isVisible() const; Vec3 getLocation() const; const BlockType* zBlockType() const; Skeleton* zSkeleton() const; Text printLightInfo(); int getPartOfModels() const; char getFlowOptions() const; char getDistanceToSource() const; friend Chunk; };