mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-10 22:23:35 +00:00
34 lines
1.5 KiB
C++
34 lines
1.5 KiB
C++
#include <ScopCore.h>
|
|
#include <ScopGraphics.h>
|
|
|
|
#include <Splash.h>
|
|
#include <Utils.h>
|
|
#include <World.h>
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
Scop::ScopEngine engine(ac, av, "Vox", 0, 0, GetExecutablePath().parent_path().parent_path() / "ScopEngine/Assets");
|
|
Scop::Scene& splash_scene = SplashScreen();
|
|
std::shared_ptr<Scop::Shader> shader = Scop::LoadShaderFromFile(GetExecutablePath().parent_path().parent_path() / "Resources/Shaders/Build/Fragment.spv", Scop::ShaderType::Fragment, Scop::DefaultShaderLayout);
|
|
std::shared_ptr<Scop::Shader> post_process_shader = Scop::LoadShaderFromFile(GetExecutablePath().parent_path().parent_path() / "Resources/Shaders/Build/PostProcess.spv", Scop::ShaderType::Fragment, Scop::PostProcessShaderLayout);
|
|
|
|
Scop::SceneDescriptor main_scene_desc;
|
|
main_scene_desc.fragment_shader = shader;
|
|
main_scene_desc.post_process_shader = post_process_shader;
|
|
main_scene_desc.post_process_data_size = sizeof(PostProcessData);
|
|
main_scene_desc.render_post_process_enabled = true;
|
|
main_scene_desc.render_2D_enabled = true;
|
|
main_scene_desc.camera = std::make_shared<Scop::FirstPerson3D>(Scop::Vec3f{ 0.0f, 100.0f, 0.0f }, 80.f, 1.0f);
|
|
main_scene_desc.culling = Scop::CullMode::Front;
|
|
Scop::Scene& main_scene = splash_scene.AddChildScene("main", std::move(main_scene_desc));
|
|
|
|
Scop::Vec2ui32 skybox_size;
|
|
main_scene.AddSkybox(std::make_shared<Scop::CubeTexture>(Scop::LoadBMPFile(GetResourcesPath() / "skybox.bmp", skybox_size), skybox_size.x, skybox_size.y));
|
|
|
|
{
|
|
World world(main_scene);
|
|
engine.Run();
|
|
}
|
|
return 0;
|
|
}
|