osb/source/game/StarWorldRenderData.hpp

63 lines
1.2 KiB
C++
Raw Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#include "StarImage.hpp"
#include "StarWorldTiles.hpp"
#include "StarEntityRenderingTypes.hpp"
#include "StarSkyRenderData.hpp"
#include "StarParallax.hpp"
#include "StarParticle.hpp"
#include "StarWeatherTypes.hpp"
#include "StarEntity.hpp"
#include "StarThread.hpp"
2024-03-19 14:53:34 +00:00
#include "StarCellularLighting.hpp"
2023-06-20 04:33:09 +00:00
namespace Star {
struct EntityDrawables {
EntityHighlightEffect highlightEffect;
Map<EntityRenderLayer, List<Drawable>> layers;
};
2024-03-19 14:53:34 +00:00
2023-06-20 04:33:09 +00:00
struct WorldRenderData {
void clear();
WorldGeometry geometry;
Vec2I tileMinPosition;
RenderTileArray tiles;
Vec2I lightMinPosition;
2024-03-19 14:53:34 +00:00
Lightmap lightMap;
2023-06-20 04:33:09 +00:00
List<EntityDrawables> entityDrawables;
List<Particle> const* particles;
2023-06-20 04:33:09 +00:00
List<OverheadBar> overheadBars;
List<Drawable> nametags;
List<Drawable> backgroundOverlays;
List<Drawable> foregroundOverlays;
List<ParallaxLayer> parallaxLayers;
SkyRenderData skyRenderData;
bool isFullbright = false;
float dimLevel = 0.0f;
Vec3B dimColor;
};
inline void WorldRenderData::clear() {
tiles.resize({0, 0}); // keep reserved
2023-06-20 04:33:09 +00:00
entityDrawables.clear();
particles = nullptr;
2023-06-20 04:33:09 +00:00
overheadBars.clear();
nametags.clear();
backgroundOverlays.clear();
foregroundOverlays.clear();
parallaxLayers.clear();
}
}