{"id":26450846,"url":"https://github.com/cstom4994/neko_game_engine","last_synced_at":"2026-02-26T18:06:53.326Z","repository":{"id":282688520,"uuid":"675271495","full_name":"cstom4994/neko_game_engine","owner":"cstom4994","description":"A 2D game framework and utilities written in C++ / Lua","archived":false,"fork":false,"pushed_at":"2025-04-19T11:32:39.000Z","size":11161,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-19T16:54:34.180Z","etag":null,"topics":["game","game-engine","gamedev","love2d","lua","opengl"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cstom4994.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-08-06T11:19:02.000Z","updated_at":"2025-04-19T11:32:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"2654ecd8-61cb-496c-9b23-a138c382230f","html_url":"https://github.com/cstom4994/neko_game_engine","commit_stats":null,"previous_names":["cstom4994/neko_game_engine"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cstom4994/neko_game_engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fneko_game_engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fneko_game_engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fneko_game_engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fneko_game_engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cstom4994","download_url":"https://codeload.github.com/cstom4994/neko_game_engine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fneko_game_engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29867163,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T16:38:37.846Z","status":"ssl_error","status_checked_at":"2026-02-26T16:37:58.932Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["game","game-engine","gamedev","love2d","lua","opengl"],"created_at":"2025-03-18T16:06:09.319Z","updated_at":"2026-02-26T18:06:53.318Z","avatar_url":"https://github.com/cstom4994.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neko_game_engine\n\nA 2D game framework and utilities written in C++ / Lua\n\n![neko_game_engine](docs/1.png \"neko_game_engine\")\n\nNOTE: This is a \"learn by doing\" side project that I developed in my free time. I share the code with anyone who might be interested in love2d-like game engine development.\n\n\nBuilding\n---\n\nPremake + msvc should make it easy to set up neko. \nDependencies are builtin in source/extern/. Just run premake from the repository root:\n\n    premake5 embed (optional, for embeding builtin lua code)\n    premake5 luaot (optional, for embeding builtin lua code with Lua AOT)\n    premake5 vs2022\n\nSo far, this project has only been developed on the Windows platform. Although *Unix support is provided in some modules, it is still mainly based on the Windows platform. However, the difficulty of porting to *Unix is ​​not significant.\n\n\nFeature\n---\n\nBasic playable gameplay system (including animation/basic screen effects/physical collision/simple network/TiledMap markers)\n\nComplete C++/Lua bindings (with Enum and Struct fields and operators)\n\nHot resource loading (including LuaRef/Image/Sprite/TileMap/Shader)\n\nBasic Tiled map parsing and object logic processing (WIP)\n\nECS module based on C++/Lua (lua ecs with C data processing)\n\n\n\nDependencies \u0026 Code used\n---\n\n[GLFW](http://www.glfw.org/),\n[GLAD](https://github.com/Dav1dde/glad/),\n[Box2d](https://github.com/erincatto/box2d/),\n[FMOD](https://www.fmod.com/),\n[stb](https://github.com/nothings/stb/),\n[imgui](https://github.com/ocornut/imgui/),\n[lua-aot-5.4](https://github.com/hugomg/lua-aot-5.4/),\n[luasocket](https://lunarmodules.github.io/luasocket/),\n[miniz](https://github.com/richgel999/miniz/),\n[sokol_time](https://github.com/floooh/sokol/blob/master/sokol_time.h/),\n[lovr-http](https://github.com/bjornbytes/lovr-http/),\nare used as is without modification\n\nSome code in \n[microui](https://github.com/rxi/microui/),\n[love2d](https://love2d.org/),\n[spry](https://github.com/jasonliang-dev/spry/),\n[cgame](https://github.com/nikki93/cgame/),\n[cute_headers](https://github.com/RandyGaul/cute_headers/),\n[ant](https://github.com/ejoy/ant/),\nis used or referenced with modification\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcstom4994%2Fneko_game_engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcstom4994%2Fneko_game_engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcstom4994%2Fneko_game_engine/lists"}