├── .gitattributes ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── .gitmodules ├── .luacheckrc ├── .luarc.json ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── dep ├── CMakeLists.txt ├── FastNoiseC │ ├── FastNoise.c │ ├── FastNoise.h │ ├── FastNoiseArrays.h │ ├── README.md │ └── rnd.h ├── argh.h ├── backward │ ├── backward.cpp │ └── backward.hpp ├── cpptoml.h ├── glad │ ├── KHR.h │ ├── glad.c │ └── glad.h ├── glm │ ├── INSTALL.vcxproj │ ├── INSTALL.vcxproj.filters │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── glm_dummy.vcxproj │ ├── glm_dummy.vcxproj.filters │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── miniaudio │ ├── miniaudio.c │ └── miniaudio.h ├── nanovg │ ├── fontstash.h │ ├── nanovg.c │ ├── nanovg.h │ ├── nanovg_ext.cpp │ ├── nanovg_gl.h │ └── nanovg_gl_utils.h ├── rang.hpp ├── sol │ ├── config.hpp │ └── sol.hpp ├── stb │ ├── stb_image.h │ ├── stb_image_write.h │ ├── stb_impl.cpp │ └── stb_truetype.h ├── tiny_gltf │ ├── allocators.h │ ├── cursorstreamwrapper.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── clzll.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ ├── tiny_gltf.cpp │ ├── tiny_gltf.h │ ├── tiny_gltf_r.h │ └── writer.h └── utf8 │ ├── utf8.h │ └── utf8 │ ├── checked.h │ ├── core.h │ ├── cpp11.h │ ├── cpp17.h │ └── unchecked.h ├── imgui.ini ├── launch.vs.json ├── ospm_src ├── Fetch.cpp ├── Fetch.h ├── Help.h ├── Main.cpp ├── PkgInfo.h ├── define.h └── dep │ ├── httplib.h │ ├── miniz.c │ └── miniz.h ├── pkg └── PackageMetadata.h ├── res ├── .luadef │ ├── config.json │ ├── definitions │ │ ├── assets.lua │ │ ├── bullet.lua │ │ ├── debug_drawer.lua │ │ ├── editor.lua │ │ ├── flight_input.lua │ │ ├── game_database.lua │ │ ├── glm.lua │ │ ├── globals.lua │ │ ├── gui.lua │ │ ├── imgui.lua │ │ ├── input.lua │ │ ├── logger.lua │ │ ├── model.lua │ │ ├── nano_vg.lua │ │ ├── noise.lua │ │ ├── orbit.lua │ │ ├── plumbing.lua │ │ ├── renderer.lua │ │ ├── scene.lua │ │ ├── toml.lua │ │ ├── universe.lua │ │ └── vehicle.lua │ ├── plugin.lua │ └── script_types │ │ ├── editor_script.lua │ │ ├── entity_script.lua │ │ ├── interface_script.lua │ │ ├── machine_script.lua │ │ ├── scene_script.lua │ │ └── symmetry_script.lua ├── .luarc.json ├── core │ ├── black_tex.png │ ├── categories │ │ ├── all.png │ │ ├── all.svg │ │ ├── all.toml │ │ ├── command.png │ │ ├── command.svg │ │ ├── command.toml │ │ ├── engines.png │ │ ├── engines.svg │ │ ├── engines.toml │ │ ├── rect869.png │ │ └── trash.png │ ├── default_gas.toml │ ├── editor │ │ ├── attach.png │ │ ├── duct.png │ │ ├── electric.png │ │ ├── floppy.png │ │ ├── launch.png │ │ ├── load.png │ │ ├── new.png │ │ ├── quit.png │ │ ├── save.png │ │ ├── transform.png │ │ └── wire.png │ ├── entities │ │ ├── base.lua │ │ ├── base_finder.lua │ │ ├── building │ │ │ ├── building.lua │ │ │ └── c_launchpad_manager.lua │ │ ├── g_launchpad_finder.lua │ │ ├── utils │ │ │ └── static.lua │ │ └── vehicle │ │ │ ├── c_interactable_vehicle.lua │ │ │ ├── c_veh_context_menus.lua │ │ │ ├── c_vehicle_debug.lua │ │ │ └── vehicle.lua │ ├── events.lua │ ├── fonts │ │ ├── FONTS │ │ ├── ProggySquare.fnt │ │ ├── ProggySquare.png │ │ ├── ProggyTiny.fnt │ │ ├── ProggyTiny.png │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ ├── fira_code_medium.fnt │ │ ├── fira_code_medium.png │ │ ├── fira_code_medium_settings.bmfc │ │ └── folder.toml │ ├── gui │ │ ├── close.png │ │ ├── minimize.png │ │ └── pin.png │ ├── input │ │ └── rocket.toml │ ├── interfaces │ │ ├── activable.lua │ │ ├── engine.lua │ │ └── throttleable.lua │ ├── links │ │ └── simple_link.lua │ ├── locale.lua │ ├── machines │ │ ├── capsule │ │ │ └── capsule.lua │ │ ├── decoupler │ │ │ └── decoupler.lua │ │ ├── engine.lua │ │ ├── engine │ │ │ ├── l_chamber.lua │ │ │ ├── l_engine.lua │ │ │ ├── l_nozzle.lua │ │ │ ├── l_plumbing.lua │ │ │ └── machine.lua │ │ ├── fuel_tank │ │ │ ├── c_fluid_container.lua │ │ │ ├── c_plumbing.lua │ │ │ └── machine.lua │ │ ├── icons │ │ │ ├── clip_back.png │ │ │ ├── clip_front.png │ │ │ ├── decoupler.png │ │ │ ├── default_icon.png │ │ │ ├── engine.png │ │ │ ├── fluid_tank.png │ │ │ ├── folder.toml │ │ │ └── valve.png │ │ ├── junction │ │ │ └── machine.lua │ │ ├── pumps │ │ │ └── electric_pump.lua │ │ ├── rcs_controller.lua │ │ ├── stager │ │ │ ├── gui.lua │ │ │ └── machine.lua │ │ └── valves │ │ │ ├── check.lua │ │ │ └── shutoff.lua │ ├── mat_default.toml │ ├── mat_gizmo.toml │ ├── mat_hover.toml │ ├── mat_pbr.toml │ ├── materials │ │ ├── carbon_dioxide.toml │ │ ├── helium.toml │ │ ├── hydrogen.toml │ │ ├── methane.toml │ │ ├── oxygen.toml │ │ ├── reactions │ │ │ ├── hydrogen_combustion.toml │ │ │ └── methane_combustion.toml │ │ └── water.toml │ ├── meshes │ │ ├── editor_attachment.blend │ │ ├── editor_attachment.glb │ │ └── editor_attachment.toml │ ├── normal_tex.png │ ├── notex.png │ ├── package.lua │ ├── package.toml │ ├── plumbing_machines │ │ ├── electric_pump.toml │ │ ├── junction_3.png │ │ ├── junction_3.toml │ │ ├── junction_4.png │ │ ├── junction_4.toml │ │ ├── oneway.png │ │ ├── oneway.toml │ │ ├── pump.png │ │ ├── shutoff.png │ │ └── shutoff.toml │ ├── scenes │ │ ├── camera_util.lua │ │ ├── common_ui.lua │ │ ├── editor │ │ │ ├── editor.lua │ │ │ ├── symmetry │ │ │ │ ├── c_plumbing.lua │ │ │ │ ├── c_wiring.lua │ │ │ │ ├── radial_piece.lua │ │ │ │ ├── radial_piece.png │ │ │ │ └── radial_piece.toml │ │ │ └── symmetry_debug.lua │ │ ├── esc_menu.lua │ │ ├── flight │ │ │ ├── flight_camera.lua │ │ │ └── scene.lua │ │ ├── main_menu │ │ │ └── scene.lua │ │ ├── map │ │ │ ├── anim.lua │ │ │ ├── map_camera.lua │ │ │ ├── map_ui.lua │ │ │ ├── orbit_drawer.lua │ │ │ └── scene.lua │ │ ├── new_save_scene.toml │ │ ├── orbit_camera.lua │ │ └── vehicle_spawner.lua │ ├── shaders │ │ ├── atmosphere │ │ │ ├── atmo.fs │ │ │ ├── atmo.fsi │ │ │ ├── atmo.vs │ │ │ ├── atmo_util.fsi │ │ │ ├── highend │ │ │ │ ├── atmo.fs │ │ │ │ └── atmo.fsi │ │ │ └── lowend │ │ │ │ ├── atmo.fs │ │ │ │ └── atmo.fsi │ │ ├── debug.fs │ │ ├── debug.vs │ │ ├── font.fs │ │ ├── font.vs │ │ ├── gizmo.fs │ │ ├── gizmo.vs │ │ ├── hdr.fs │ │ ├── hdr.vs │ │ ├── hover.fs │ │ ├── hover.vs │ │ ├── ibl │ │ │ ├── brdf.png │ │ │ ├── irradiance.fs │ │ │ ├── irradiance.vs │ │ │ ├── specular.fs │ │ │ └── specular.vs │ │ ├── light │ │ │ ├── debug_gbuffer.fs │ │ │ ├── debug_gbuffer.vs │ │ │ ├── env_map.fs │ │ │ ├── env_map.vs │ │ │ ├── part_icon.fs │ │ │ ├── part_icon.vs │ │ │ ├── pbr.fsi │ │ │ ├── point_fullscreen.fs │ │ │ ├── point_fullscreen.vs │ │ │ ├── point_sphere.fs │ │ │ ├── point_sphere.vs │ │ │ ├── sunlight.fs │ │ │ └── sunlight.vs │ │ ├── lines │ │ │ ├── lines.fs │ │ │ └── lines.vs │ │ ├── pbr.fs │ │ ├── pbr.vs │ │ ├── planet │ │ │ ├── tile.fs │ │ │ ├── tile.vs │ │ │ ├── water.fs │ │ │ └── water.vs │ │ ├── screen_door.fsi │ │ ├── shadow.fs │ │ ├── shadow.vs │ │ ├── simple.fs │ │ ├── simple.vs │ │ ├── simple_sprite.fs │ │ ├── simple_sprite.vs │ │ ├── skybox.fs │ │ ├── skybox.vs │ │ └── vehicle │ │ │ ├── simple_part.fs │ │ │ └── simple_part.vs │ ├── test.lua │ ├── util │ │ ├── c_events.lua │ │ └── g_raycast.lua │ └── white_tex.png └── navball │ ├── CREDITS.txt │ ├── antinormal.png │ ├── frame.png │ ├── navball.fs │ ├── navball.png │ ├── navball.toml │ ├── navball.vs │ ├── normal.png │ ├── package.toml │ ├── prograde.png │ ├── radialin.png │ ├── radialout.png │ ├── rect4301.png │ └── retrograde.png ├── src ├── Main.cpp ├── OSP.cpp ├── OSP.h ├── assets │ ├── Asset.h │ ├── AssetManager.cpp │ ├── AssetManager.h │ ├── AudioClip.cpp │ ├── AudioClip.h │ ├── BitmapFont.cpp │ ├── BitmapFont.h │ ├── BuildingPrototype.cpp │ ├── BuildingPrototype.h │ ├── Config.cpp │ ├── Config.h │ ├── Cubemap.cpp │ ├── Cubemap.h │ ├── Image.cpp │ ├── Image.h │ ├── Material.cpp │ ├── Material.h │ ├── Model.cpp │ ├── Model.h │ ├── PartPrototype.cpp │ ├── PartPrototype.h │ ├── PhysicalMaterial.cpp │ ├── PhysicalMaterial.h │ ├── Shader.cpp │ └── Shader.h ├── audio │ ├── AudioEngine.cpp │ ├── AudioEngine.h │ ├── AudioSource.cpp │ ├── AudioSource.h │ └── SampleSource.h ├── game │ ├── GameState.cpp │ ├── GameState.h │ ├── GameStateDebug.cpp │ ├── GameStateDebug.h │ ├── database │ │ ├── GameDatabase.cpp │ │ ├── GameDatabase.h │ │ ├── SaveDatabase.cpp │ │ └── SaveDatabase.h │ ├── input │ │ ├── JoystickDebug.cpp │ │ └── JoystickDebug.h │ ├── plumbing │ │ ├── PlumbingEditor.cpp │ │ ├── PlumbingEditor.h │ │ ├── PlumbingEditorWidget.cpp │ │ └── PlumbingEditorWidget.h │ ├── scenes │ │ ├── LuaScene.cpp │ │ ├── LuaScene.h │ │ ├── Scene.h │ │ ├── editor │ │ │ ├── EditorCamera.cpp │ │ │ ├── EditorCamera.h │ │ │ ├── EditorScene.cpp │ │ │ ├── EditorScene.h │ │ │ ├── EditorVehicle.cpp │ │ │ ├── EditorVehicle.h │ │ │ ├── EditorVehicleInterface.cpp │ │ │ ├── EditorVehicleInterface.h │ │ │ ├── gui │ │ │ │ ├── EditorGUI.cpp │ │ │ │ ├── EditorGUI.h │ │ │ │ ├── EditorPanel.h │ │ │ │ ├── EditorPartList.cpp │ │ │ │ ├── EditorPartList.h │ │ │ │ ├── EditorTrashcan.cpp │ │ │ │ ├── EditorTrashcan.h │ │ │ │ ├── GroupManager.cpp │ │ │ │ ├── GroupManager.h │ │ │ │ ├── ModifyPanel.cpp │ │ │ │ ├── ModifyPanel.h │ │ │ │ ├── PartIconRenderer.cpp │ │ │ │ ├── PartIconRenderer.h │ │ │ │ ├── PlumbingPanel.cpp │ │ │ │ ├── PlumbingPanel.h │ │ │ │ ├── WiringPanel.cpp │ │ │ │ └── WiringPanel.h │ │ │ └── interfaces │ │ │ │ ├── AttachInterface.cpp │ │ │ │ ├── AttachInterface.h │ │ │ │ ├── BaseInterface.h │ │ │ │ ├── ModifyInterface.cpp │ │ │ │ ├── ModifyInterface.h │ │ │ │ ├── PlumbingInterface.cpp │ │ │ │ ├── PlumbingInterface.h │ │ │ │ ├── WireInterface.cpp │ │ │ │ └── WireInterface.h │ │ └── flight │ │ │ ├── InputContext.cpp │ │ │ └── InputContext.h │ └── ui │ │ ├── Navball.cpp │ │ └── Navball.h ├── gui │ ├── GUICanvas.cpp │ ├── GUICanvas.h │ ├── GUIInput.cpp │ ├── GUIInput.h │ ├── GUILayout.cpp │ ├── GUILayout.h │ ├── GUIScreen.cpp │ ├── GUIScreen.h │ ├── GUIScrollbar.h │ ├── GUISkin.h │ ├── GUIWidget.h │ ├── GUIWindow.cpp │ ├── GUIWindow.h │ ├── GUIWindowManager.cpp │ ├── GUIWindowManager.h │ ├── layouts │ │ ├── GUIHorizontalLayout.cpp │ │ ├── GUIHorizontalLayout.h │ │ ├── GUILinearLayout.cpp │ │ ├── GUILinearLayout.h │ │ ├── GUIListLayout.cpp │ │ ├── GUIListLayout.h │ │ ├── GUISingleLayout.cpp │ │ ├── GUISingleLayout.h │ │ ├── GUIVerticalLayout.cpp │ │ └── GUIVerticalLayout.h │ ├── skins │ │ ├── SimpleSkin.cpp │ │ └── SimpleSkin.h │ └── widgets │ │ ├── GUIBaseButton.cpp │ │ ├── GUIBaseButton.h │ │ ├── GUIDropDown.cpp │ │ ├── GUIDropDown.h │ │ ├── GUIIconTextButton.cpp │ │ ├── GUIIconTextButton.h │ │ ├── GUIImageButton.cpp │ │ ├── GUIImageButton.h │ │ ├── GUILabel.cpp │ │ ├── GUILabel.h │ │ ├── GUITextButton.cpp │ │ ├── GUITextButton.h │ │ ├── GUITextField.cpp │ │ └── GUITextField.h ├── lua │ ├── BulletLuaData.h │ ├── LuaCore.cpp │ ├── LuaCore.h │ ├── LuaLib.h │ └── libs │ │ ├── LuaAssets.cpp │ │ ├── LuaAssets.h │ │ ├── LuaBullet.cpp │ │ ├── LuaBullet.h │ │ ├── LuaDebugDrawer.cpp │ │ ├── LuaDebugDrawer.h │ │ ├── LuaEditor.cpp │ │ ├── LuaEditor.h │ │ ├── LuaEvents.cpp │ │ ├── LuaEvents.h │ │ ├── LuaFlightInput.cpp │ │ ├── LuaFlightInput.h │ │ ├── LuaGUI.cpp │ │ ├── LuaGUI.h │ │ ├── LuaGameDatabase.cpp │ │ ├── LuaGameDatabase.h │ │ ├── LuaGlm.cpp │ │ ├── LuaGlm.h │ │ ├── LuaImGUI.cpp │ │ ├── LuaImGUI.h │ │ ├── LuaImage.cpp │ │ ├── LuaImage.h │ │ ├── LuaInput.cpp │ │ ├── LuaInput.h │ │ ├── LuaLogger.cpp │ │ ├── LuaLogger.h │ │ ├── LuaModel.cpp │ │ ├── LuaModel.h │ │ ├── LuaNanoVG.cpp │ │ ├── LuaNanoVG.h │ │ ├── LuaNoise.cpp │ │ ├── LuaNoise.h │ │ ├── LuaOrbit.cpp │ │ ├── LuaOrbit.h │ │ ├── LuaPlumbing.cpp │ │ ├── LuaPlumbing.h │ │ ├── LuaRenderer.cpp │ │ ├── LuaRenderer.h │ │ ├── LuaSceneLib.cpp │ │ ├── LuaSceneLib.h │ │ ├── LuaToml.cpp │ │ ├── LuaToml.h │ │ ├── LuaUniverse.cpp │ │ ├── LuaUniverse.h │ │ ├── LuaVehicle.cpp │ │ └── LuaVehicle.h ├── physics │ ├── RigidBodyUserData.h │ ├── debug │ │ └── BulletDebugDrawer.h │ ├── glm │ │ └── BulletGlmCompat.h │ └── ground │ │ ├── GroundShape.cpp │ │ ├── GroundShape.h │ │ ├── GroundShapeServer.cpp │ │ └── GroundShapeServer.h ├── planet_mesher │ ├── mesher │ │ ├── PlanetTile.cpp │ │ ├── PlanetTile.h │ │ ├── PlanetTilePath.cpp │ │ ├── PlanetTilePath.h │ │ ├── PlanetTileServer.cpp │ │ └── PlanetTileServer.h │ ├── quadtree │ │ ├── QuadTreeDefines.h │ │ ├── QuadTreeNode.cpp │ │ ├── QuadTreeNode.h │ │ ├── QuadTreePlanet.cpp │ │ └── QuadTreePlanet.h │ └── renderer │ │ ├── PlanetRenderer.cpp │ │ └── PlanetRenderer.h ├── renderer │ ├── Drawable.h │ ├── LuaDrawable.cpp │ ├── LuaDrawable.h │ ├── PlanetaryBodyRenderer.cpp │ ├── PlanetaryBodyRenderer.h │ ├── Renderer.cpp │ ├── Renderer.h │ ├── RendererQuality.h │ ├── atmosphere │ │ ├── AtmosphereRenderer.cpp │ │ └── AtmosphereRenderer.h │ ├── camera │ │ ├── Camera.h │ │ ├── CameraUniforms.h │ │ ├── LuaCamera.h │ │ ├── SimpleCamera.cpp │ │ └── SimpleCamera.h │ ├── geometry │ │ ├── CubeGeometry.h │ │ └── SphereGeometry.h │ ├── lighting │ │ ├── DebugGBuffer.cpp │ │ ├── DebugGBuffer.h │ │ ├── EnvMap.cpp │ │ ├── EnvMap.h │ │ ├── Light.h │ │ ├── PartIconLight.cpp │ │ ├── PartIconLight.h │ │ ├── PointLight.cpp │ │ ├── PointLight.h │ │ ├── ShadowCamera.h │ │ ├── SunLight.cpp │ │ └── SunLight.h │ ├── renderer │ │ ├── GasPlanetRenderer.cpp │ │ ├── GasPlanetRenderer.h │ │ ├── RockyPlanetRenderer.cpp │ │ └── RockyPlanetRenderer.h │ └── util │ │ ├── Framebuffer.cpp │ │ ├── Framebuffer.h │ │ ├── GBuffer.cpp │ │ ├── GBuffer.h │ │ ├── Skybox.cpp │ │ ├── Skybox.h │ │ ├── TextDrawer.cpp │ │ ├── TextDrawer.h │ │ ├── TextureDrawer.cpp │ │ └── TextureDrawer.h ├── universe │ ├── CartesianState.h │ ├── Date.cpp │ ├── Date.h │ ├── Events.cpp │ ├── Events.h │ ├── PlanetarySystem.cpp │ ├── PlanetarySystem.h │ ├── Universe.cpp │ ├── Universe.h │ ├── UniverseDefinitions.h │ ├── element │ │ ├── SystemElement.cpp │ │ ├── SystemElement.h │ │ └── config │ │ │ ├── AtmoConfig.h │ │ │ ├── ElementConfig.h │ │ │ ├── GasConfig.h │ │ │ └── SurfaceConfig.h │ ├── entity │ │ ├── Entity.cpp │ │ ├── Entity.h │ │ ├── Trajectory.h │ │ ├── history │ │ │ ├── EntityHistory.cpp │ │ │ └── EntityHistory.h │ │ └── trajectory │ │ │ ├── LandedTrajectory.cpp │ │ │ └── LandedTrajectory.h │ ├── kepler │ │ ├── KeplerElements.cpp │ │ └── KeplerElements.h │ ├── predictor │ │ ├── FrameOfReference.cpp │ │ ├── FrameOfReference.h │ │ ├── OrbitPredictionServer.cpp │ │ ├── OrbitPredictionServer.h │ │ ├── Prediction.h │ │ ├── PredictionDrawer.cpp │ │ ├── PredictionDrawer.h │ │ ├── QuickPredictor.cpp │ │ └── QuickPredictor.h │ ├── propagator │ │ ├── Propagable.h │ │ ├── RK4Propagator.cpp │ │ ├── RK4Propagator.h │ │ └── SystemPropagator.h │ └── vehicle │ │ ├── PackedVehicle.cpp │ │ ├── PackedVehicle.h │ │ ├── SymmetryMode.cpp │ │ ├── SymmetryMode.h │ │ ├── UnpackedVehicle.cpp │ │ ├── UnpackedVehicle.h │ │ ├── Vehicle.cpp │ │ ├── Vehicle.h │ │ ├── VehicleLoader.cpp │ │ ├── VehicleLoader.h │ │ ├── VehicleMeta.cpp │ │ ├── VehicleMeta.h │ │ ├── connections │ │ ├── LogicalGroup.cpp │ │ └── LogicalGroup.h │ │ ├── material │ │ ├── ChemicalReaction.cpp │ │ └── ChemicalReaction.h │ │ ├── part │ │ ├── Link.cpp │ │ ├── Link.h │ │ ├── Machine.cpp │ │ ├── Machine.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Piece.cpp │ │ └── Piece.h │ │ └── plumbing │ │ ├── PlumbingMachine.cpp │ │ ├── PlumbingMachine.h │ │ ├── StoredFluids.cpp │ │ ├── StoredFluids.h │ │ ├── VehiclePlumbing.cpp │ │ └── VehiclePlumbing.h └── util │ ├── DebugDrawer.cpp │ ├── DebugDrawer.h │ ├── FileWatcher.h │ ├── InputUtil.h │ ├── Logger.cpp │ ├── Logger.h │ ├── LuaUtil.h │ ├── MathUtil.cpp │ ├── MathUtil.h │ ├── Profiler.cpp │ ├── Profiler.h │ ├── SerializeUtil.h │ ├── ThreadUtil.cpp │ ├── ThreadUtil.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UTF8Util.h │ ├── defines.h │ ├── fmt │ └── glm.h │ └── serializers │ └── glm.h └── udata ├── input └── core_rocket.toml ├── saves └── debug-save │ └── save.toml ├── settings.toml └── vehicles ├── backup.toml └── debug.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.gitmodules -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/.luarc.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/README.md -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/FastNoiseC/FastNoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/FastNoiseC/FastNoise.c -------------------------------------------------------------------------------- /dep/FastNoiseC/FastNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/FastNoiseC/FastNoise.h -------------------------------------------------------------------------------- /dep/FastNoiseC/FastNoiseArrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/FastNoiseC/FastNoiseArrays.h -------------------------------------------------------------------------------- /dep/FastNoiseC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/FastNoiseC/README.md -------------------------------------------------------------------------------- /dep/FastNoiseC/rnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/FastNoiseC/rnd.h -------------------------------------------------------------------------------- /dep/argh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/argh.h -------------------------------------------------------------------------------- /dep/backward/backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/backward/backward.cpp -------------------------------------------------------------------------------- /dep/backward/backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/backward/backward.hpp -------------------------------------------------------------------------------- /dep/cpptoml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/cpptoml.h -------------------------------------------------------------------------------- /dep/glad/KHR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glad/KHR.h -------------------------------------------------------------------------------- /dep/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glad/glad.c -------------------------------------------------------------------------------- /dep/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glad/glad.h -------------------------------------------------------------------------------- /dep/glm/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/INSTALL.vcxproj -------------------------------------------------------------------------------- /dep/glm/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /dep/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/common.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dep/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /dep/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /dep/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /dep/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dep/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/precision.hpp -------------------------------------------------------------------------------- /dep/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dep/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dep/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /dep/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/exponential.hpp -------------------------------------------------------------------------------- /dep/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/ext.hpp -------------------------------------------------------------------------------- /dep/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/fwd.hpp -------------------------------------------------------------------------------- /dep/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/geometric.hpp -------------------------------------------------------------------------------- /dep/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/glm.hpp -------------------------------------------------------------------------------- /dep/glm/glm_dummy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/glm_dummy.vcxproj -------------------------------------------------------------------------------- /dep/glm/glm_dummy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/glm_dummy.vcxproj.filters -------------------------------------------------------------------------------- /dep/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dep/glm/gtc/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/color_encoding.inl -------------------------------------------------------------------------------- /dep/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dep/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dep/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dep/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/functions.inl -------------------------------------------------------------------------------- /dep/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dep/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dep/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dep/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dep/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /dep/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/random.inl -------------------------------------------------------------------------------- /dep/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dep/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/round.inl -------------------------------------------------------------------------------- /dep/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /dep/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dep/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dep/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dep/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /dep/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dep/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dep/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dep/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dep/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dep/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/common.inl -------------------------------------------------------------------------------- /dep/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dep/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dep/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dep/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dep/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dep/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /dep/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dep/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dep/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dep/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /dep/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dep/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /dep/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dep/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dep/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dep/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/io.inl -------------------------------------------------------------------------------- /dep/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /dep/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dep/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dep/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dep/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dep/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /dep/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dep/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dep/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dep/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dep/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dep/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dep/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /dep/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /dep/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dep/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dep/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /dep/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /dep/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /dep/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dep/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /dep/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dep/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dep/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dep/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /dep/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dep/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dep/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dep/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dep/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/integer.hpp -------------------------------------------------------------------------------- /dep/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dep/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dep/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dep/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dep/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dep/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dep/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dep/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dep/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dep/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/matrix.hpp -------------------------------------------------------------------------------- /dep/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/packing.hpp -------------------------------------------------------------------------------- /dep/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/common.h -------------------------------------------------------------------------------- /dep/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/exponential.h -------------------------------------------------------------------------------- /dep/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/geometric.h -------------------------------------------------------------------------------- /dep/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/integer.h -------------------------------------------------------------------------------- /dep/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/matrix.h -------------------------------------------------------------------------------- /dep/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/packing.h -------------------------------------------------------------------------------- /dep/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/platform.h -------------------------------------------------------------------------------- /dep/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /dep/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /dep/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dep/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/vec2.hpp -------------------------------------------------------------------------------- /dep/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/vec3.hpp -------------------------------------------------------------------------------- /dep/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/vec4.hpp -------------------------------------------------------------------------------- /dep/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dep/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imconfig.h -------------------------------------------------------------------------------- /dep/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui.cpp -------------------------------------------------------------------------------- /dep/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui.h -------------------------------------------------------------------------------- /dep/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /dep/imgui/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /dep/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /dep/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /dep/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /dep/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_internal.h -------------------------------------------------------------------------------- /dep/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /dep/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /dep/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /dep/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /dep/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /dep/miniaudio/miniaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/miniaudio/miniaudio.c -------------------------------------------------------------------------------- /dep/miniaudio/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/miniaudio/miniaudio.h -------------------------------------------------------------------------------- /dep/nanovg/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/fontstash.h -------------------------------------------------------------------------------- /dep/nanovg/nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/nanovg.c -------------------------------------------------------------------------------- /dep/nanovg/nanovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/nanovg.h -------------------------------------------------------------------------------- /dep/nanovg/nanovg_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/nanovg_ext.cpp -------------------------------------------------------------------------------- /dep/nanovg/nanovg_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/nanovg_gl.h -------------------------------------------------------------------------------- /dep/nanovg/nanovg_gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/nanovg/nanovg_gl_utils.h -------------------------------------------------------------------------------- /dep/rang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/rang.hpp -------------------------------------------------------------------------------- /dep/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/sol/config.hpp -------------------------------------------------------------------------------- /dep/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/sol/sol.hpp -------------------------------------------------------------------------------- /dep/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/stb/stb_image.h -------------------------------------------------------------------------------- /dep/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/stb/stb_image_write.h -------------------------------------------------------------------------------- /dep/stb/stb_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/stb/stb_impl.cpp -------------------------------------------------------------------------------- /dep/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/stb/stb_truetype.h -------------------------------------------------------------------------------- /dep/tiny_gltf/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/allocators.h -------------------------------------------------------------------------------- /dep/tiny_gltf/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/cursorstreamwrapper.h -------------------------------------------------------------------------------- /dep/tiny_gltf/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/document.h -------------------------------------------------------------------------------- /dep/tiny_gltf/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/encodedstream.h -------------------------------------------------------------------------------- /dep/tiny_gltf/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/encodings.h -------------------------------------------------------------------------------- /dep/tiny_gltf/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/error/en.h -------------------------------------------------------------------------------- /dep/tiny_gltf/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/error/error.h -------------------------------------------------------------------------------- /dep/tiny_gltf/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/filereadstream.h -------------------------------------------------------------------------------- /dep/tiny_gltf/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/filewritestream.h -------------------------------------------------------------------------------- /dep/tiny_gltf/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/fwd.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/biginteger.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/clzll.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/diyfp.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/dtoa.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/ieee754.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/itoa.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/meta.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/pow10.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/regex.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/stack.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/strfunc.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/strtod.h -------------------------------------------------------------------------------- /dep/tiny_gltf/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/internal/swap.h -------------------------------------------------------------------------------- /dep/tiny_gltf/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/istreamwrapper.h -------------------------------------------------------------------------------- /dep/tiny_gltf/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/memorybuffer.h -------------------------------------------------------------------------------- /dep/tiny_gltf/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/memorystream.h -------------------------------------------------------------------------------- /dep/tiny_gltf/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/msinttypes/inttypes.h -------------------------------------------------------------------------------- /dep/tiny_gltf/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/msinttypes/stdint.h -------------------------------------------------------------------------------- /dep/tiny_gltf/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/ostreamwrapper.h -------------------------------------------------------------------------------- /dep/tiny_gltf/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/pointer.h -------------------------------------------------------------------------------- /dep/tiny_gltf/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/prettywriter.h -------------------------------------------------------------------------------- /dep/tiny_gltf/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/rapidjson.h -------------------------------------------------------------------------------- /dep/tiny_gltf/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/reader.h -------------------------------------------------------------------------------- /dep/tiny_gltf/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/schema.h -------------------------------------------------------------------------------- /dep/tiny_gltf/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/stream.h -------------------------------------------------------------------------------- /dep/tiny_gltf/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/stringbuffer.h -------------------------------------------------------------------------------- /dep/tiny_gltf/tiny_gltf.cpp: -------------------------------------------------------------------------------- 1 | #define TINYGLTF_IMPLEMENTATION 2 | #include "tiny_gltf.h" -------------------------------------------------------------------------------- /dep/tiny_gltf/tiny_gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/tiny_gltf.h -------------------------------------------------------------------------------- /dep/tiny_gltf/tiny_gltf_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/tiny_gltf_r.h -------------------------------------------------------------------------------- /dep/tiny_gltf/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/tiny_gltf/writer.h -------------------------------------------------------------------------------- /dep/utf8/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8.h -------------------------------------------------------------------------------- /dep/utf8/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8/checked.h -------------------------------------------------------------------------------- /dep/utf8/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8/core.h -------------------------------------------------------------------------------- /dep/utf8/utf8/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8/cpp11.h -------------------------------------------------------------------------------- /dep/utf8/utf8/cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8/cpp17.h -------------------------------------------------------------------------------- /dep/utf8/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/dep/utf8/utf8/unchecked.h -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/imgui.ini -------------------------------------------------------------------------------- /launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/launch.vs.json -------------------------------------------------------------------------------- /ospm_src/Fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/Fetch.cpp -------------------------------------------------------------------------------- /ospm_src/Fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/Fetch.h -------------------------------------------------------------------------------- /ospm_src/Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/Help.h -------------------------------------------------------------------------------- /ospm_src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/Main.cpp -------------------------------------------------------------------------------- /ospm_src/PkgInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/PkgInfo.h -------------------------------------------------------------------------------- /ospm_src/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/define.h -------------------------------------------------------------------------------- /ospm_src/dep/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/dep/httplib.h -------------------------------------------------------------------------------- /ospm_src/dep/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/dep/miniz.c -------------------------------------------------------------------------------- /ospm_src/dep/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/ospm_src/dep/miniz.h -------------------------------------------------------------------------------- /pkg/PackageMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/pkg/PackageMetadata.h -------------------------------------------------------------------------------- /res/.luadef/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/config.json -------------------------------------------------------------------------------- /res/.luadef/definitions/assets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/assets.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/bullet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/bullet.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/debug_drawer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/debug_drawer.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/editor.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/flight_input.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/flight_input.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/game_database.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/game_database.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/glm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/glm.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/globals.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/gui.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/imgui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/imgui.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/input.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/input.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/logger.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/model.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/nano_vg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/nano_vg.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/noise.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/noise.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/orbit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/orbit.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/plumbing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/plumbing.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/renderer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/renderer.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/scene.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/toml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/toml.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/universe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/universe.lua -------------------------------------------------------------------------------- /res/.luadef/definitions/vehicle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/definitions/vehicle.lua -------------------------------------------------------------------------------- /res/.luadef/plugin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/plugin.lua -------------------------------------------------------------------------------- /res/.luadef/script_types/scene_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luadef/script_types/scene_script.lua -------------------------------------------------------------------------------- /res/.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/.luarc.json -------------------------------------------------------------------------------- /res/core/black_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/black_tex.png -------------------------------------------------------------------------------- /res/core/categories/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/all.png -------------------------------------------------------------------------------- /res/core/categories/all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/all.svg -------------------------------------------------------------------------------- /res/core/categories/all.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/all.toml -------------------------------------------------------------------------------- /res/core/categories/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/command.png -------------------------------------------------------------------------------- /res/core/categories/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/command.svg -------------------------------------------------------------------------------- /res/core/categories/command.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/command.toml -------------------------------------------------------------------------------- /res/core/categories/engines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/engines.png -------------------------------------------------------------------------------- /res/core/categories/engines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/engines.svg -------------------------------------------------------------------------------- /res/core/categories/engines.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/engines.toml -------------------------------------------------------------------------------- /res/core/categories/rect869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/rect869.png -------------------------------------------------------------------------------- /res/core/categories/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/categories/trash.png -------------------------------------------------------------------------------- /res/core/default_gas.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/core/editor/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/attach.png -------------------------------------------------------------------------------- /res/core/editor/duct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/duct.png -------------------------------------------------------------------------------- /res/core/editor/electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/electric.png -------------------------------------------------------------------------------- /res/core/editor/floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/floppy.png -------------------------------------------------------------------------------- /res/core/editor/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/launch.png -------------------------------------------------------------------------------- /res/core/editor/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/load.png -------------------------------------------------------------------------------- /res/core/editor/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/new.png -------------------------------------------------------------------------------- /res/core/editor/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/quit.png -------------------------------------------------------------------------------- /res/core/editor/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/save.png -------------------------------------------------------------------------------- /res/core/editor/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/transform.png -------------------------------------------------------------------------------- /res/core/editor/wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/editor/wire.png -------------------------------------------------------------------------------- /res/core/entities/base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/base.lua -------------------------------------------------------------------------------- /res/core/entities/base_finder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/base_finder.lua -------------------------------------------------------------------------------- /res/core/entities/building/building.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/building/building.lua -------------------------------------------------------------------------------- /res/core/entities/g_launchpad_finder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/g_launchpad_finder.lua -------------------------------------------------------------------------------- /res/core/entities/utils/static.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/utils/static.lua -------------------------------------------------------------------------------- /res/core/entities/vehicle/vehicle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/entities/vehicle/vehicle.lua -------------------------------------------------------------------------------- /res/core/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/events.lua -------------------------------------------------------------------------------- /res/core/fonts/FONTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/FONTS -------------------------------------------------------------------------------- /res/core/fonts/ProggySquare.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/ProggySquare.fnt -------------------------------------------------------------------------------- /res/core/fonts/ProggySquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/ProggySquare.png -------------------------------------------------------------------------------- /res/core/fonts/ProggyTiny.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/ProggyTiny.fnt -------------------------------------------------------------------------------- /res/core/fonts/ProggyTiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/ProggyTiny.png -------------------------------------------------------------------------------- /res/core/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /res/core/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /res/core/fonts/fira_code_medium.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/fira_code_medium.fnt -------------------------------------------------------------------------------- /res/core/fonts/fira_code_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/fira_code_medium.png -------------------------------------------------------------------------------- /res/core/fonts/folder.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/fonts/folder.toml -------------------------------------------------------------------------------- /res/core/gui/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/gui/close.png -------------------------------------------------------------------------------- /res/core/gui/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/gui/minimize.png -------------------------------------------------------------------------------- /res/core/gui/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/gui/pin.png -------------------------------------------------------------------------------- /res/core/input/rocket.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/input/rocket.toml -------------------------------------------------------------------------------- /res/core/interfaces/activable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/interfaces/activable.lua -------------------------------------------------------------------------------- /res/core/interfaces/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/interfaces/engine.lua -------------------------------------------------------------------------------- /res/core/interfaces/throttleable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/interfaces/throttleable.lua -------------------------------------------------------------------------------- /res/core/links/simple_link.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/links/simple_link.lua -------------------------------------------------------------------------------- /res/core/locale.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/locale.lua -------------------------------------------------------------------------------- /res/core/machines/capsule/capsule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/capsule/capsule.lua -------------------------------------------------------------------------------- /res/core/machines/decoupler/decoupler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/decoupler/decoupler.lua -------------------------------------------------------------------------------- /res/core/machines/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine.lua -------------------------------------------------------------------------------- /res/core/machines/engine/l_chamber.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine/l_chamber.lua -------------------------------------------------------------------------------- /res/core/machines/engine/l_engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine/l_engine.lua -------------------------------------------------------------------------------- /res/core/machines/engine/l_nozzle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine/l_nozzle.lua -------------------------------------------------------------------------------- /res/core/machines/engine/l_plumbing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine/l_plumbing.lua -------------------------------------------------------------------------------- /res/core/machines/engine/machine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/engine/machine.lua -------------------------------------------------------------------------------- /res/core/machines/fuel_tank/machine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/fuel_tank/machine.lua -------------------------------------------------------------------------------- /res/core/machines/icons/clip_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/clip_back.png -------------------------------------------------------------------------------- /res/core/machines/icons/clip_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/clip_front.png -------------------------------------------------------------------------------- /res/core/machines/icons/decoupler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/decoupler.png -------------------------------------------------------------------------------- /res/core/machines/icons/default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/default_icon.png -------------------------------------------------------------------------------- /res/core/machines/icons/engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/engine.png -------------------------------------------------------------------------------- /res/core/machines/icons/fluid_tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/fluid_tank.png -------------------------------------------------------------------------------- /res/core/machines/icons/folder.toml: -------------------------------------------------------------------------------- 1 | [image] 2 | filter="nearest" -------------------------------------------------------------------------------- /res/core/machines/icons/valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/icons/valve.png -------------------------------------------------------------------------------- /res/core/machines/junction/machine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/junction/machine.lua -------------------------------------------------------------------------------- /res/core/machines/pumps/electric_pump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/pumps/electric_pump.lua -------------------------------------------------------------------------------- /res/core/machines/rcs_controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/rcs_controller.lua -------------------------------------------------------------------------------- /res/core/machines/stager/gui.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/core/machines/stager/machine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/stager/machine.lua -------------------------------------------------------------------------------- /res/core/machines/valves/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/valves/check.lua -------------------------------------------------------------------------------- /res/core/machines/valves/shutoff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/machines/valves/shutoff.lua -------------------------------------------------------------------------------- /res/core/mat_default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/mat_default.toml -------------------------------------------------------------------------------- /res/core/mat_gizmo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/mat_gizmo.toml -------------------------------------------------------------------------------- /res/core/mat_hover.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/mat_hover.toml -------------------------------------------------------------------------------- /res/core/mat_pbr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/mat_pbr.toml -------------------------------------------------------------------------------- /res/core/materials/carbon_dioxide.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/carbon_dioxide.toml -------------------------------------------------------------------------------- /res/core/materials/helium.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/helium.toml -------------------------------------------------------------------------------- /res/core/materials/hydrogen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/hydrogen.toml -------------------------------------------------------------------------------- /res/core/materials/methane.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/methane.toml -------------------------------------------------------------------------------- /res/core/materials/oxygen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/oxygen.toml -------------------------------------------------------------------------------- /res/core/materials/water.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/materials/water.toml -------------------------------------------------------------------------------- /res/core/meshes/editor_attachment.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/meshes/editor_attachment.blend -------------------------------------------------------------------------------- /res/core/meshes/editor_attachment.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/meshes/editor_attachment.glb -------------------------------------------------------------------------------- /res/core/meshes/editor_attachment.toml: -------------------------------------------------------------------------------- 1 | model = "meshes/editor_attachment.glb" 2 | -------------------------------------------------------------------------------- /res/core/normal_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/normal_tex.png -------------------------------------------------------------------------------- /res/core/notex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/notex.png -------------------------------------------------------------------------------- /res/core/package.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/package.lua -------------------------------------------------------------------------------- /res/core/package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/package.toml -------------------------------------------------------------------------------- /res/core/plumbing_machines/junction_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/junction_3.png -------------------------------------------------------------------------------- /res/core/plumbing_machines/junction_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/junction_4.png -------------------------------------------------------------------------------- /res/core/plumbing_machines/oneway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/oneway.png -------------------------------------------------------------------------------- /res/core/plumbing_machines/oneway.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/oneway.toml -------------------------------------------------------------------------------- /res/core/plumbing_machines/pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/pump.png -------------------------------------------------------------------------------- /res/core/plumbing_machines/shutoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/shutoff.png -------------------------------------------------------------------------------- /res/core/plumbing_machines/shutoff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/plumbing_machines/shutoff.toml -------------------------------------------------------------------------------- /res/core/scenes/camera_util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/camera_util.lua -------------------------------------------------------------------------------- /res/core/scenes/common_ui.lua: -------------------------------------------------------------------------------- 1 | --- Basic UI used in map and flight scene (navball, toolbar, etc...) 2 | -------------------------------------------------------------------------------- /res/core/scenes/editor/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/editor/editor.lua -------------------------------------------------------------------------------- /res/core/scenes/editor/symmetry_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/editor/symmetry_debug.lua -------------------------------------------------------------------------------- /res/core/scenes/esc_menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/esc_menu.lua -------------------------------------------------------------------------------- /res/core/scenes/flight/scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/flight/scene.lua -------------------------------------------------------------------------------- /res/core/scenes/main_menu/scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/main_menu/scene.lua -------------------------------------------------------------------------------- /res/core/scenes/map/anim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/map/anim.lua -------------------------------------------------------------------------------- /res/core/scenes/map/map_camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/map/map_camera.lua -------------------------------------------------------------------------------- /res/core/scenes/map/map_ui.lua: -------------------------------------------------------------------------------- 1 | --- Map UI 2 | -------------------------------------------------------------------------------- /res/core/scenes/map/orbit_drawer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/map/orbit_drawer.lua -------------------------------------------------------------------------------- /res/core/scenes/map/scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/map/scene.lua -------------------------------------------------------------------------------- /res/core/scenes/new_save_scene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/new_save_scene.toml -------------------------------------------------------------------------------- /res/core/scenes/orbit_camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/orbit_camera.lua -------------------------------------------------------------------------------- /res/core/scenes/vehicle_spawner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/scenes/vehicle_spawner.lua -------------------------------------------------------------------------------- /res/core/shaders/atmosphere/atmo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/atmosphere/atmo.fs -------------------------------------------------------------------------------- /res/core/shaders/atmosphere/atmo.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/atmosphere/atmo.fsi -------------------------------------------------------------------------------- /res/core/shaders/atmosphere/atmo.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/atmosphere/atmo.vs -------------------------------------------------------------------------------- /res/core/shaders/debug.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/debug.fs -------------------------------------------------------------------------------- /res/core/shaders/debug.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/debug.vs -------------------------------------------------------------------------------- /res/core/shaders/font.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/font.fs -------------------------------------------------------------------------------- /res/core/shaders/font.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/font.vs -------------------------------------------------------------------------------- /res/core/shaders/gizmo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/gizmo.fs -------------------------------------------------------------------------------- /res/core/shaders/gizmo.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/gizmo.vs -------------------------------------------------------------------------------- /res/core/shaders/hdr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/hdr.fs -------------------------------------------------------------------------------- /res/core/shaders/hdr.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/hdr.vs -------------------------------------------------------------------------------- /res/core/shaders/hover.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/hover.fs -------------------------------------------------------------------------------- /res/core/shaders/hover.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/hover.vs -------------------------------------------------------------------------------- /res/core/shaders/ibl/brdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/ibl/brdf.png -------------------------------------------------------------------------------- /res/core/shaders/ibl/irradiance.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/ibl/irradiance.fs -------------------------------------------------------------------------------- /res/core/shaders/ibl/irradiance.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/ibl/irradiance.vs -------------------------------------------------------------------------------- /res/core/shaders/ibl/specular.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/ibl/specular.fs -------------------------------------------------------------------------------- /res/core/shaders/ibl/specular.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/ibl/specular.vs -------------------------------------------------------------------------------- /res/core/shaders/light/debug_gbuffer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/debug_gbuffer.fs -------------------------------------------------------------------------------- /res/core/shaders/light/debug_gbuffer.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/debug_gbuffer.vs -------------------------------------------------------------------------------- /res/core/shaders/light/env_map.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/env_map.fs -------------------------------------------------------------------------------- /res/core/shaders/light/env_map.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/env_map.vs -------------------------------------------------------------------------------- /res/core/shaders/light/part_icon.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/part_icon.fs -------------------------------------------------------------------------------- /res/core/shaders/light/part_icon.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/part_icon.vs -------------------------------------------------------------------------------- /res/core/shaders/light/pbr.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/pbr.fsi -------------------------------------------------------------------------------- /res/core/shaders/light/point_sphere.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/point_sphere.fs -------------------------------------------------------------------------------- /res/core/shaders/light/point_sphere.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/point_sphere.vs -------------------------------------------------------------------------------- /res/core/shaders/light/sunlight.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/sunlight.fs -------------------------------------------------------------------------------- /res/core/shaders/light/sunlight.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/light/sunlight.vs -------------------------------------------------------------------------------- /res/core/shaders/lines/lines.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/lines/lines.fs -------------------------------------------------------------------------------- /res/core/shaders/lines/lines.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/lines/lines.vs -------------------------------------------------------------------------------- /res/core/shaders/pbr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/pbr.fs -------------------------------------------------------------------------------- /res/core/shaders/pbr.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/pbr.vs -------------------------------------------------------------------------------- /res/core/shaders/planet/tile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/planet/tile.fs -------------------------------------------------------------------------------- /res/core/shaders/planet/tile.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/planet/tile.vs -------------------------------------------------------------------------------- /res/core/shaders/planet/water.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/planet/water.fs -------------------------------------------------------------------------------- /res/core/shaders/planet/water.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/planet/water.vs -------------------------------------------------------------------------------- /res/core/shaders/screen_door.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/screen_door.fsi -------------------------------------------------------------------------------- /res/core/shaders/shadow.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/shadow.fs -------------------------------------------------------------------------------- /res/core/shaders/shadow.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/shadow.vs -------------------------------------------------------------------------------- /res/core/shaders/simple.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/simple.fs -------------------------------------------------------------------------------- /res/core/shaders/simple.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/simple.vs -------------------------------------------------------------------------------- /res/core/shaders/simple_sprite.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/simple_sprite.fs -------------------------------------------------------------------------------- /res/core/shaders/simple_sprite.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/simple_sprite.vs -------------------------------------------------------------------------------- /res/core/shaders/skybox.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/skybox.fs -------------------------------------------------------------------------------- /res/core/shaders/skybox.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/skybox.vs -------------------------------------------------------------------------------- /res/core/shaders/vehicle/simple_part.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/vehicle/simple_part.fs -------------------------------------------------------------------------------- /res/core/shaders/vehicle/simple_part.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/shaders/vehicle/simple_part.vs -------------------------------------------------------------------------------- /res/core/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/test.lua -------------------------------------------------------------------------------- /res/core/util/c_events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/util/c_events.lua -------------------------------------------------------------------------------- /res/core/util/g_raycast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/util/g_raycast.lua -------------------------------------------------------------------------------- /res/core/white_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/core/white_tex.png -------------------------------------------------------------------------------- /res/navball/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/CREDITS.txt -------------------------------------------------------------------------------- /res/navball/antinormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/antinormal.png -------------------------------------------------------------------------------- /res/navball/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/frame.png -------------------------------------------------------------------------------- /res/navball/navball.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/navball.fs -------------------------------------------------------------------------------- /res/navball/navball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/navball.png -------------------------------------------------------------------------------- /res/navball/navball.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/navball.toml -------------------------------------------------------------------------------- /res/navball/navball.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/navball.vs -------------------------------------------------------------------------------- /res/navball/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/normal.png -------------------------------------------------------------------------------- /res/navball/package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/package.toml -------------------------------------------------------------------------------- /res/navball/prograde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/prograde.png -------------------------------------------------------------------------------- /res/navball/radialin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/radialin.png -------------------------------------------------------------------------------- /res/navball/radialout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/radialout.png -------------------------------------------------------------------------------- /res/navball/rect4301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/rect4301.png -------------------------------------------------------------------------------- /res/navball/retrograde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/res/navball/retrograde.png -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/OSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/OSP.cpp -------------------------------------------------------------------------------- /src/OSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/OSP.h -------------------------------------------------------------------------------- /src/assets/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Asset.h -------------------------------------------------------------------------------- /src/assets/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/AssetManager.cpp -------------------------------------------------------------------------------- /src/assets/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/AssetManager.h -------------------------------------------------------------------------------- /src/assets/AudioClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/AudioClip.cpp -------------------------------------------------------------------------------- /src/assets/AudioClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/AudioClip.h -------------------------------------------------------------------------------- /src/assets/BitmapFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/BitmapFont.cpp -------------------------------------------------------------------------------- /src/assets/BitmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/BitmapFont.h -------------------------------------------------------------------------------- /src/assets/BuildingPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/BuildingPrototype.cpp -------------------------------------------------------------------------------- /src/assets/BuildingPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/BuildingPrototype.h -------------------------------------------------------------------------------- /src/assets/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Config.cpp -------------------------------------------------------------------------------- /src/assets/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Config.h -------------------------------------------------------------------------------- /src/assets/Cubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Cubemap.cpp -------------------------------------------------------------------------------- /src/assets/Cubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Cubemap.h -------------------------------------------------------------------------------- /src/assets/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Image.cpp -------------------------------------------------------------------------------- /src/assets/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Image.h -------------------------------------------------------------------------------- /src/assets/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Material.cpp -------------------------------------------------------------------------------- /src/assets/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Material.h -------------------------------------------------------------------------------- /src/assets/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Model.cpp -------------------------------------------------------------------------------- /src/assets/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Model.h -------------------------------------------------------------------------------- /src/assets/PartPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/PartPrototype.cpp -------------------------------------------------------------------------------- /src/assets/PartPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/PartPrototype.h -------------------------------------------------------------------------------- /src/assets/PhysicalMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/PhysicalMaterial.cpp -------------------------------------------------------------------------------- /src/assets/PhysicalMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/PhysicalMaterial.h -------------------------------------------------------------------------------- /src/assets/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Shader.cpp -------------------------------------------------------------------------------- /src/assets/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/assets/Shader.h -------------------------------------------------------------------------------- /src/audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/audio/AudioEngine.cpp -------------------------------------------------------------------------------- /src/audio/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/audio/AudioEngine.h -------------------------------------------------------------------------------- /src/audio/AudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/audio/AudioSource.cpp -------------------------------------------------------------------------------- /src/audio/AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/audio/AudioSource.h -------------------------------------------------------------------------------- /src/audio/SampleSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/audio/SampleSource.h -------------------------------------------------------------------------------- /src/game/GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/GameState.cpp -------------------------------------------------------------------------------- /src/game/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/GameState.h -------------------------------------------------------------------------------- /src/game/GameStateDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/GameStateDebug.cpp -------------------------------------------------------------------------------- /src/game/GameStateDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/GameStateDebug.h -------------------------------------------------------------------------------- /src/game/database/GameDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/database/GameDatabase.cpp -------------------------------------------------------------------------------- /src/game/database/GameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/database/GameDatabase.h -------------------------------------------------------------------------------- /src/game/database/SaveDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/database/SaveDatabase.cpp -------------------------------------------------------------------------------- /src/game/database/SaveDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/database/SaveDatabase.h -------------------------------------------------------------------------------- /src/game/input/JoystickDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/input/JoystickDebug.cpp -------------------------------------------------------------------------------- /src/game/plumbing/PlumbingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/plumbing/PlumbingEditor.cpp -------------------------------------------------------------------------------- /src/game/plumbing/PlumbingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/plumbing/PlumbingEditor.h -------------------------------------------------------------------------------- /src/game/scenes/LuaScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/LuaScene.cpp -------------------------------------------------------------------------------- /src/game/scenes/LuaScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/LuaScene.h -------------------------------------------------------------------------------- /src/game/scenes/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/Scene.h -------------------------------------------------------------------------------- /src/game/scenes/editor/EditorCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/EditorCamera.cpp -------------------------------------------------------------------------------- /src/game/scenes/editor/EditorCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/EditorCamera.h -------------------------------------------------------------------------------- /src/game/scenes/editor/EditorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/EditorScene.cpp -------------------------------------------------------------------------------- /src/game/scenes/editor/EditorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/EditorScene.h -------------------------------------------------------------------------------- /src/game/scenes/editor/EditorVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/EditorVehicle.h -------------------------------------------------------------------------------- /src/game/scenes/editor/gui/EditorGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/editor/gui/EditorGUI.h -------------------------------------------------------------------------------- /src/game/scenes/flight/InputContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/flight/InputContext.cpp -------------------------------------------------------------------------------- /src/game/scenes/flight/InputContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/scenes/flight/InputContext.h -------------------------------------------------------------------------------- /src/game/ui/Navball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/ui/Navball.cpp -------------------------------------------------------------------------------- /src/game/ui/Navball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/game/ui/Navball.h -------------------------------------------------------------------------------- /src/gui/GUICanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUICanvas.cpp -------------------------------------------------------------------------------- /src/gui/GUICanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUICanvas.h -------------------------------------------------------------------------------- /src/gui/GUIInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIInput.cpp -------------------------------------------------------------------------------- /src/gui/GUIInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIInput.h -------------------------------------------------------------------------------- /src/gui/GUILayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUILayout.cpp -------------------------------------------------------------------------------- /src/gui/GUILayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUILayout.h -------------------------------------------------------------------------------- /src/gui/GUIScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIScreen.cpp -------------------------------------------------------------------------------- /src/gui/GUIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIScreen.h -------------------------------------------------------------------------------- /src/gui/GUIScrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIScrollbar.h -------------------------------------------------------------------------------- /src/gui/GUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUISkin.h -------------------------------------------------------------------------------- /src/gui/GUIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIWidget.h -------------------------------------------------------------------------------- /src/gui/GUIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIWindow.cpp -------------------------------------------------------------------------------- /src/gui/GUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIWindow.h -------------------------------------------------------------------------------- /src/gui/GUIWindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIWindowManager.cpp -------------------------------------------------------------------------------- /src/gui/GUIWindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/GUIWindowManager.h -------------------------------------------------------------------------------- /src/gui/layouts/GUIHorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIHorizontalLayout.cpp -------------------------------------------------------------------------------- /src/gui/layouts/GUIHorizontalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIHorizontalLayout.h -------------------------------------------------------------------------------- /src/gui/layouts/GUILinearLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUILinearLayout.cpp -------------------------------------------------------------------------------- /src/gui/layouts/GUILinearLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUILinearLayout.h -------------------------------------------------------------------------------- /src/gui/layouts/GUIListLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIListLayout.cpp -------------------------------------------------------------------------------- /src/gui/layouts/GUIListLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIListLayout.h -------------------------------------------------------------------------------- /src/gui/layouts/GUISingleLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUISingleLayout.cpp -------------------------------------------------------------------------------- /src/gui/layouts/GUISingleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUISingleLayout.h -------------------------------------------------------------------------------- /src/gui/layouts/GUIVerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIVerticalLayout.cpp -------------------------------------------------------------------------------- /src/gui/layouts/GUIVerticalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/layouts/GUIVerticalLayout.h -------------------------------------------------------------------------------- /src/gui/skins/SimpleSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/skins/SimpleSkin.cpp -------------------------------------------------------------------------------- /src/gui/skins/SimpleSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/skins/SimpleSkin.h -------------------------------------------------------------------------------- /src/gui/widgets/GUIBaseButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIBaseButton.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUIBaseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIBaseButton.h -------------------------------------------------------------------------------- /src/gui/widgets/GUIDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIDropDown.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUIDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIDropDown.h -------------------------------------------------------------------------------- /src/gui/widgets/GUIIconTextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIIconTextButton.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUIIconTextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIIconTextButton.h -------------------------------------------------------------------------------- /src/gui/widgets/GUIImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIImageButton.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUIImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUIImageButton.h -------------------------------------------------------------------------------- /src/gui/widgets/GUILabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUILabel.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUILabel.h -------------------------------------------------------------------------------- /src/gui/widgets/GUITextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUITextButton.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUITextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUITextButton.h -------------------------------------------------------------------------------- /src/gui/widgets/GUITextField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUITextField.cpp -------------------------------------------------------------------------------- /src/gui/widgets/GUITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/gui/widgets/GUITextField.h -------------------------------------------------------------------------------- /src/lua/BulletLuaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/BulletLuaData.h -------------------------------------------------------------------------------- /src/lua/LuaCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/LuaCore.cpp -------------------------------------------------------------------------------- /src/lua/LuaCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/LuaCore.h -------------------------------------------------------------------------------- /src/lua/LuaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/LuaLib.h -------------------------------------------------------------------------------- /src/lua/libs/LuaAssets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaAssets.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaAssets.h -------------------------------------------------------------------------------- /src/lua/libs/LuaBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaBullet.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaBullet.h -------------------------------------------------------------------------------- /src/lua/libs/LuaDebugDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaDebugDrawer.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaDebugDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaDebugDrawer.h -------------------------------------------------------------------------------- /src/lua/libs/LuaEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaEditor.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaEditor.h -------------------------------------------------------------------------------- /src/lua/libs/LuaEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaEvents.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaEvents.h -------------------------------------------------------------------------------- /src/lua/libs/LuaFlightInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaFlightInput.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaFlightInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaFlightInput.h -------------------------------------------------------------------------------- /src/lua/libs/LuaGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGUI.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGUI.h -------------------------------------------------------------------------------- /src/lua/libs/LuaGameDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGameDatabase.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaGameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGameDatabase.h -------------------------------------------------------------------------------- /src/lua/libs/LuaGlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGlm.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaGlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaGlm.h -------------------------------------------------------------------------------- /src/lua/libs/LuaImGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaImGUI.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaImGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaImGUI.h -------------------------------------------------------------------------------- /src/lua/libs/LuaImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaImage.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaImage.h -------------------------------------------------------------------------------- /src/lua/libs/LuaInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaInput.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaInput.h -------------------------------------------------------------------------------- /src/lua/libs/LuaLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaLogger.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaLogger.h -------------------------------------------------------------------------------- /src/lua/libs/LuaModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaModel.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaModel.h -------------------------------------------------------------------------------- /src/lua/libs/LuaNanoVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaNanoVG.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaNanoVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaNanoVG.h -------------------------------------------------------------------------------- /src/lua/libs/LuaNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaNoise.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaNoise.h -------------------------------------------------------------------------------- /src/lua/libs/LuaOrbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaOrbit.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaOrbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaOrbit.h -------------------------------------------------------------------------------- /src/lua/libs/LuaPlumbing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaPlumbing.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaPlumbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaPlumbing.h -------------------------------------------------------------------------------- /src/lua/libs/LuaRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaRenderer.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaRenderer.h -------------------------------------------------------------------------------- /src/lua/libs/LuaSceneLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaSceneLib.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaSceneLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaSceneLib.h -------------------------------------------------------------------------------- /src/lua/libs/LuaToml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaToml.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaToml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaToml.h -------------------------------------------------------------------------------- /src/lua/libs/LuaUniverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaUniverse.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaUniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaUniverse.h -------------------------------------------------------------------------------- /src/lua/libs/LuaVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaVehicle.cpp -------------------------------------------------------------------------------- /src/lua/libs/LuaVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/lua/libs/LuaVehicle.h -------------------------------------------------------------------------------- /src/physics/RigidBodyUserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/RigidBodyUserData.h -------------------------------------------------------------------------------- /src/physics/debug/BulletDebugDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/debug/BulletDebugDrawer.h -------------------------------------------------------------------------------- /src/physics/glm/BulletGlmCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/glm/BulletGlmCompat.h -------------------------------------------------------------------------------- /src/physics/ground/GroundShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/ground/GroundShape.cpp -------------------------------------------------------------------------------- /src/physics/ground/GroundShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/ground/GroundShape.h -------------------------------------------------------------------------------- /src/physics/ground/GroundShapeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/physics/ground/GroundShapeServer.h -------------------------------------------------------------------------------- /src/planet_mesher/mesher/PlanetTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/planet_mesher/mesher/PlanetTile.cpp -------------------------------------------------------------------------------- /src/planet_mesher/mesher/PlanetTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/planet_mesher/mesher/PlanetTile.h -------------------------------------------------------------------------------- /src/renderer/Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/Drawable.h -------------------------------------------------------------------------------- /src/renderer/LuaDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/LuaDrawable.cpp -------------------------------------------------------------------------------- /src/renderer/LuaDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/LuaDrawable.h -------------------------------------------------------------------------------- /src/renderer/PlanetaryBodyRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/PlanetaryBodyRenderer.cpp -------------------------------------------------------------------------------- /src/renderer/PlanetaryBodyRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/PlanetaryBodyRenderer.h -------------------------------------------------------------------------------- /src/renderer/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/Renderer.cpp -------------------------------------------------------------------------------- /src/renderer/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/Renderer.h -------------------------------------------------------------------------------- /src/renderer/RendererQuality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/RendererQuality.h -------------------------------------------------------------------------------- /src/renderer/camera/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/camera/Camera.h -------------------------------------------------------------------------------- /src/renderer/camera/CameraUniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/camera/CameraUniforms.h -------------------------------------------------------------------------------- /src/renderer/camera/LuaCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/camera/LuaCamera.h -------------------------------------------------------------------------------- /src/renderer/camera/SimpleCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/camera/SimpleCamera.cpp -------------------------------------------------------------------------------- /src/renderer/camera/SimpleCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/camera/SimpleCamera.h -------------------------------------------------------------------------------- /src/renderer/geometry/CubeGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/geometry/CubeGeometry.h -------------------------------------------------------------------------------- /src/renderer/geometry/SphereGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/geometry/SphereGeometry.h -------------------------------------------------------------------------------- /src/renderer/lighting/DebugGBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/DebugGBuffer.cpp -------------------------------------------------------------------------------- /src/renderer/lighting/DebugGBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/DebugGBuffer.h -------------------------------------------------------------------------------- /src/renderer/lighting/EnvMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/EnvMap.cpp -------------------------------------------------------------------------------- /src/renderer/lighting/EnvMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/EnvMap.h -------------------------------------------------------------------------------- /src/renderer/lighting/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/Light.h -------------------------------------------------------------------------------- /src/renderer/lighting/PartIconLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/PartIconLight.cpp -------------------------------------------------------------------------------- /src/renderer/lighting/PartIconLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/PartIconLight.h -------------------------------------------------------------------------------- /src/renderer/lighting/PointLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/PointLight.cpp -------------------------------------------------------------------------------- /src/renderer/lighting/PointLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/PointLight.h -------------------------------------------------------------------------------- /src/renderer/lighting/ShadowCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/ShadowCamera.h -------------------------------------------------------------------------------- /src/renderer/lighting/SunLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/SunLight.cpp -------------------------------------------------------------------------------- /src/renderer/lighting/SunLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/lighting/SunLight.h -------------------------------------------------------------------------------- /src/renderer/util/Framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/Framebuffer.cpp -------------------------------------------------------------------------------- /src/renderer/util/Framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/Framebuffer.h -------------------------------------------------------------------------------- /src/renderer/util/GBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/GBuffer.cpp -------------------------------------------------------------------------------- /src/renderer/util/GBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/GBuffer.h -------------------------------------------------------------------------------- /src/renderer/util/Skybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/Skybox.cpp -------------------------------------------------------------------------------- /src/renderer/util/Skybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/Skybox.h -------------------------------------------------------------------------------- /src/renderer/util/TextDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/TextDrawer.cpp -------------------------------------------------------------------------------- /src/renderer/util/TextDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/TextDrawer.h -------------------------------------------------------------------------------- /src/renderer/util/TextureDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/TextureDrawer.cpp -------------------------------------------------------------------------------- /src/renderer/util/TextureDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/renderer/util/TextureDrawer.h -------------------------------------------------------------------------------- /src/universe/CartesianState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/CartesianState.h -------------------------------------------------------------------------------- /src/universe/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Date.cpp -------------------------------------------------------------------------------- /src/universe/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Date.h -------------------------------------------------------------------------------- /src/universe/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Events.cpp -------------------------------------------------------------------------------- /src/universe/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Events.h -------------------------------------------------------------------------------- /src/universe/PlanetarySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/PlanetarySystem.cpp -------------------------------------------------------------------------------- /src/universe/PlanetarySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/PlanetarySystem.h -------------------------------------------------------------------------------- /src/universe/Universe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Universe.cpp -------------------------------------------------------------------------------- /src/universe/Universe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/Universe.h -------------------------------------------------------------------------------- /src/universe/UniverseDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/UniverseDefinitions.h -------------------------------------------------------------------------------- /src/universe/element/SystemElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/element/SystemElement.cpp -------------------------------------------------------------------------------- /src/universe/element/SystemElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/element/SystemElement.h -------------------------------------------------------------------------------- /src/universe/element/config/GasConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/element/config/GasConfig.h -------------------------------------------------------------------------------- /src/universe/entity/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/entity/Entity.cpp -------------------------------------------------------------------------------- /src/universe/entity/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/entity/Entity.h -------------------------------------------------------------------------------- /src/universe/entity/Trajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/entity/Trajectory.h -------------------------------------------------------------------------------- /src/universe/entity/history/EntityHistory.cpp: -------------------------------------------------------------------------------- 1 | #include "EntityHistory.h" 2 | -------------------------------------------------------------------------------- /src/universe/kepler/KeplerElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/kepler/KeplerElements.cpp -------------------------------------------------------------------------------- /src/universe/kepler/KeplerElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/kepler/KeplerElements.h -------------------------------------------------------------------------------- /src/universe/predictor/OrbitPredictionServer.cpp: -------------------------------------------------------------------------------- 1 | #include "OrbitPredictionServer.h" 2 | -------------------------------------------------------------------------------- /src/universe/predictor/Prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/predictor/Prediction.h -------------------------------------------------------------------------------- /src/universe/predictor/QuickPredictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/predictor/QuickPredictor.h -------------------------------------------------------------------------------- /src/universe/propagator/Propagable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/propagator/Propagable.h -------------------------------------------------------------------------------- /src/universe/propagator/RK4Propagator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/propagator/RK4Propagator.h -------------------------------------------------------------------------------- /src/universe/vehicle/PackedVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/PackedVehicle.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/PackedVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/PackedVehicle.h -------------------------------------------------------------------------------- /src/universe/vehicle/SymmetryMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/SymmetryMode.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/SymmetryMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/SymmetryMode.h -------------------------------------------------------------------------------- /src/universe/vehicle/UnpackedVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/UnpackedVehicle.h -------------------------------------------------------------------------------- /src/universe/vehicle/Vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/Vehicle.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/Vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/Vehicle.h -------------------------------------------------------------------------------- /src/universe/vehicle/VehicleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/VehicleLoader.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/VehicleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/VehicleLoader.h -------------------------------------------------------------------------------- /src/universe/vehicle/VehicleMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/VehicleMeta.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/VehicleMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/VehicleMeta.h -------------------------------------------------------------------------------- /src/universe/vehicle/part/Link.cpp: -------------------------------------------------------------------------------- 1 | #include "Link.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/universe/vehicle/part/Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Link.h -------------------------------------------------------------------------------- /src/universe/vehicle/part/Machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Machine.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/part/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Machine.h -------------------------------------------------------------------------------- /src/universe/vehicle/part/Part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Part.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/part/Part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Part.h -------------------------------------------------------------------------------- /src/universe/vehicle/part/Piece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Piece.cpp -------------------------------------------------------------------------------- /src/universe/vehicle/part/Piece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/universe/vehicle/part/Piece.h -------------------------------------------------------------------------------- /src/util/DebugDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/DebugDrawer.cpp -------------------------------------------------------------------------------- /src/util/DebugDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/DebugDrawer.h -------------------------------------------------------------------------------- /src/util/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/FileWatcher.h -------------------------------------------------------------------------------- /src/util/InputUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/InputUtil.h -------------------------------------------------------------------------------- /src/util/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Logger.cpp -------------------------------------------------------------------------------- /src/util/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Logger.h -------------------------------------------------------------------------------- /src/util/LuaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/LuaUtil.h -------------------------------------------------------------------------------- /src/util/MathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/MathUtil.cpp -------------------------------------------------------------------------------- /src/util/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/MathUtil.h -------------------------------------------------------------------------------- /src/util/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Profiler.cpp -------------------------------------------------------------------------------- /src/util/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Profiler.h -------------------------------------------------------------------------------- /src/util/SerializeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/SerializeUtil.h -------------------------------------------------------------------------------- /src/util/ThreadUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/ThreadUtil.cpp -------------------------------------------------------------------------------- /src/util/ThreadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/ThreadUtil.h -------------------------------------------------------------------------------- /src/util/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Timer.cpp -------------------------------------------------------------------------------- /src/util/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/Timer.h -------------------------------------------------------------------------------- /src/util/UTF8Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/UTF8Util.h -------------------------------------------------------------------------------- /src/util/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/defines.h -------------------------------------------------------------------------------- /src/util/fmt/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/fmt/glm.h -------------------------------------------------------------------------------- /src/util/serializers/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/src/util/serializers/glm.h -------------------------------------------------------------------------------- /udata/input/core_rocket.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/udata/input/core_rocket.toml -------------------------------------------------------------------------------- /udata/saves/debug-save/save.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/udata/saves/debug-save/save.toml -------------------------------------------------------------------------------- /udata/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/udata/settings.toml -------------------------------------------------------------------------------- /udata/vehicles/backup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/udata/vehicles/backup.toml -------------------------------------------------------------------------------- /udata/vehicles/debug.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOpenSpaceProgram/new-ospgl/HEAD/udata/vehicles/debug.toml --------------------------------------------------------------------------------