All Projects → sriharshachilakapati → Silenceengine

sriharshachilakapati / Silenceengine

Licence: mit
A cross platform 2D / 3D Java Game Engine (Desktop / Html5 / Android)

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Silenceengine

Limonengine
3D FPS game engine with full dynamic lighting and shadows
Stars: ✭ 331 (+185.34%)
Mutual labels:  game-engine, openal, opengl
Openswe1r
An Open-Source port of the 1999 Game "Star Wars Episode 1: Racer"
Stars: ✭ 236 (+103.45%)
Mutual labels:  openal, opengl, mac
Dotfeather
A closs-platform generic gameengine built on C#/.NET Standard 2.1
Stars: ✭ 28 (-75.86%)
Mutual labels:  game-engine, openal, opengl
Daemon
The Dæmon game engine. With some bits of ioq3 and XreaL.
Stars: ✭ 136 (+17.24%)
Mutual labels:  game-engine, openal, opengl
Opentk
The Open Toolkit library is a fast, low-level C# wrapper for OpenGL, OpenAL & OpenCL. It also includes windowing, mouse, keyboard and joystick input and a robust and fast math library, giving you everything you need to write your own renderer or game engine. OpenTK can be used standalone or inside a GUI on Windows, Linux, Mac.
Stars: ✭ 2,284 (+1868.97%)
Mutual labels:  game-engine, openal, opengl
Mos
Lightweight game engine.
Stars: ✭ 153 (+31.9%)
Mutual labels:  game-engine, openal, opengl
Klayge
KlayGE is a cross-platform open source game engine with plugin-based architecture.
Stars: ✭ 1,646 (+1318.97%)
Mutual labels:  game-engine, openal, opengl
Engine
A basic cross-platform 3D game engine
Stars: ✭ 208 (+79.31%)
Mutual labels:  game-engine, opengl, mac
Ouzel
C++ game engine for Windows, macOS, Linux, iOS, tvOS, Android, and web browsers
Stars: ✭ 607 (+423.28%)
Mutual labels:  game-engine, openal, opengl
Kepler3d
OpenGL and C++14 game engine that loads glTF 2.0
Stars: ✭ 9 (-92.24%)
Mutual labels:  game-engine, opengl
Simpleton Engine
What a stupid name for a library
Stars: ✭ 42 (-63.79%)
Mutual labels:  game-engine, opengl
Pharaohstroy
A maplestory IDE which can develop the multi-platform maplestory game
Stars: ✭ 69 (-40.52%)
Mutual labels:  game-engine, opengl
Permafrost Engine
An OpenGL RTS game engine written in C
Stars: ✭ 851 (+633.62%)
Mutual labels:  game-engine, opengl
Magnum Plugins
Plugins for the Magnum C++11/C++14 graphics engine
Stars: ✭ 66 (-43.1%)
Mutual labels:  game-engine, opengl
Nya
[WIP] Game Engine written in Crystal
Stars: ✭ 16 (-86.21%)
Mutual labels:  game-engine, opengl
Duality
a 2D Game Development Framework
Stars: ✭ 1,231 (+961.21%)
Mutual labels:  game-engine, opengl
Foster Ts
A WebGL + TypeScript 2D Game framework with a Scene>Entity>Component model.
Stars: ✭ 112 (-3.45%)
Mutual labels:  game-engine, html5
Yage
Simple game engine, written in C++
Stars: ✭ 7 (-93.97%)
Mutual labels:  game-engine, opengl
Magnum Bootstrap
Bootstrap projects for Magnum C++11/C++14 graphics engine
Stars: ✭ 69 (-40.52%)
Mutual labels:  game-engine, opengl
Opengl Renderer
Modern OpenGL renderer written in C++17
Stars: ✭ 85 (-26.72%)
Mutual labels:  game-engine, opengl

logo

What is SilenceEngine?

SilenceEngine is a 2D/3D game engine that takes care of low level aspects of game development like graphics, input handling, asset loading and collision detection for you, meaning you only need to make your game. It lets you focus on the game play and game design, by doing most of the hard work for you.

Features

The main feature of SilenceEngine is it's simplicity, and it greatly reduces the amount of code you need to write by taking care of almost everything automatically for you. Though it is meant to take care of everything automatically, it is also completely customizable. Here are a list of features of it.

  • Truly Cross Platform:

    SilenceEngine games are truly cross platform, it lets you compile to Desktop (Windows / Linux / MacOS), Android and also HTML5, all from a single code base. You can chose which platform(s) to target, and also extend it with platform specific code easily.

  • State Based Games:

    SilenceEngine supports separating the game logic into different states, like intro state, story state, play state, high score state, game over state, and any other state that you are going to create. This allows you to keep stuff separate and your code base clean and easy to read.

  • Completely Customizable:

    SilenceEngine is designed to be completely customizable. You can change everything from the ResourceLoader to the Game Loop, and you can also change the entity parameters. It is totally flexible and also easy to use. It is finally up to you whether you want to extend the components, or to re-implement them in your way.

  • Automatic Collision Detection:

    SilenceEngine features with automatic collision detection. All you need to do is give your entities a collision shape, and register the classes in the collider, and the collisions, along with collision response is done for you, in both 2D and 3D. The CollisionEngine uses SAT (Separating Axis Theorem) to determine collisions, and hence you get your collision response with good accuracy.

  • Tiled MAP Editor Support:

    SilenceEngine has support for loading and rendering maps made with the Tiled Map Editor. Currently supports automatically rendering of Orthogonal and Isometric maps, but the support will soon increase to all other map formats. The parser can parse any TMX format (not compressed, and XML only) though.

  • Object Oriented Wrappers for OpenGL and OpenAL:

    If you think that all the above features are not useful for you, and you want more performance and you love going low level, SilenceEngine provides object oriented wrapper classes for OpenGL and OpenAL. It is up to you how to use them, and other parts of the SilenceEngine cooperates with you.

The above list is only half what SilenceEngine offers to you. It is currently in heavy development, and more features are yet to arrive. In the meanwhile, take a look at the source code, and the example games to get an idea of how to use this engine.

Is it only for games?

Perhaps not, you can create any form of OpenGL application using SilenceEngine. It provides you with OpenGL classes in the com.shc.silenceengine.graphics.opengl package, which cleanly wraps the OpenGL functions into Java classes, making them more easy to use. All you have to take care of is that you must call the dispose() on those objects when you no longer need them.

It is also easier to use in development mode as we will check for OpenGL errors after every call to the OpenGL functions and report you the errors, if any exist, in the form of GLException allowing you to get rid of the errors quickly and easily. By the way, everything in SilenceEngine is modern, and there is no deprecated stuff. I'm proud to say that this engine only uses OpenGL 3.3 (no deprecated OpenGL).

Licence

  • The engine, and all the backends in this repo are licenced under MIT licence, which you can find here.
  • This desktop backend uses LWJGL 3. You can find it's licence here.
  • The GWT backend uses WebGL4J, GWT-AL and GwtOpentype libraries which operate on MIT licence.
  • The Android backend uses AndroidOpenAL library which uses LGPL v3 licence.
  • The engine uses EasyJSON and EasyXML libraries which are released under MIT licence.

Links

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].