December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -4,6 +4,7 @@
#include "OffsettedRenderList.h"
#include "..\Minecraft.World\JavaIntHash.h"
#include "..\Minecraft.World\Level.h"
#include "ResourceLocation.h"
#include <xmcore.h>
#ifdef __PS3__
#include "C4JSpursJob.h"
@@ -35,6 +36,14 @@ using namespace std;
class LevelRenderer : public LevelListener
{
friend class Chunk;
private:
static ResourceLocation MOON_LOCATION;
static ResourceLocation MOON_PHASES_LOCATION;
static ResourceLocation SUN_LOCATION;
static ResourceLocation CLOUDS_LOCATION;
static ResourceLocation END_SKY_LOCATION;
public:
static const int CHUNK_XZSIZE = 16;
#ifdef _LARGE_WORLDS
@@ -43,7 +52,7 @@ public:
static const int CHUNK_SIZE = 16;
#endif
static const int CHUNK_Y_COUNT = Level::maxBuildHeight / CHUNK_SIZE;
#if defined _XBOX_ONE
#if ( defined _XBOX_ONE || defined _WINDOWS64 )
static const int MAX_COMMANDBUFFER_ALLOCATIONS = 512 * 1024 * 1024; // 4J - added
#elif defined __ORBIS__
static const int MAX_COMMANDBUFFER_ALLOCATIONS = 448 * 1024 * 1024; // 4J - added - hard limit is 512 so giving a lot of headroom here for fragmentation (have seen 16MB lost to fragmentation in multiplayer crash dump before)
@@ -71,7 +80,7 @@ public:
private:
void resortChunks(int xc, int yc, int zc);
public:
int render(shared_ptr<Mob> player, int layer, double alpha, bool updateChunks);
int render(shared_ptr<LivingEntity> player, int layer, double alpha, bool updateChunks);
private:
int renderChunks(int from, int to, int layer, double alpha);
public:
@@ -89,7 +98,7 @@ public:
public:
void renderHit(shared_ptr<Player> player, HitResult *h, int mode, shared_ptr<ItemInstance> inventoryItem, float a);
void renderDestroyAnimation(Tesselator *t, shared_ptr<Player> player, float a);
void renderHitOutline(shared_ptr<Player> player, HitResult *h, int mode, shared_ptr<ItemInstance> inventoryItem, float a);
void renderHitOutline(shared_ptr<Player> player, HitResult *h, int mode, float a);
void render(AABB *b);
void setDirty(int x0, int y0, int z0, int x1, int y1, int z1, Level *level); // 4J - added level param
void tileChanged(int x, int y, int z);
@@ -107,6 +116,7 @@ public:
void playStreamingMusic(const wstring& name, int x, int y, int z);
void playSound(int iSound, double x, double y, double z, float volume, float pitch, float fSoundClipDist=16.0f);
void playSound(shared_ptr<Entity> entity,int iSound, double x, double y, double z, float volume, float pitch, float fSoundClipDist=16.0f);
void playSoundExceptPlayer(shared_ptr<Player> player, int iSound, double x, double y, double z, float volume, float pitch, float fSoundClipDist=16.0f);
void addParticle(ePARTICLE_TYPE eParticleType, double x, double y, double z, double xa, double ya, double za); // 4J added
shared_ptr<Particle> addParticleInternal(ePARTICLE_TYPE eParticleType, double x, double y, double z, double xa, double ya, double za); // 4J added
void entityAdded(shared_ptr<Entity> entity);
@@ -114,6 +124,7 @@ public:
void playerRemoved(shared_ptr<Entity> entity) {} // 4J added - for when a player is removed from the level's player array, not just the entity storage
void skyColorChanged();
void clear();
void globalLevelEvent(int type, int sourceX, int sourceY, int sourceZ, int data);
void levelEvent(shared_ptr<Player> source, int type, int x, int y, int z, int data);
void destroyTileProgress(int id, int x, int y, int z, int progress);
void registerTextures(IconRegister *iconRegister);
@@ -274,4 +285,6 @@ public:
CRITICAL_SECTION m_csChunkFlags;
#endif
void nonStackDirtyChunksAdded();
int checkAllPresentChunks(bool *faultFound); // 4J - added for testing
};