All Projects → EngoEngine → Engo

EngoEngine / Engo

Licence: mit
Engo is an open-source 2D game engine written in Go.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Engo

Rigelengine
A modern re-implementation of the classic DOS game Duke Nukem II
Stars: ✭ 393 (-71.02%)
Mutual labels:  game-engine, opengl, entity-component-system
Yage
Simple game engine, written in C++
Stars: ✭ 7 (-99.48%)
Mutual labels:  game-engine, opengl, entity-component-system
Etengine
Realtime 3D Game-Engine with a focus on space sim. Written in C++ 14
Stars: ✭ 408 (-69.91%)
Mutual labels:  game-engine, opengl, entity-component-system
Openage
Free (as in freedom) open source clone of the Age of Empires II engine 🚀
Stars: ✭ 10,712 (+689.97%)
Mutual labels:  game-engine, opengl, entity-component-system
Pmtech
Lightweight, multi-platform, data-oriented game engine.
Stars: ✭ 478 (-64.75%)
Mutual labels:  game-engine, opengl, entity-component-system
Permafrost Engine
An OpenGL RTS game engine written in C
Stars: ✭ 851 (-37.24%)
Mutual labels:  game-engine, opengl
Kepler3d
OpenGL and C++14 game engine that loads glTF 2.0
Stars: ✭ 9 (-99.34%)
Mutual labels:  game-engine, opengl
Imac Tower Defense
OpenGl 4.4 game made with Entity Component System
Stars: ✭ 28 (-97.94%)
Mutual labels:  opengl, entity-component-system
Magnum Plugins
Plugins for the Magnum C++11/C++14 graphics engine
Stars: ✭ 66 (-95.13%)
Mutual labels:  game-engine, opengl
Ouzel
C++ game engine for Windows, macOS, Linux, iOS, tvOS, Android, and web browsers
Stars: ✭ 607 (-55.24%)
Mutual labels:  game-engine, opengl
Dotfeather
A closs-platform generic gameengine built on C#/.NET Standard 2.1
Stars: ✭ 28 (-97.94%)
Mutual labels:  game-engine, opengl
Pharaohstroy
A maplestory IDE which can develop the multi-platform maplestory game
Stars: ✭ 69 (-94.91%)
Mutual labels:  game-engine, opengl
Nya
[WIP] Game Engine written in Crystal
Stars: ✭ 16 (-98.82%)
Mutual labels:  game-engine, opengl
Spartanengine
Game engine with an emphasis on architectual quality and performance
Stars: ✭ 869 (-35.91%)
Mutual labels:  game-engine, entity-component-system
Raylib
A simple and easy-to-use library to enjoy videogames programming
Stars: ✭ 8,169 (+502.43%)
Mutual labels:  opengl, game-engine
Simpleton Engine
What a stupid name for a library
Stars: ✭ 42 (-96.9%)
Mutual labels:  game-engine, opengl
Mini3d
3D Software Renderer in 700 Lines !!
Stars: ✭ 1,320 (-2.65%)
Mutual labels:  game-engine, opengl
Duality
a 2D Game Development Framework
Stars: ✭ 1,231 (-9.22%)
Mutual labels:  game-engine, opengl
Rust Game Development Frameworks
List of curated frameworks by the **Game Development in Rust** community.
Stars: ✭ 81 (-94.03%)
Mutual labels:  opengl, entity-component-system
Photonbox
A portable modern OpenGL Game-Engine with focus on PBR
Stars: ✭ 93 (-93.14%)
Mutual labels:  game-engine, opengl

Engo

GoDoc Join the chat at https://gitter.im/EngoEngine/engo License Build Status Build status Go Report Card Coverage Status

A cross-platform game engine written in Go following an interpretation of the Entity Component System paradigm. Engo is currently compilable for Mac OSX, Linux and Windows. With the release of Go 1.4, supporting Android and the inception of iOS compatibility, mobile has been be added as a release target. Web support (wasm) is also available.

v1.0 is now available! To celebrate, there will be a game jam coming soon to celebrate the release, start actually building things and hopefully find any issues. Updates for this will come soon.

Getting in touch / Contributing

We have a gitter chat for people to join who want to further discuss engo. We are happy to discuss bugs, feature requests and would love to hear about the projects you are building!

Getting Started

Theory: common vs engo

There are currently two major important packages within this repository: github.com/EngoEngine/engo and github.com/EngoEngine/engo/common.

The top level engo package contains the functionality of creating windows, starting the game, creating an OpenGL context and handling input. It is designed to be used with Systems designed as per github.com/EngoEngine/ecs specifications. The common package contains our ECS implementations of common game development Systems like a RenderSystem or CameraSystem.

Practice: Getting it to Run

  1. First, you have to install some dependencies:
  2. If you're running on Debian/Ubuntu: sudo apt-get install libasound2-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev xorg-dev libgl1-mesa-dev git-all
  3. If you're running on Windows you'll need a gcc compiler that the go tool can use and have gcc.exe in your PATH environmental variable. We recommend Mingw since it has been tested. You'll also need git installed, we recommend getting it from The official Git site
  4. If you're on OSX, you will also need Git. You can find instructions here. You can also use homebrew to install git as well. Open an issue if you have any issues
  5. Then, you can go get it: go get -u github.com/EngoEngine/engo
  6. You may also want to get the dependencies of platform specific builds, so that build tools like godef can use them: go get -u -tags js ./... go get -u -tags android ./...
  7. Now, you have two choices:
  8. Visit our website, which hosts a full-blown tutorial series on how to create your own game, and on top of that, has some conceptual explanations;
  9. Check out some demos in our demos folder.
  10. Finally, if you run into problems, if you've encountered a bug, or want to request a feature, feel free to shoot us a DM or create an issue.

Breaking Changes Since v1.0

Engo is always undergoing a lot of optimizations and constantly gets new features. However, this sometimes means things break. In order to make transitioning easier for you, we have a list of those changes, with the most recent being at the top. If you run into any problems, please contact us at gitter.

  • TMXObject Width and Height is in pixels, and can be fractional. This has changed from an int to a float64.
  • TMXTileset now uses a Spritesheet instead of a Texture. This helps keep track of the guid better and allows the gid to not start at zero and have skips in it, as well as for borders and spacing in the tile sheet.
  • TMX Level's objects have all been rolled into Object rather than have separate things like "PolyLineObject". This is to be consistent with the TMX format.
  • The Shader interface now has a SetCamera(*CameraSystem) method. This method allows shaders to automatically update the camera system as it changes, such as between scenes or when the camera system is added.
  • The domain engo.io has expired. Now use github.com/EngoEngine/engo as the import path, and the site can be located at engoengine.github.io

Roadmap to v1.1

A list of issues for v1.1 can be found here. There's always room for improvement! Feel free to submit proposals, open issues, and let us know how we can improve!

History

Engo, originally known as Engi was written by ajhager as a general purpose Go game engine. With a desire to build it into an "ECS" game engine, it was forked to github.com/paked/engi. After passing through several iterations, it was decided that the project would be rebranded and rereleased as Engo on its own GitHub organization.

Credits

Thank you to everyone who has worked on, or with Engo. None of this would be possible without you, and your help has been truly amazing.

These are 3rd party projects that have made engo possible.

  • The original engi game engine which engo was based off of (BSD license)
  • Oto, a low-level cross-platform library to play sound. The AudioSystem uses this and is based on the audio package used in Ebiten.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].