NcEngine
Config.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <filesystem>
8#include <string>
9
10namespace nc::config
11{
14{
15 std::string projectName = "Project Name";
16};
17
20{
21 float timeStep = 0.01667f; // Set to 0 for variable time step
22 float maxTimeStep = 0.1f; // Clamp delta time below this value
23 unsigned threadCount = 8u; // Set to 0 to use std::hardware_concurrency
24 bool buildTasksOnInit = true; // Build tasks automatically on engine initialization or require explicit building
25};
26
34{
35 std::string audioClipsPath = "assets/audio_clip/";
36 std::string convexHullsPath = "assets/convex_hull/";
37 std::string cubeMapsPath = "assets/cube_map";
38 std::string fontsPath = "assets/font";
39 std::string meshesPath = "assets/mesh/";
40 std::string meshCollidersPath = "assets/mesh_collider/";
41 std::string shadersPath = "assets/shader/";
42 std::string skeletalAnimationsPath = "assets/skeletal_animation/";
43 std::string texturesPath = "assets/texture/";
44};
45
53{
54 unsigned maxRigidBodies = 15000;
55 unsigned maxParticleEmitters = 1000;
56 unsigned maxRenderers = 100000;
57 unsigned maxTransforms = 100000;
58 unsigned maxPointLights = 10;
59 unsigned maxDirectionalLights = 10;
60 unsigned maxSpotLights = 10;
61 unsigned maxSkeletalAnimations = 1000;
62 unsigned maxTextures = 1000;
63 unsigned maxCubeMaps = 10;
64 unsigned maxParticles = 100000;
65 unsigned maxBones = 100000;
66};
67
70{
71 bool enabled = true;
72 bool useNativeResolution = false;
73 bool launchInFullscreen = false;
74 unsigned screenWidth = 1000;
75 unsigned screenHeight = 1000;
76 unsigned targetFPS = 60;
77 bool useShadows = true;
78 unsigned shadowMapResolution = 2048;
79 unsigned antialiasing = 8u;
80 unsigned initialBatchSize = 1u;
81 bool useValidationLayers = false;
82};
83
86{
87 bool enabled = true;
88 bool enableNetworkRollback = false;
89 unsigned tempAllocatorSize = 64 * 1024 * 1024;
90 unsigned maxBodyPairs = 50000;
91 unsigned maxContacts = 30000;
92 unsigned velocitySteps = 10;
93 unsigned positionSteps = 2;
96 float penetrationSlop = 0.02f;
97 float timeBeforeSleep = 0.5f;
98 float sleepThreshold = 0.03f;
99};
100
103{
104 bool enabled = true;
105 unsigned bufferFrames = 512u; // must be a power of two in the range [16, 2048]
106};
107
113struct Config
114{
115 ProjectSettings projectSettings;
116 EngineSettings engineSettings;
117 AssetSettings assetSettings;
118 MemorySettings memorySettings;
119 GraphicsSettings graphicsSettings;
120 PhysicsSettings physicsSettings;
121 AudioSettings audioSettings;
122};
123
144auto Load(const std::filesystem::path& path) -> Config;
145
152void Save(const std::filesystem::path& path, const Config& config);
153
162auto Validate(const Config& config) -> bool;
163
166
169
172
175
178
181
184} // namespace nc::config
auto GetAssetSettings() -> const AssetSettings &
Get the AssetSettings NcEngine was initialized with.
void Save(const std::filesystem::path &path, const Config &config)
Write a Config object's contents to a file.
auto GetProjectSettings() -> const ProjectSettings &
Get the ProjectSettings NcEngine was initialized with.
auto GetAudioSettings() -> const AudioSettings &
Get the AudioSettings NcEngine was initialized with.
auto GetEngineSettings() -> const EngineSettings &
Get the EngineSettings NcEngine was initialized with.
auto Validate(const Config &config) -> bool
Check if a Config object is in a valid state for initializing NcEngine.
auto GetMemorySettings() -> const MemorySettings &
Get the MemorySettings NcEngine was initialized with.
auto GetGraphicsSettings() -> const GraphicsSettings &
Get the GraphicsSettings NcEngine was initialized with.
auto GetPhysicsSettings() -> const PhysicsSettings &
Get the PhysicsSettings NcEngine was initialized with.
auto Load(const std::filesystem::path &path) -> Config
Load a Config object from a file.
Options for configuring NcAsset.
Definition: Config.h:34
Options for configuring NcAudio.
Definition: Config.h:103
A collection of all configuration options.
Definition: Config.h:114
Settings for configuring the engine run loop and executor.
Definition: Config.h:20
Options for configuring NcGraphics.
Definition: Config.h:70
unsigned screenHeight
height of the screen
Definition: Config.h:75
unsigned shadowMapResolution
shadow map resolution. Minimum value = 128
Definition: Config.h:78
unsigned initialBatchSize
default instance capacity for render batch allocation (size hint - can grow beyond this)
Definition: Config.h:80
bool useNativeResolution
use the monitor's native resolution
Definition: Config.h:72
unsigned screenWidth
width of the screen
Definition: Config.h:74
unsigned antialiasing
the number of samples for MSAA
Definition: Config.h:79
bool enabled
enable the NcGraphics module
Definition: Config.h:71
unsigned targetFPS
target frame rate
Definition: Config.h:76
bool launchInFullscreen
launch a fullscreen window
Definition: Config.h:73
bool useValidationLayers
turn on validation layers in debug builds
Definition: Config.h:81
bool useShadows
enable shadow mapping and shadow rendering
Definition: Config.h:77
Options for configuring pre-allocated pools.
Definition: Config.h:53
Options for configuring NcPhysics.
Definition: Config.h:86
bool enabled
enable the NcPhysics module
Definition: Config.h:87
unsigned tempAllocatorSize
size of per-frame allocaor; needs to be large enough to account for maximums below (bytes)
Definition: Config.h:89
unsigned positionSteps
number of position solver iterations to use
Definition: Config.h:93
float penetrationSlop
distance objects are allowed to overlap (meters)
Definition: Config.h:96
unsigned velocitySteps
number of velocity solver iterations to use (>=2)
Definition: Config.h:92
float speculativeContactDistance
object radius for contact detection (meters)
Definition: Config.h:95
unsigned maxContacts
max number of simultaneous contacts
Definition: Config.h:91
float sleepThreshold
velocity below which objects are put to sleep (m/s)
Definition: Config.h:98
unsigned maxBodyPairs
max number of simultaneous body interactions
Definition: Config.h:90
float baumgarteStabilization
factor for position error correction ([0, 1])
Definition: Config.h:94
float timeBeforeSleep
time until objects are allowed to sleep (seconds)
Definition: Config.h:97
bool enableNetworkRollback
initialize NcPhysics for network rollback mode (see NcPhysics documentation)
Definition: Config.h:88
General project options.
Definition: Config.h:14