Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimmythepage/jtpe
A simple 2D C++ Game Engine
https://github.com/jimmythepage/jtpe
Last synced: 3 days ago
JSON representation
A simple 2D C++ Game Engine
- Host: GitHub
- URL: https://github.com/jimmythepage/jtpe
- Owner: jimmythepage
- License: mit
- Created: 2020-05-08T10:53:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T22:05:49.000Z (almost 2 years ago)
- Last Synced: 2023-11-12T07:22:51.658Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 17.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JTPE
JTPEngine is a 2D C++ Game Engine.
Its goal is to provide an abstract, lightweight and cross-platform ready engine that uses only C++/std and JSON scripting.
This engine is designed for coders who want a starting point to create 2D apps and games without messing with major engines on the market.# Modules and build examples:
JTPE is currently composed by several modules:
- File manager, including encrypted/decrytped loadings
- Easy task/thread manager
- Abstract 2D rendering with logic scale rendering
- Abstract Input manager
- Game save/load system
- GUI, (Animated) sprites, game levels JSON scripting.
- video player (currently using ffmpeg)
- audio player with 16 channels
- REST library to handle GET/POST requests easily and asynchronouslyThe GUI module is made to easily load complex screens composed by re-usable JSON modules.
The build example is a ready to use Windows port created for Visual Studio (2019).
The engine, with the due adaption work, can be ported to any platform.# Installation:
No CMake is provided. A common shared library of class is the center of the engine and a ready to use x64 Windows implementation can be downloaded and used right away.# Roadmap:
JTPE has a set Milestone to reach its alpha state once several major features will be released.
The next big things will be:
- porting to OGLES/OGL (getting rid of SDL and other third parties libraries)
- Particles integration
- Simple game example uploaded# Contributing:
Any help of any kind will be apprieciated, feel free to contribute and contact me for any question.# Credits:
JTPE engine was developed by Fabio Corrirossi.
JTPE engine is an abstract layer and the current Windows implementation is based on the following libraries:
- JSON for Modern C++ by Niels Lohmann .
- SDL2 https://www.libsdl.org/download-2.0.php
- FFMPEG https://www.ffmpeg.org/
- Steamworks SDK (https://partner.steamgames.com/doc/sdk)
- SDL_mixer https://www.libsdl.org/projects/SDL_mixer/
- LIBCURL https://curl.haxx.se/libcurl/ and CURLPP http://www.curlpp.org/The rights to use those libraries remain on their owners licenses.
My goal is to use implementation using only GNU/MIT or other popular OpenSource libraries, to keep JTPE really free to use.# License:
JTPE is under the MIT license (see License file).
So, it is really free to use/change/re-distribute as you want.
Feel free to drop me a message if you want to use for any legit kind of projects.