Files
MinecraftConsoles/Minecraft.World/Dimension.h
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

66 lines
1.4 KiB
C++

#pragma once
class BiomeSource;
class ChunkSource;
class ChunkStorage;
class Level;
class LevelType;
#include "Material.h"
#include "Vec3.h"
#include "Pos.h"
class Dimension
{
public:
static const float MOON_BRIGHTNESS_PER_PHASE[8];
Level *level;
LevelType *levelType;
wstring levelTypeOptions;
BiomeSource *biomeSource;
bool ultraWarm ;
bool hasCeiling;
float *brightnessRamp;
int id;
virtual void init(Level *level);
protected:
virtual void updateLightRamp();
virtual void init();
public:
Dimension();
~Dimension();
virtual ChunkSource *createRandomLevelSource() const;
virtual ChunkSource *createFlatLevelSource() const;
virtual ChunkStorage *createStorage(File dir);
virtual bool isValidSpawn(int x, int z) const;
virtual float getTimeOfDay(__int64 time, float a) const;
virtual int getMoonPhase(__int64 time) const;
virtual bool isNaturalDimension();
private:
static const int fogColor = 0xc0d8ff;
float sunriseCol[4];
public:
virtual float *getSunriseColor(float td, float a);
virtual Vec3 *getFogColor(float td, float a) const;
virtual bool mayRespawn() const;
static Dimension *getNew(int id);
virtual float getCloudHeight();
virtual bool hasGround();
virtual Pos *getSpawnPos();
int getSpawnYPosition();
virtual bool hasBedrockFog();
double getClearColorScale();
virtual bool isFoggyAt(int x, int z);
// 4J Added
virtual int getXZSize();
};