15 std::string projectName =
"Project Name";
21 float timeStep = 0.01667f;
22 float maxTimeStep = 0.1f;
23 unsigned threadCount = 8u;
24 bool buildTasksOnInit =
true;
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/";
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;
105 unsigned bufferFrames = 512u;
152void Save(
const std::filesystem::path& path,
const Config& 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