{"id":13731229,"url":"https://github.com/GentenStudios/QuartzEngine","last_synced_at":"2025-05-08T04:32:20.261Z","repository":{"id":216134063,"uuid":"147968395","full_name":"GentenStudios/QuartzEngine","owner":"GentenStudios","description":"Nolonger used, see Phoenix repo","archived":true,"fork":false,"pushed_at":"2019-12-29T10:58:17.000Z","size":10619,"stargazers_count":34,"open_issues_count":33,"forks_count":10,"subscribers_count":10,"default_branch":"develop","last_synced_at":"2024-08-29T00:02:02.773Z","etag":null,"topics":["3d-graphics","cpp","game-engine","opengl","voxels"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GentenStudios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-08T20:41:47.000Z","updated_at":"2024-08-27T19:42:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"4871c543-0be6-465a-972f-de0b616e8ee3","html_url":"https://github.com/GentenStudios/QuartzEngine","commit_stats":null,"previous_names":["gentenstudios/quartzengine","gentenstudios/quartz-engine"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GentenStudios%2FQuartzEngine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GentenStudios%2FQuartzEngine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GentenStudios%2FQuartzEngine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GentenStudios%2FQuartzEngine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GentenStudios","download_url":"https://codeload.github.com/GentenStudios/QuartzEngine/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224702175,"owners_count":17355509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["3d-graphics","cpp","game-engine","opengl","voxels"],"created_at":"2024-08-03T02:01:25.615Z","updated_at":"2024-11-14T22:30:32.493Z","avatar_url":"https://github.com/GentenStudios.png","language":"C++","readme":"[![Build status](https://ci.appveyor.com/api/projects/status/ryoqb5xj56jq0e04?svg=true)](https://ci.appveyor.com/project/GentenStudios/QuartzEngine) [![Build Status](https://api.travis-ci.org/GentenStudios/QuartzEngine.svg?branch=develop)](https://travis-ci.org/GentenStudios/QuartzEngine)\n# QUARTZ ENGINE\n## Introduction\nQuartz Engine is designed to aid the creation of games with a unique approach to adding content. Quartz will provide lightweight, generic game functionality through an API. The primary feature of Quartz is its scripting functionality, allowing engines to be built so game creators can create a game using only scripts while the heavy lifting is driven in C++. The engine may also provide other useful tools to help someone creating a game.\n\nThis will be what our genre specific engines (voxel sandbox, first person shooter, adventure) will be built on.\n\nOur first project is coded [Project Phoenix](https://github.com/GentenStudios/quartz-engine/wiki/Project-Phoenix) and is centered around voxels. This is what we will use to test and improve Quartz with during its initial development.\n\n## Community\n[Here's a link to our public discord server](https://discord.gg/XRttqAm), where we collaborate and discuss the development of the engine.\n\n## Components\nThese components make up the features of Quartz\n### Lua Scripting\nQuartz will provide the ability to load and run lua scripts to add content to a game. This is the main feature of Quartz engine that makes it unique. By design, a launcher application will pass a client or server scripts to load that provide all game content, the C++/ game engine should never provide content on its own.\n### Rendering\nQuartz will provide an API that engines can use to implement rendering.\n### Networking\nThe library will provide an API that engines can use to implement networking capabilities. This should handle authentication and sending protocols while the specific engine. \n### Logging\nThe engine will provide basic logging functionality.\n### GUI\nCurrently we will implement ImGUI but a in house solution may be a part of our future plans.\n\n## Dependencies\n- CMake (Version \u003e= 3.0)\n- A C++17 compatible compiler. The following have been tested\n  - Visual Studio 2017 \u0026 2019 (MSVC \u003e= 19.14)\n  - Clang (\u003e= 5.0.0)\n  - GCC (\u003e= 4.8.4)\n- OpenGL (Version \u003e= 3.3)\n\n## Build Instructions\nOnce cloned, navigate to the projects root directory and execute the following commands in a terminal.\n\n  1. `mkdir Build`\n  2. `cd Build`\n  3. `cmake ..`\n  4. `cmake --build . --target QuartzSandbox`\n\nNow follow the platform specific instructions detailed below.\n\n### Visual Studio\n  - Open the generated solution file in the `Build/` folder in Visual Studio\n  - Set the Startup Project to `QuartzSandbox`.\n  - At this point you should be able to run, since the project should have already been\n    built in step 2. above. You can always build the traditional way with Visual Studio.\n  - And voila, all done. Now you should be able to run the project!\n\n### Linux, Mac OS X, MSYS\n \n  - Navigate to the `Build/QuartzSandbox` folder and run `./QuartzSandbox` to run the executable.\n\n## Coding Standards\n[Here's a link to our Coding Standards.](https://github.com/GentenStudios/Genten/wiki/Dev:-Home)\nYou can also have a look at our [wiki](https://github.com/GentenStudios/quartz-engine/wiki) for more information..\n","funding_links":[],"categories":["Engines"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGentenStudios%2FQuartzEngine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGentenStudios%2FQuartzEngine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGentenStudios%2FQuartzEngine/lists"}