#pragma once

#include <Model3D.h>

#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<int> location;
    unsigned char lightData[6 * 6];
    char needRequestModelInfo;
    int partOfModel;
    char flowOptions;
    char distanceToSource;

    void beforeRender(
        GraphicsApi* api, Shader* zVertexShader, Shader* zPixelShader) override;

public:
    Block(const BlockType* zType,
        Vec3<int> position,
        Model3DData* model,
        Model3DTextur* texture,
        int maxHp,
        bool transparent,
        bool needRequestModelInfo, float size);
    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<int> getLocation() const;
    const BlockType* zBlockType() const;
    Skeleton* zSkeleton() const;
    Text printLightInfo();
    int getPartOfModels() const;
    char getFlowOptions() const;
    char getDistanceToSource() const;
    
    friend Chunk;
};