#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include NAZARA_REQUEST_DEDICATED_GPU() int main() { std::filesystem::path resourceDir = "assets/examples"; if (!std::filesystem::is_directory(resourceDir) && std::filesystem::is_directory("../.." / resourceDir)) resourceDir = "../.." / resourceDir; Nz::Renderer::Config rendererConfig; std::cout << "Run using Vulkan? (y/n)" << std::endl; if (std::getchar() == 'y') rendererConfig.preferredAPI = Nz::RenderAPI::Vulkan; else rendererConfig.preferredAPI = Nz::RenderAPI::OpenGL; Nz::Application app(rendererConfig); Nz::PluginLoader loader; Nz::Plugin assimp = loader.Load(); std::shared_ptr device = Nz::Graphics::Instance()->GetRenderDevice(); auto& ecs = app.AddComponent(); auto& world = ecs.AddWorld(); world.AddSystem(); Nz::Physics3DSystem& physSytem = world.AddSystem(); Nz::RenderSystem& renderSystem = world.AddSystem(); auto& windowing = app.AddComponent(); std::string windowTitle = "Skinning test"; Nz::Window& mainWindow = windowing.CreateWindow(Nz::VideoMode(1280, 720), windowTitle); auto& windowSwapchain = renderSystem.CreateSwapchain(mainWindow); physSytem.GetPhysWorld().SetGravity({ 0.f, -9.81f, 0.f }); Nz::TextureParams texParams; texParams.renderDevice = device; entt::handle playerEntity = world.CreateEntity(); entt::handle playerRotation = world.CreateEntity(); entt::handle playerCamera = world.CreateEntity(); { auto& playerNode = playerEntity.emplace(); playerNode.SetPosition(0.f, 1.8f, 1.f); auto& playerBody = playerEntity.emplace(&physSytem.GetPhysWorld()); playerBody.SetMass(42.f); playerBody.SetGeom(std::make_shared(Nz::Vector3f::Unit())); auto& playerRotNode = playerRotation.emplace(); playerRotNode.SetParent(playerNode); auto& cameraNode = playerCamera.emplace(); cameraNode.SetPosition(Nz::Vector3f::Up() * 2.f + Nz::Vector3f::Backward()); //cameraNode.SetParent(playerRotNode); auto& cameraComponent = playerCamera.emplace(&windowSwapchain); cameraComponent.UpdateZNear(0.2f); cameraComponent.UpdateZFar(10000.f); cameraComponent.UpdateRenderMask(1); cameraComponent.UpdateClearColor(Nz::Color(0.5f, 0.5f, 0.5f)); } Nz::MeshParams meshParams; meshParams.animated = true; meshParams.center = true; meshParams.vertexScale = Nz::Vector3f(0.1f, 0.1f, 0.1f); meshParams.vertexDeclaration = Nz::VertexDeclaration::Get(Nz::VertexLayout::XYZ_Normal_UV_Tangent_Skinning); std::shared_ptr bobMesh = Nz::Mesh::LoadFromFile(resourceDir / "character/Gangnam Style.fbx", meshParams); if (!bobMesh) { NazaraError("Failed to load bob mesh"); return __LINE__; } Nz::AnimationParams animParam; animParam.skeleton = bobMesh->GetSkeleton(); animParam.jointRotation = meshParams.vertexRotation; animParam.jointScale = meshParams.vertexScale; animParam.jointOffset = meshParams.vertexOffset; std::shared_ptr bobAnim = Nz::Animation::LoadFromFile(resourceDir / "character/Gangnam Style.fbx", animParam); if (!bobAnim) { NazaraError("Failed to load bob anim"); return __LINE__; } std::shared_ptr skeleton = std::make_shared(*bobMesh->GetSkeleton()); std::cout << "joint count: " << skeleton->GetJointCount() << std::endl; const Nz::Boxf& bobAABB = bobMesh->GetAABB(); std::shared_ptr bobGfxMesh = Nz::GraphicalMesh::BuildFromMesh(*bobMesh); //std::shared_ptr material = Nz::Graphics::Instance()->GetDefaultMaterials().basicTransparent; std::shared_ptr bobModel = std::make_shared(std::move(bobGfxMesh), bobAABB); std::vector> materials(bobMesh->GetMaterialCount()); std::bitset<5> alphaMaterials("01010"); for (std::size_t i = 0; i < bobMesh->GetMaterialCount(); ++i) { const Nz::ParameterList& materialData = bobMesh->GetMaterialData(i); std::string matPath = materialData.GetStringParameter(Nz::MaterialData::BaseColorTexturePath).GetValueOr(""); if (!matPath.empty()) { Nz::MaterialInstanceParams params; params.lightingType = Nz::MaterialLightingType::Phong; if (alphaMaterials.test(i)) params.custom.SetParameter("EnableAlphaBlending", true); materials[i] = Nz::MaterialInstance::LoadFromFile(matPath, params); } else materials[i] = Nz::Graphics::Instance()->GetDefaultMaterials().basicDefault; } for (std::size_t i = 0; i < bobMesh->GetSubMeshCount(); ++i) { std::size_t matIndex = bobMesh->GetSubMesh(i)->GetMaterialIndex(); if (materials[matIndex]) bobModel->SetMaterial(i, materials[matIndex]); } /*for (std::size_t y = 0; y < 10; ++y) { for (std::size_t x = 0; x < 10; ++x) { entt::entity bobEntity = registry.create(); auto& bobNode = registry.emplace(bobEntity); bobNode.SetPosition(Nz::Vector3f(x - 5.f, 0.f, -float(y))); //bobNode.SetRotation(Nz::EulerAnglesf(-90.f, -90.f, 0.f)); //bobNode.SetScale(1.f / 40.f * 0.5f); auto& bobGfx = registry.emplace(bobEntity); bobGfx.AttachRenderable(bobModel); } }*/ entt::handle bobEntity = world.CreateEntity(); entt::handle lightEntity1 = world.CreateEntity(); { auto& lightNode = lightEntity1.emplace(); lightNode.SetPosition(Nz::Vector3f::Up() * 3.f + Nz::Vector3f::Backward() * 1.f); lightNode.SetRotation(Nz::EulerAnglesf(-70.f, 0.f, 0.f)); auto& cameraLight = lightEntity1.emplace(); auto& spotLight = cameraLight.AddLight(); spotLight.UpdateColor(Nz::Color::Red()); spotLight.UpdateInnerAngle(Nz::DegreeAnglef(15.f)); spotLight.UpdateOuterAngle(Nz::DegreeAnglef(20.f)); spotLight.EnableShadowCasting(true); } entt::handle lightEntity2 = world.CreateEntity(); { auto& lightNode = lightEntity2.emplace(); lightNode.SetPosition(Nz::Vector3f::Up() * 3.5f + Nz::Vector3f::Right() * 1.5f); lightNode.SetRotation(Nz::EulerAnglesf(-70.f, 90.f, 0.f)); auto& cameraLight = lightEntity2.emplace(); auto& spotLight = cameraLight.AddLight(); spotLight.UpdateColor(Nz::Color::Green()); spotLight.EnableShadowCasting(true); spotLight.UpdateShadowMapSize(1024); } entt::handle lightEntity3 = world.CreateEntity(); { auto& bobNode = bobEntity.emplace(); //bobNode.SetRotation(Nz::EulerAnglesf(-90.f, -90.f, 0.f)); //bobNode.SetScale(1.f / 40.f * 0.5f); //bobNode.SetPosition(Nz::Vector3f(0.f, -1.f, 0.f)); auto& bobGfx = bobEntity.emplace(); bobGfx.AttachRenderable(bobModel); auto& sharedSkeleton = bobEntity.emplace(skeleton); entt::handle sphereEntity = world.CreateEntity(); { std::shared_ptr sphereMesh = std::make_shared(); sphereMesh->CreateStatic(); sphereMesh->BuildSubMesh(Nz::Primitive::UVSphere(1.f, 50, 50)); sphereMesh->SetMaterialCount(1); sphereMesh->GenerateNormalsAndTangents(); std::shared_ptr gfxMesh = Nz::GraphicalMesh::BuildFromMesh(*sphereMesh); // Textures Nz::TextureParams srgbTexParams = texParams; srgbTexParams.loadFormat = Nz::PixelFormat::RGBA8_SRGB; std::shared_ptr sphereMat = Nz::Graphics::Instance()->GetDefaultMaterials().phongMaterial->Instantiate(); sphereMat->SetTextureProperty("BaseColorMap", Nz::Texture::LoadFromFile(resourceDir / "Rusty/rustediron2_basecolor.png", srgbTexParams)); std::shared_ptr sphereModel = std::make_shared(std::move(gfxMesh), sphereMesh->GetAABB()); for (std::size_t i = 0; i < sphereModel->GetSubMeshCount(); ++i) sphereModel->SetMaterial(i, sphereMat); auto& sphereNode = sphereEntity.emplace(); sphereNode.SetScale(0.1f); sphereNode.SetInheritScale(false); sphereNode.SetParentJoint(bobEntity, "RightHand"); auto& sphereBody = sphereEntity.emplace(&physSytem.GetPhysWorld()); sphereBody.SetGeom(std::make_shared(0.1f)); auto& sphereGfx = sphereEntity.emplace(); sphereGfx.AttachRenderable(sphereModel); } entt::handle smallBobEntity = world.CreateEntity(); auto& smallBobNode = smallBobEntity.emplace(); smallBobNode.SetParentJoint(bobEntity, "LeftHand"); auto& smallBobGfx = smallBobEntity.emplace(); smallBobGfx.AttachRenderable(bobModel); smallBobEntity.emplace(skeleton); { auto& lightNode = lightEntity3.emplace(); //lightNode.SetPosition(Nz::Vector3f::Up() * 4.f); lightNode.SetPosition(Nz::Vector3f::Down() * 7.5f + Nz::Vector3f::Backward() * 2.5f); //lightNode.SetRotation(Nz::EulerAnglesf(-45.f, 180.f, 0.f)); lightNode.SetParentJoint(bobEntity, "Spine2"); auto& cameraLight = lightEntity3.emplace(); auto& pointLight = cameraLight.AddLight(); pointLight.UpdateColor(Nz::Color::Blue()); pointLight.UpdateRadius(3.f); pointLight.EnableShadowCasting(true); pointLight.UpdateShadowMapSize(2048); } } std::shared_ptr textMat = Nz::Graphics::Instance()->GetDefaultMaterials().phongMaterial->Instantiate(); for (const char* pass : { "DepthPass", "ShadowPass", "ForwardPass" }) { textMat->UpdatePassStates(pass, [](Nz::RenderStates& renderStates) { renderStates.faceCulling = Nz::FaceCulling::None; return true; }); } textMat->UpdatePassStates("ForwardPass", [](Nz::RenderStates& renderStates) { renderStates.depthWrite = false; renderStates.blending = true; renderStates.blend.modeColor = Nz::BlendEquation::Add; renderStates.blend.modeAlpha = Nz::BlendEquation::Add; renderStates.blend.srcColor = Nz::BlendFunc::SrcAlpha; renderStates.blend.dstColor = Nz::BlendFunc::InvSrcAlpha; renderStates.blend.srcAlpha = Nz::BlendFunc::One; renderStates.blend.dstAlpha = Nz::BlendFunc::One; return true; }); textMat->SetValueProperty("AlphaTest", true); std::shared_ptr sprite = std::make_shared(textMat); sprite->UpdateRenderLayer(1); sprite->Update(Nz::SimpleTextDrawer::Draw("Shadow-mapping !", 72), 0.002f); entt::handle textEntity = world.CreateEntity(); { auto& entityGfx = textEntity.emplace(); entityGfx.AttachRenderable(sprite, 1); auto& entityNode = textEntity.emplace(); entityNode.SetPosition(Nz::Vector3f::Up() * 0.5f + Nz::Vector3f::Backward() * 0.66f + Nz::Vector3f::Left() * 0.5f); entityNode.SetRotation(Nz::EulerAnglesf(-45.f, 0.f, 0.f)); } entt::handle planeEntity = world.CreateEntity(); Nz::Boxf floorBox; { Nz::MeshParams meshPrimitiveParams; meshPrimitiveParams.vertexDeclaration = Nz::VertexDeclaration::Get(Nz::VertexLayout::XYZ_Normal_UV); Nz::Vector2f planeSize(25.f, 25.f); Nz::Mesh planeMesh; planeMesh.CreateStatic(); planeMesh.BuildSubMesh(Nz::Primitive::Plane(planeSize, Nz::Vector2ui(0u), Nz::Matrix4f::Identity(), Nz::Rectf(0.f, 0.f, 10.f, 10.f)), meshPrimitiveParams); planeMesh.SetMaterialCount(1); std::shared_ptr planeMeshGfx = Nz::GraphicalMesh::BuildFromMesh(planeMesh); Nz::TextureSamplerInfo planeSampler; planeSampler.anisotropyLevel = 16; planeSampler.wrapModeU = Nz::SamplerWrap::Repeat; planeSampler.wrapModeV = Nz::SamplerWrap::Repeat; std::shared_ptr planeMat = Nz::Graphics::Instance()->GetDefaultMaterials().phongMaterial->Instantiate(); planeMat->SetTextureProperty("BaseColorMap", Nz::Texture::LoadFromFile(resourceDir / "dev_grey.png", texParams), planeSampler); floorBox = planeMesh.GetAABB(); std::shared_ptr planeModel = std::make_shared(std::move(planeMeshGfx), planeMesh.GetAABB()); planeModel->SetMaterial(0, planeMat); auto& planeGfx = planeEntity.emplace(); planeGfx.AttachRenderable(planeModel); planeEntity.emplace(); auto& planeBody = planeEntity.emplace(&physSytem.GetPhysWorld()); planeBody.SetGeom(std::make_shared(Nz::Vector3f(planeSize.x, 0.5f, planeSize.y), Nz::Vector3f(0.f, -0.25f, 0.f))); Nz::Mesh boxMesh; boxMesh.CreateStatic(); boxMesh.BuildSubMesh(Nz::Primitive::Box(Nz::Vector3f(0.5f, 0.5f, 0.5f)), meshPrimitiveParams); boxMesh.SetMaterialCount(1); std::shared_ptr boxMeshGfx = Nz::GraphicalMesh::BuildFromMesh(boxMesh); std::shared_ptr boxModel = std::make_shared(std::move(boxMeshGfx), boxMesh.GetAABB()); boxModel->SetMaterial(0, planeMat); entt::handle boxEntity = world.CreateEntity(); boxEntity.emplace().SetPosition(Nz::Vector3f(0.f, 0.25f, -0.5f)); boxEntity.emplace().AttachRenderable(boxModel); } Nz::MillisecondClock fpsClock, updateClock; float incr = 0.f; unsigned int currentFrame = 0; unsigned int nextFrame = 1; Nz::EulerAnglesf camAngles = Nz::EulerAnglesf(-30.f, 0.f, 0.f); Nz::UInt64 fps = 0; bool paused = false; Nz::WindowEventHandler& eventHandler = mainWindow.GetEventHandler(); eventHandler.OnKeyPressed.Connect([&](const Nz::WindowEventHandler*, const Nz::WindowEvent::KeyEvent& event) { if (event.virtualKey == Nz::Keyboard::VKey::P) paused = !paused; }); eventHandler.OnMouseMoved.Connect([&](const Nz::WindowEventHandler*, const Nz::WindowEvent::MouseMoveEvent& event) { // Gestion de la caméra free-fly (Rotation) float sensitivity = 0.3f; // Sensibilité de la souris // On modifie l'angle de la caméra grâce au déplacement relatif sur X de la souris camAngles.yaw = camAngles.yaw - event.deltaX * sensitivity; camAngles.yaw.Normalize(); // Idem, mais pour éviter les problèmes de calcul de la matrice de vue, on restreint les angles camAngles.pitch = Nz::Clamp(camAngles.pitch - event.deltaY * sensitivity, -89.f, 89.f); /*auto& playerRotNode = registry.get(playerRotation); playerRotNode.SetRotation(camAngles);*/ auto& playerRotNode = playerCamera.get(); playerRotNode.SetRotation(camAngles); }); app.AddUpdater([&](Nz::Time elapsedTime) { if (std::optional deltaTime = updateClock.RestartIfOver(Nz::Time::TickDuration(60))) { float updateTime = deltaTime->AsSeconds(); /*auto& playerBody = registry.get(playerEntity); float mass = playerBody.GetMass(); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Space)) playerBody.AddForce(Nz::Vector3f(0.f, mass * 50.f, 0.f)); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Up) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Z)) playerBody.AddForce(Nz::Vector3f::Forward() * 25.f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Down) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::S)) playerBody.AddForce(Nz::Vector3f::Backward() * 25.f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Left) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Q)) playerBody.AddForce(Nz::Vector3f::Left() * 25.f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Right) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::D)) playerBody.AddForce(Nz::Vector3f::Right() * 25.f * mass, Nz::CoordSys::Local);*/ float cameraSpeed = 2.f; auto& cameraNode = playerCamera.get(); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Space)) cameraNode.Move(Nz::Vector3f::Up() * cameraSpeed * updateTime, Nz::CoordSys::Global); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Up) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Z)) cameraNode.Move(Nz::Vector3f::Forward() * cameraSpeed * updateTime, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Down) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::S)) cameraNode.Move(Nz::Vector3f::Backward() * cameraSpeed * updateTime, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Left) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Q)) cameraNode.Move(Nz::Vector3f::Left() * cameraSpeed * updateTime, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Right) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::D)) cameraNode.Move(Nz::Vector3f::Right() * cameraSpeed * updateTime, Nz::CoordSys::Local); if (!paused) { incr += updateTime * bobAnim->GetSequence(0)->frameRate * 1.5f; while (incr >= 1.f) { incr -= 1.f; currentFrame = nextFrame; nextFrame++; if (nextFrame >= bobAnim->GetFrameCount()) nextFrame = 0; } std::cout << currentFrame << std::endl; bobAnim->AnimateSkeleton(skeleton.get(), currentFrame, nextFrame, incr); } //for (std::size_t i = 0; i < skeleton.GetJointCount(); ++i) // matrices[i] = skeleton.GetJoint(i)->GetSkinningMatrix(); //renderBuffer->Fill(skeletalBufferMem.data(), 0, skeletalBufferMem.size()); /*auto spaceshipView = registry.view(); for (auto&& [entity, node, _] : spaceshipView.each()) { if (entity == playerEntity) continue; Nz::Vector3f spaceshipPos = node.GetPosition(Nz::CoordSys::Global); if (spaceshipPos.GetSquaredLength() > Nz::IntegralPow(20.f, 2)) registry.destroy(entity); } Nz::RigidBody3DComponent& playerShipBody = registry.get(playerEntity); Nz::Quaternionf currentRotation = playerShipBody.GetRotation(); Nz::Vector3f desiredHeading = registry.get(headingEntity).GetForward(); Nz::Vector3f currentHeading = currentRotation * Nz::Vector3f::Forward(); Nz::Vector3f headingError = currentHeading.CrossProduct(desiredHeading); Nz::Vector3f desiredUp = registry.get(headingEntity).GetUp(); Nz::Vector3f currentUp = currentRotation * Nz::Vector3f::Up(); Nz::Vector3f upError = currentUp.CrossProduct(desiredUp); playerShipBody.AddTorque(headingController.Update(headingError, elapsedTime) * 10.f); playerShipBody.AddTorque(upController.Update(upError, elapsedTime) * 10.f); float mass = playerShipBody.GetMass(); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Up) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Z)) playerShipBody.AddForce(Nz::Vector3f::Forward() * 2.5f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Down) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::S)) playerShipBody.AddForce(Nz::Vector3f::Backward() * 2.5f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Left) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Q)) playerShipBody.AddForce(Nz::Vector3f::Left() * 2.5f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::Right) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::D)) playerShipBody.AddForce(Nz::Vector3f::Right() * 2.5f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::LShift) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::RShift)) playerShipBody.AddForce(Nz::Vector3f::Up() * 3.f * mass, Nz::CoordSys::Local); if (Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::LControl) || Nz::Keyboard::IsKeyPressed(Nz::Keyboard::VKey::RControl)) playerShipBody.AddForce(Nz::Vector3f::Down() * 3.f * mass, Nz::CoordSys::Local);*/ } Nz::DebugDrawer& debugDrawer = renderSystem.GetFramePipeline().GetDebugDrawer(); auto& lightNode = lightEntity3.get(); //debugDrawer.DrawLine(lightNode.GetPosition(Nz::CoordSys::Global), lightNode.GetForward() * 10.f, Nz::Color::Blue()); Nz::Vector3f pos = lightNode.GetPosition(Nz::CoordSys::Global); debugDrawer.DrawBox(Nz::Boxf(pos.x - 0.05f, pos.y - 0.05f, pos.z - 0.05f, 0.1f, 0.1f, 0.1f), Nz::Color::Blue()); /*debugDrawer.DrawBox(floorBox, Nz::Color::Red); Nz::Boxf intersection; if (floorBox.Intersect(test, &intersection)) debugDrawer.DrawBox(intersection, Nz::Color::Green());*/ fps++; if (fpsClock.RestartIfOver(Nz::Time::Second())) { mainWindow.SetTitle(windowTitle + " - " + Nz::NumberToString(fps) + " FPS" + " - " + Nz::NumberToString(world.GetRegistry().alive()) + " entities"); fps = 0; } }); return app.Run(); return EXIT_SUCCESS; }