Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

noah1510/redhand

Repository files navigation

logo Welcome to RedHand

GitHub license build status code quality Matrix stable release

The goal is to create an easy to use 2D Game engine using C++. Its purpose is to give new programmers an easy introduction into game programming and even more abstract topics like object oriented programming and graphics programming in general. The used OpenGL APIs are GLFW and glad so this project should run on all operating systems. This Project is still in the alpha phase and there might be drastic changes to the codebase and API causing your Programs to break with an update. Backwards compatibility will be a consideration after the release of version 1.0.0 everything prior to that might include drastic changes! This Project provides several functions and objects that make it easier to start building your own games. While these objects give you a simple way to get started, they also allow you to insert advanced OpenGL commands.

You can find all the documentation here.

License information

The code is licensed under the LGPL-3.0 License. All the other stuff, like Textures, Images and Sounds are Licensed under CC-0. You can find the full information here.

How to compile/install this project

There are two release types tagged and latest. The tagged version is generally more stable and tested while the latest version has all the features but might break some games.

Ubuntu (focal/groovy) based distributions

There are two personal package archieves you can choose from:

Please note that I don't actively suport ubuntu bionic or even other linux distros. This project should compile on all those platforms just fine if you figure the dependencies out (and for ubuntu add repositories for newer compiler versions).

Windows

For an mostly automated install check the manual Installation.

You can download the either the latest or the last tagged realese form github. The dlls are automatically compiled and uploaded on every tagged and versioned commit. You can just include those dlls and the headers to you project to build your program using redhand. You might also need to install glfw to get it working properly Make sure your C++ compiler supports the <filesystem> include (gcc > 9.2.0 or llvm > 9) since redhand needs it

Manually compiling the project

Extra Notes for contibutors

All changes have to be made on a dev branch and merged to main via a pull request.

If you want to contribute, first fork the project. After that you can make all the changes you want on your fork. If you think your changes are ready for the main repository open a pull request to the dev-noa branch not main. The CI has to succeed in compiling before you are allowed to push your changes. dev-noa is merged into master on a regular basis, when the changes seem stable.

Getting started

If you want to get started using this project, clone the testgame somewhere and try to understand what the code in src does. You can safely ignore src/main.cpp since that code is mostly glue to setup redhand and will be mostly the same for every project.

How to contribute to this project

Just open a new issue if you find a bug or miss a feature, just make shure to use the appropiate tags.

If you have implemented a new feature or bugfix just make a pull request and wait till I have time to watch it. Please document your changes, this will mak it easier for everyone.

Also feel free to propose updates/changes for the wiki to improve the overall documentation and allow newcomers to have more fun (because they don't have to guess what the functions and objects are doing). Note for potential developers: please send pull-request to the dev-noa branch.