{"id":27363616,"url":"https://github.com/r3shape/koncept","last_synced_at":"2025-04-13T04:30:41.054Z","repository":{"id":256291935,"uuid":"850669809","full_name":"r3shape/koncept","owner":"r3shape","description":"A pluggable, extensible, open-source game engine, written in C.","archived":false,"fork":false,"pushed_at":"2025-04-12T22:21:36.000Z","size":5435,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-12T23:20:44.380Z","etag":null,"topics":["c","c99","extendable","game-engine","opengl","pluggable"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/r3shape.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-09-01T12:57:58.000Z","updated_at":"2025-04-12T22:21:39.000Z","dependencies_parsed_at":"2024-11-24T20:33:01.402Z","dependency_job_id":"7f257b66-da80-4866-af15-487be304cf4f","html_url":"https://github.com/r3shape/koncept","commit_stats":null,"previous_names":["stozak/lotus","f4r4w4y/lotus","d34d0s/anntwinetta","f4r4w4y/anntwinetta","d34d0s/lotus","d34d0s/lotus-archive","r3shape/r3engine","r3shape/koncept"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r3shape%2Fkoncept","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r3shape%2Fkoncept/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r3shape%2Fkoncept/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r3shape%2Fkoncept/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r3shape","download_url":"https://codeload.github.com/r3shape/koncept/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248663148,"owners_count":21141702,"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":["c","c99","extendable","game-engine","opengl","pluggable"],"created_at":"2025-04-13T04:30:40.397Z","updated_at":"2025-04-13T04:30:41.027Z","avatar_url":"https://github.com/r3shape.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![koncept](koncept/assets/r3-sticker.png)\n\n![GitHub Stars](https://img.shields.io/github/stars/r3shape/koncept?style=for-the-badge\u0026label=stars\u0026labelColor=black\u0026color=white)\n![License](https://img.shields.io/badge/mit-badge?style=for-the-badge\u0026logo=mit\u0026logoColor=white\u0026label=License\u0026labelColor=black\u0026color=white)\n\n---\n\n### Relevant Links\n| [Discord](https://discord.gg/kreGBCVsQQ) | [Reddit](https://www.reddit.com/r/r3shape/) | [Discussions](https://github.com/r3shape/koncept/discussions) | [FAQ](https://github.com/r3shape/koncept/wiki/koncept-FAQ) | [Example Code](https://github.com/r3shape/koncept/tree/main/examples) |  \n\n\n## Building the Engine Source\n\n\u003e **NOTE**: If you're using the `r3make` CLI tool, ensure **Python** is installed. For more information, check out the [r3make Repository](https://github.com/r3shape/r3make).\n\nkoncept includes **pre-configured `.r3make` files** for easy setup and compilation. **[r3make](https://github.com/r3shape/r3make)** is the recommended tool for fast, simple, efficient builds.\n\n---\n\n### Option 1: Build with **r3make** (Recommended)\n\n1. **Install r3make**:  \n   Install via **PyPI**:  \n   ```bash\n   pip install r3make\n   ```\n\n2. **Clone the Repository**:  \n   ```bash\n   git clone https://github.com/r3shape/koncept\n   ```\n\n3. **Navigate to the `.r3make` directory:\n   ```bash\n   cd koncept\n   ```\n\n4. **Build the Engine**:  \n   - Target: `koncept` builds the `koncept.dll` from `koncept.core`\n   ```bash\n   r3make koncept\n   ```\n5. **Build the Engine Demos**:  \n   - Target: `examples` builds the `examples` directory into corresponding `exe` files in the same output directory as the `koncept` build target.\n   ```bash\n   r3make examples\n   ```\n\n5. **Output**:  \n   The compiled `koncept.dll`, along with example exe files will be located in the `build` directory.\n\n---\n\n### Option 2: Manual Compilation\n\nFor those who wish to **wield the source** themselves:\n\n1. **Clone the Repository**:  \n   ```bash\n   git clone https://github.com/r3shape/koncept\n   cd koncept\n   ```\n\n2. **Compile the Engine**:  \n   Manually compile using **GCC**:  \n   ```bash\n   gcc -c koncept/koncept.core/src/*.c -Iengine/include -o bin/ofiles/*.o\n   gcc -shared bin/ofiles/*.o -lopengl32 -lgdi32 -llibx -Lexternal/libx/bin -o build/koncept.dll\n   ```\n\n3. **Install Compiled Binaries**:  \n   ```bash\n   cp bin/koncept.dll your_project/bin/\n   ```\n\n\u003cbr\u003e\n\n## Building Projects with **koncept**\n\n1. **Prepare Your Project**:  \n   Set up your source files, including necessary paths.\n\n2. **Compile with r3make or GCC**:  \n   Example using **GCC**:  \n   ```bash\n   gcc my_project.c -Iengine/include -lr3 -o my_project.exe\n   ```\n\n\u003cbr\u003e\n\n## koncept Contributors\n\n\u003ca href=\"https://github.com/r3shape/koncept/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=r3shape/koncept\"/\u003e\n\u003c/a\u003e\n\n\u003cbr\u003e\n\n## License\n\nkoncept is licensed under the **MIT License**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr3shape%2Fkoncept","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr3shape%2Fkoncept","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr3shape%2Fkoncept/lists"}