new entries

This commit is contained in:
Trilarion 2017-12-04 23:13:49 +01:00
parent 5bd074bb3b
commit b058793c01
23 changed files with 302 additions and 4 deletions

View File

@ -11,11 +11,11 @@ See also the list of [popular games on Github](https://github.com/leereilly/game
## Contents
- [Libraries](library/_toc.md) (7)
- [Frameworks](framework/_toc.md) (28)
- [Libraries](library/_toc.md) (8)
- [Frameworks](framework/_toc.md) (44)
- [Adventures & Visual Novels](adventure/_toc.md) (8)
- [RPGs](rpg/_toc.md) (6)
- [Simulation](simulation/_toc.md) (3)
- [RPGs](rpg/_toc.md) (7)
- [Simulation](simulation/_toc.md) (4)
- [Strategy](strategy/_toc.md) (17)
## Contributing

View File

@ -1,29 +1,44 @@
# Game frameworks
- [Arianne / Marauroa](arianne.md)
- [Blender game engine](blender_game_engine.md)
- [COCOS2D-X](cocos2dx.md)
- [Dash Engine](dash.md)
- [ENIGMA](enigma.md)
- [EasyRPG Player](easyrpgplayer.md)
- [Flare Engine](flare_engine.md)
- [Flixel](flixel.md)
- [GemRB](gemrb.md)
- [Godot](godot.md)
- [HaxeFlixel](haxeflixel.md)
- [Irrlicht Engine](irrlicht.md)
- [Lightweight Java Game Library](lwjgl.md)
- [Lumix Engine](lumix.md)
- [LÖVE](loeve.md)
- [Maratis](maratis.md)
- [MonoGame](monogame.md)
- [O.H.R.RPG.C.E](ohrrpgce.md)
- [OGRE3D](ogre3d.md)
- [Octaforge](octaforge.md)
- [Open RPG Maker](openrpgmaker.md)
- [OpenFL](openfl.md)
- [OpenRPG](openrpg.md)
- [Orx](orx.md)
- [Panda 3D](panda3d.md)
- [Polycode](polycode.md)
- [Qt](qt.md)
- [Quad-engine](quad.md)
- [SDL Game Engine 2D](sge2d.md)
- [ScummVM](scummvm.md)
- [Solarus](solarus.md)
- [Superpowers](superpowers.md)
- [Urho3D](urho3d.md)
- [Vega Strike](vegastrike.md)
- [WorldForge](worldforge.md)
- [ZGameEditor](zgameeditor.md)
- [jMonkeyEngine](jmonkeyengine.md)
- [libGDX](libgdx.md)
- [mkxp](mkxp.md)
- [pygame](pygame.md)
- [sandbox Game Maker](sandboxgamemaker.md)
- [xoreos](xoreos.md)

View File

@ -0,0 +1,18 @@
# Blender game engine
_Included in Blender is a complete game engine, allowing you to create a fully featured 3d game right inside Blender._
- Home: https://www.blender.org/features/game-creation/
- Download: https://www.blender.org/download/
- State: mature
- Code: http://git.blender.org/blender.git
- Language(s): C++
- License: GPL-2.0
Part of Blender.
## Building
See [Building Blender](https://wiki.blender.org/index.php/Dev:Doc/Building_Blender)
Uses CMake

12
framework/dash.md Normal file
View File

@ -0,0 +1,12 @@
# Dash Engine
_OpenGL engine written in the D language._
- Home: http://circularstudios.com/#dash
- Download: http://dash.circularstudios.com/guides/gettingstarted.html
- Code: https://github.com/Circular-Studios/Dash
- Language(s): D
- License: MIT
## Building

11
framework/deltaengine.md Normal file
View File

@ -0,0 +1,11 @@
# Delta Engine
_Multiplatform Game Engine, C# OpenGL Version (custom wrapper) including the Editor_
- Home: http://www.deltaengine.net/
- Download: http://www.deltaengine.net/download
- Code: https://github.com/DeltaEngine
- Language(s): C#
- License: Apache-2.0
## Building

13
framework/flixel.md Normal file
View File

@ -0,0 +1,13 @@
# Flixel
_Game-making library written in ActionScript 3._
- Home: http://flixel.org/
- Download: http://flixel.org/download.html
- State: mature
- Code: https://github.com/AdamAtomic/flixel
- Language(s): ActionScript
- License: [As is](https://github.com/AdamAtomic/flixel/blob/master/license.txt)
## Building

15
framework/haxeflixel.md Normal file
View File

@ -0,0 +1,15 @@
# HaxeFlixel
_{One line description}_
- Home: http://haxeflixel.com/
- Wikipedia: {URL}
- Download: http://haxeflixel.com/download/
- State: mature
- Code: https://github.com/HaxeFlixel
- Language(s): Haxe
- License: MIT
## Building

View File

@ -0,0 +1,15 @@
# jMonkeyEngine
_Game engine, made especially for Java game developers who want to create 3D games._
- Home: http://jmonkeyengine.org/
- Wikipedia: https://en.wikipedia.org/wiki/JMonkeyEngine
- Download: https://github.com/jMonkeyEngine/sdk/releases
- State: mature
- Code: https://github.com/jMonkeyEngine/jmonkeyengine
- Language(s): Java
- License: BSD
## Building
Uses gradle

16
framework/libgdx.md Normal file
View File

@ -0,0 +1,16 @@
# libGDX
_Desktop/Android/BlackBerry/iOS/HTML5 Java game development framework._
- Home: http://libgdx.badlogicgames.com/
- Wikipedia: https://en.wikipedia.org/wiki/LibGDX
- Download: http://libgdx.badlogicgames.com/download.html
- State: mature
- Code: https://github.com/libgdx/libgdx
- Language(s): Java, C++, C
- License: Apache-2.0
## Building
Maven, gradle

16
framework/lwjgl.md Normal file
View File

@ -0,0 +1,16 @@
# Lightweight Java Game Library
_Java software library for video game developers._
- Home: https://www.lwjgl.org/
- Wikipedia: https://en.wikipedia.org/wiki/Lightweight_Java_Game_Library
- Download: https://www.lwjgl.org/download
- State: mature
- Code: https://github.com/LWJGL/lwjgl3
- Language(s): Kotlin, C
- License: BSD-3
## Building
Uses gradle

15
framework/monogame.md Normal file
View File

@ -0,0 +1,15 @@
# MonoGame
_Open Source implementation of the Microsoft XNA 4 Framework._
- Home: http://www.monogame.net/
- Wikipedia: https://en.wikipedia.org/wiki/MonoGame
- Download: http://www.monogame.net/downloads/
- State: mature
- Code: https://github.com/MonoGame/MonoGame
- Language(s): C#
- License: Ms-MPL MIT
## Building

17
framework/ogre3d.md Normal file
View File

@ -0,0 +1,17 @@
# OGRE3D
_Scene-oriented, flexible 3D engine written in C++._
- Home: https://www.ogre3d.org/
- Wikipedia: https://en.wikipedia.org/wiki/OGRE
- Download: https://www.ogre3d.org/download/sdk
- State: mature
- Type: 3D rendering engine
- Code: https://bitbucket.org/sinbad/ogre/src (hg) https://github.com/OGRECave/ogre (mirror)
- Language(s): C++
- License: MIT
## Building
Uses CMake

14
framework/openfl.md Normal file
View File

@ -0,0 +1,14 @@
# OpenFL
_Software framework and platform for the creation of multi-platform applications and video games._
- Home: http://www.openfl.org/
- Wikipedia: https://en.wikipedia.org/wiki/OpenFL
- Download: {URL}
- State: mature
- Code: https://github.com/openfl
- Language(s): Haxe
- License: MIT
## Building

15
framework/panda3d.md Normal file
View File

@ -0,0 +1,15 @@
# Panda 3D
_Panda3D is a game engine, a framework for 3D rendering and game development for Python and C++ programs._
- Home: http://www.panda3d.org/
- Wikipedia: https://en.wikipedia.org/wiki/Panda3D
- Download: http://www.panda3d.org/download.php
- State: mature
- Type: 3D
- Code: https://github.com/panda3d/panda3d
- Language(s): C++, C
- License: BSD-3
## Building

14
framework/pygame.md Normal file
View File

@ -0,0 +1,14 @@
# pygame
_Library for making multimedia applications like games built on top of the excellent SDL library._
- Home: http://www.pygame.org/hifi.html
- Wikipedia: https://en.wikipedia.org/wiki/Pygame
- Download: http://www.pygame.org/download.shtml
- State: mature
- Code: https://bitbucket.org/pygame/pygame/src (hg) https://github.com/pygame/pygame (mirror)
- Language(s): C, Python
- License: LGPL
## Building

18
framework/qt.md Normal file
View File

@ -0,0 +1,18 @@
# Qt
_Cross-platform application framework._
- Home: https://www.qt.io/
- Wikipedia: <https://en.wikipedia.org/wiki/Qt_(software)>
- Download: https://www1.qt.io/download-open-source/
- State: mature
- Code: http://code.qt.io/cgit/ https://github.com/qt (mirror)
- Language(s): C++
- License: LGPL
Not a specialized game framework, but one could write games with it.
Also see the [Qt Creator IDE](https://wiki.qt.io/Qt_Creator).
## Building

12
framework/sge2d.md Normal file
View File

@ -0,0 +1,12 @@
# SDL Game Engine 2D
_2D game programming framework for c/c++ programmers with least possible dependencies._
- Home: https://sourceforge.net/projects/sge2d/
- Download: https://sourceforge.net/projects/sge2d/files/sge2d/
- State: beta
- Code: https://sourceforge.net/p/sge2d/code/HEAD/tree/ (svn)
- Language(s): C
- License: MIT
## Building

11
framework/superpowers.md Normal file
View File

@ -0,0 +1,11 @@
# Superpowers
_2D+3D game making for indies._
- Home: http://superpowers-html5.com/index.en.html
- Download: https://sparklinlabs.itch.io/superpowers
- Code: https://github.com/superpowers
- Language(s): Typescript
- License: ISC
## Building

View File

@ -1,5 +1,6 @@
# Popular required libraries
- [Allegro](allegro.md)
- [Boost](boost.md)
- [LZMA SDK](lzma.md)
- [Simple DirectMedia Layer (SDL 2)](sdl_2.md)

16
library/allegro.md Normal file
View File

@ -0,0 +1,16 @@
# Allegro
_Cross-platform library mainly aimed at video game and multimedia programming._
- Home: http://liballeg.org/
- Wikipedia: https://en.wikipedia.org/wiki/Allegro_(software)
- Download: http://liballeg.org/download.html
- State: mature
- Code: primary repository (type if not git), other repositories (type if not git)
- Language(s): C
- License: zlib
## Building
Uses CMake

15
rpg/crossfire.md Normal file
View File

@ -0,0 +1,15 @@
# Crossfire
_Cooperative multiplayer graphical RPG and adventure game._
- Home: http://crossfire.real-time.com/ https://sourceforge.net/projects/crossfire/
- Download: http://crossfire.real-time.com/download/index.html
- Type: MMO
- Code: https://sourceforge.net/p/crossfire/code/HEAD/tree/ (svn)
- Language(s): C, Java
- License: GPL-2.0
See also [Gridarta for Crossfire, the map editor](https://sourceforge.net/projects/gridarta/).
## Building

View File

@ -3,3 +3,4 @@
- [LinCity](lincity.md)
- [Micropolis](micropolis.md)
- [Open Transport Tycoon](open_transport_tycoon.md)
- [Pioneer](pioneer.md)

18
simulation/pioneer.md Normal file
View File

@ -0,0 +1,18 @@
# Pioneer
_Pioneer is a space adventure game set in our galaxy at the turn of the 31st century._
- Home: https://pioneerspacesim.net/
- Wikipedia: https://en.wikipedia.org/wiki/Pioneer_(video_game)
- Download: https://pioneerspacesim.net/download
- State: mature
- Code: https://github.com/pioneerspacesim/pioneer
- Language(s): C++, C
- License: GPL and others
See also the [sourceforge project](https://sourceforge.net/projects/pioneerspacesim/).
## Building
Uses Autoconf