{"id":17223403,"url":"https://github.com/razish/xsngine","last_synced_at":"2025-07-07T03:08:24.505Z","repository":{"id":10156847,"uuid":"12236619","full_name":"Razish/xsngine","owner":"Razish","description":"C++/SDL2/OpenGL engine for low latency games","archived":false,"fork":false,"pushed_at":"2018-04-01T13:26:56.000Z","size":22785,"stargazers_count":11,"open_issues_count":44,"forks_count":6,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-14T00:34:55.546Z","etag":null,"topics":["c-plus-plus","game-engine","linux","opengl"],"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/Razish.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}},"created_at":"2013-08-20T06:54:48.000Z","updated_at":"2022-08-17T17:30:09.000Z","dependencies_parsed_at":"2022-08-07T05:15:31.357Z","dependency_job_id":null,"html_url":"https://github.com/Razish/xsngine","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Razish/xsngine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Razish%2Fxsngine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Razish%2Fxsngine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Razish%2Fxsngine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Razish%2Fxsngine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Razish","download_url":"https://codeload.github.com/Razish/xsngine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Razish%2Fxsngine/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264005172,"owners_count":23542829,"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-plus-plus","game-engine","linux","opengl"],"created_at":"2024-10-15T04:08:14.895Z","updated_at":"2025-07-07T03:08:24.486Z","avatar_url":"https://github.com/Razish.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xsngine [![Build Status](https://travis-ci.org/Razish/xsngine.svg?branch=master)](https://travis-ci.org/Razish/xsngine) #\nA simple engine written in C++ using SDL and OpenGL.  \nBuilt for high performance, low-latency games using modern rendering techniques.  \nWritten with native execution on 32/64 bit Windows, Linux and Mac in mind.\n\nDon't expect anything great, unless you're willing to make it =]\n\n# Core contributors #\n\n* Kieren \"Razish\" McDevitt (maintainer, designer, lead programmer)\n* AstralSerpent (general programming)\n* Alex \"Xycaleth\" Lo (lead graphics programming)\n\n# Contributing #\n\nPull requests may be accepted provided they /try/ to follow the coding style guidelines (see CODE_STYLE_CONVENTIONS)  \nPlease discuss with a project maintainer before making any major changes to avoid wasted effort =]  \nAll code must be compatible with the MIT licence (see LICENSE)\n\n# Related Repos #\n* [xsngine-assets](https://github.com/Razish/xsngine-assets)\n* [xsngine-tools](https://github.com/Razish/xsngine-tools)\n\n# Compiling #\n\n## General ##\nThere is a scons project capable of producing Release, Debug and Optimised-Debug builds. You can also force 32 bit builds.  \nThere are some project files provided for VS2013, CodeLite and Code::Blocks which just invoke scons. This is for ease of debugging.  \nSteps:\n* Install Python 2.7\n* Install SCons (preferrably latest, at-least 2.3.0)\n* Run `scons` from the `src` directory\n\n\n## Windows ##\n\nMake sure `C:\\Python27` and `C:\\Python27\\Scripts` are in your `%PATH%` environment variable.  \nInstall Visual Studio 2015 Community Edition or later for C++ language features.  \nAll projects use scons under the hood, and there are project files available for VS2015, CodeLite and Code::Blocks.  \nYou can also run a build from the command-line with `scons -Q` from within the `src` directory.\n\n## Linux ##\n\nYou will require `libsdl2-dev`, `libglu1-mesa-dev`, `libfreetype6-dev` and `libpng16-dev` (which is not available in the main repositories as of Ubuntu 14.10)  \n`libfreetype6-dev` depends on `libpng12-dev`, so you will have to install that first, and then install `libpng16-dev` (`dimensio/libpng16-deb`) with the following method:\n\n```bash\n$ git clone https://github.com/dimensio/libpng16-deb.git \u0026\u0026 cd libpng16-deb\n$ sudo apt-get install bundler curl\n$ bundle install\n$ make\n$ sudo dpkg -i ./*.deb\n```\n\nTo compile, run the following  \n```bash\n$ cd src\n$ scons -Q\n```\n\n## Mac ##\n\nYou will need to install Apple Developer Tools from the App Store, then use HomeBrew/brew to install git, python and scons.  \nAs Mac and Linux both have a UNIX environment + tools, the process between the two is much the same.\n\n\n# Debugging #\nAll the provided project files assume there is an executable file named `xsngine` in the current working directory.  \nBecause different platforms will have different binary names, and these tools are used on all platforms, it is recommended to create a symlink from `xsngine.exe` to e.g. `xsn.x86.exe` - On Windows you will require the Win32 Symlink Extensions.  \n\nRun the binary with `+set com_path \"../bin\"` to load assets correctly. See [xsngine-assets](https://github.com/Razish/xsngine-assets) for these files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frazish%2Fxsngine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frazish%2Fxsngine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frazish%2Fxsngine/lists"}