https://github.com/grz0zrg/es
Discontinued cross-platform open source 2D game engine done in C++
https://github.com/grz0zrg/es
Last synced: 3 months ago
JSON representation
Discontinued cross-platform open source 2D game engine done in C++
- Host: GitHub
- URL: https://github.com/grz0zrg/es
- Owner: grz0zrg
- License: mit
- Created: 2017-04-22T15:40:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-22T16:46:58.000Z (about 8 years ago)
- Last Synced: 2025-01-29T12:28:36.751Z (5 months ago)
- Language: C
- Size: 9.73 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ES
ES Engine is an old (2006 - 2008) open source 2D game engine done in C++. It is cross-platform and can use SDL 1.2 or OpenGL 2 for the rendering.
This engine was ported and was successfully used on the ARM [GP2X](https://en.wikipedia.org/wiki/GP2X), a Linux-based handheld video game console and portable media player developed by South Korean company GamePark Holdings, some app. such as [FPaint](http://dl.openhandhelds.org/cgi-bin/gp2x.cgi?0,0,0,0,4,2582) were made with this engine.
The integrated libraries include:
* SDL
* SDL Gfx
* SDL Image
* SDL Mixer
* SDL Ttf
* SDL Net
* OpenGL
* Lua
* tinyXML
* Box2DFeatures:
* OpenGL or SDL renderer
* Powerful resources loading system which can load resources directly from a single packed file (oldschool style ;))
* Build-in functions for sprites rotation, transparencies etc.
* Built-in set of drawing functions (pixels, circle, lines, rectangles etc.)
* Built-in set of transitions (screen fading)
* 2D RPG map renderer (based on the code of this [article](http://www.games-creators.org:80/wiki/R%C3%A9aliser_un_RPG_en_C_avec_SDL_et_FMOD/L%27%C3%A9diteur_de_carte))
* Small Box2D wrapper for physics stuff
* Small LUA wrapper
* Small mySQL wrapper
* Small SDL_net wrapper for network stuff
* Handy utilities; writing/reading config. files, math functions, timers, framerate computation, threads, packer, md5
* Draw TTF fonts text with style and justification
* Specific functions for OpenGL (drawing 2D quads)
* GP2X specific stuff (overclocking, applying MMU Hack, touchscreen support etc.)
* Logs
* Many examples
* Documentation with DoxygenThis engine was bundled with a RPG map editor with tile-based collision system, the editor support four tiles layer (this is enhanced code from an article), the maps could be loaded by the engine and rendered very easily, the UI was made with the Guichan library, there was also a self made files packer which use the Boost library.
This is one of my first "big" library project. :)

