https://www.greatsoftline.com/the-best-open-source-game-engine-in-search-of-perfection/

The game engine is a core software component of computer and video games and other interactive graphics applications processed in real time. It provides the basic set of demanded technologies, simplifies development, and often gives the desired opportunity to run the game on multiple platforms, e.g. game consoles and desktop operating systems, such as GNU/Linux, Mac OS X and Microsoft Windows.

The term ‘game engine’ refers to a whole range of applications, including the rendering engine for 2D or 3D graphics, a physics engine or collision detection (and collision response), sound, scripting, animation, artificial intelligence, network code, streaming, memory management, threading, and a scene interface. Strictly speaking, all the code written by programmers in the development of the game represents the components of the engine; gameplay is defined by functions implemented in these components.

Choose your best open source game engine

To date, the most popular and advanced (mostly open source) game engines are:

1. OGRE – Open Source 3D Graphics Engine

Ogre is an object-oriented graphics rendering engine. Implemented via C + +, supports 3D graphics and uses Direct3D and OpenGL. To work with the latest version of the engine you need one of the following compilers: GCC, Visual C + + 7.1 (2003), Visual C + + 8.0 (2005). The engine supports compilers to work on Linux and Mac used GCC3 +. If the game will use DirectX, you must first install DirectX SDK (available for download from Microsoft).

According to the developer, Ogre is not in the strict sense of the word game engine. As stated in the documentation, ‘Ogre is just a graphics engine’; meaning it is designed for graphics processing.

Link: http://www.ogre3d.org/

2. Crystal Space 3D – full-featured Software Development Kit

A cross-platform Crystal Space is an open source engine with SDK for 3D graphics in real time, designed primarily for game development. Written in C++, but you can use it not only in C++ projects, but in Python, Perl, Java projects. Crystal Space it is a working base with modular concept, because of this, it seems heavier compared to other engines.

Link: http://www.crystalspace3d.org/main/Main_Page

3. Nebula Engine – Realtime 3D game/visualization engine

Nebula, once the best open source game engine types, but now far from setting the tone, is designed for 3D-games creation and visualization. Nebula was used in several commercial games. Also written in C++, it runs on Windows and uses DirectX 9.0. It supports classes for Shaders (HLSL and FX-files DirectX), skeletal animation, particle systems and shadows. Nebula supports several common scripting languages: TCL, Python and Lua.  It also supports D3D and OpenGL for rendering, runs under Linux and Windows.

Link: http://sourceforge.net/projects/nebuladevice/

4. Irrlicht – an open source high performance realtime 3D engine

Open source, cross-platform, written in C + +, supporting .NET (languages ​​such as C#, VisualBasic, and Delphi.NET), Java – using jirr or Bindenlicht libraries, Python – using the library Pyrr, Ruby – using the library IrrRuby and several other languages. The engine features all the necessary functions: rendering is performed through OpenGL/Direct3D (with support DirectX9.0); this is quite easy to learn game engine suitable for both making the first steps in programming.

Link: http://irrlicht.sourceforge.net/

5. OpenSceneGraphg – an open source high performance 3D graphics toolkit

This is an open-source, cross-platform engine, written in standard C++ using OpenGL. It supports various model formats, such as .lwo, .obj, .geo, .3 ds, .x, .wrl, i.e. virtually all the objects created in any modern three-dimensional graphics editor (3DS Max, Maya and Lightwave 3D). It runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems.

Link: http://www.openscenegraph.org/

6. Microsoft XNA – a set of tools with a managed runtime environment provided by Microsoft

The cross-platform engine is designed for 3 platforms: Windows, Xbox 360 and Zune (mp3-player by Microsoft). However, to develop games for Xbox, you will have to purchase Xbox Developer Kit, though you can develop games under Windows for free. The technology is designed to develop games using DirectX and .NET Framework (.NET Compact Framework for Xbox 360) and, frankly speaking, the main language for developing games using XNA should be C#. The project is well supported by Microsoft: the company organizes webinars, releases support documents, maintains the forum and so on. XNA is often considered to be the best open source game engine.

The Best Open Source Game Engine: In Search Of Perfection的更多相关文章

  1. Search Engine Hacking – Manual and Automation

    Search Engine Hacking – Manual and Automation Ethical Hacking Boot Camp OUR MOST POPULAR COURSE! CLI ...

  2. Tessnet2 a .NET 2.0 Open Source OCR assembly using Tesseract engine

    http://www.pixel-technology.com/freeware/tessnet2/ Tessnet2 a .NET 2.0 Open Source OCR assembly usin ...

  3. Deep Dive into Neo4j 3.5 Full Text Search

    In this blog we will go over the Full Text Search capabilities available in the latest major release ...

  4. 《InsideUE4》-4-GamePlay架构(三)WorldContext,GameInstance,Engine

    Tags: InsideUE4 UE4深入学习QQ群: 456247757 引言 前文提到说一个World管理多个Level,并负责它们的加载释放.那么,问题来了,一个游戏里是只有一个World吗? ...

  5. ArcGIS Server 开发实践之【Search类】

    开发中整理的.不足之处还请谅解! ----------------------------------------------- Class:Search 调用方式:require(["es ...

  6. SharePoint Search之(一):创建Search服务应用程序

    计划写一个关于怎样使用SharePoint Search的系列,包括下面几个方面: (一)创建Search Service Application (二)持续爬网(continues crawl) ( ...

  7. 【工利其器】必会工具之(一)Source Insight篇

    前言         “Source Insight(以下简称SI)是世界上最好的编辑器”,说这句话不知道会不会出门被打呢?-_- 中国古话说得好,“文无第一,武无第二”,所以不敢说SI是最好的,但是 ...

  8. org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): cn.e3mall.search.mapper.ItemMapper.getItemList

    java.lang.RuntimeException: org.apache.ibatis.binding.BindingException: Invalid bound statement (not ...

  9. Breadth-first search

    given a graph G  and a distinguished source vertex s, breadth-firstsearch systematically explores th ...

随机推荐

  1. pod install 的历程

    公司项目拉下来执行有报错,建议执行pod install.这个是IOS的xcode第一次用的时候是需要的步骤 1.首先对于pod的命令你想执行,需要安装CocoaPods OS X 10.11以前,在 ...

  2. apt-get命令使用

    1.apt-get命令 apt-get命令是Debian Linux发行版中的APT软件包管理工具,所有基于Debian的发行都使用这个包管理系统. (1)命令语法 apt-get(选项)(参数) ( ...

  3. SQLServer字符串与数字拼接

    1.使用cast‘’+cast(@ID as varchar) 2.使用LTrim‘’+LTrim(@ID) 感觉第二种方式代码简单,但是可读性不好.

  4. Go语言【数据结构】切片

    切片 简介 简单地说,切片就是一种简化版的动态数组.Go 数组的长度不可改变,而切片长度是不固定,切片的长度自然也就不能是类型的组成部分了.数组虽然有适用它们的地方,但是数组的类型和操作都不够灵活,因 ...

  5. SQL系列(十四)—— 视图(view)

    说到视图view,大家应该都很熟悉.如几何学中用三视图来描述集合物体的外观构成,三视图中反应出物体的面貌.这里我们讨论数据库中视图的概念: 什么是视图 为什么会有会用视图 怎样使用视图 视图与表的异同 ...

  6. 整理:WPF中CommandBindings的用法

    原文:整理:WPF中CommandBindings的用法 目的:了解一下CommandBindings.InputBindings.ICommandSource中在WPF中扮演什么样的角色 Comma ...

  7. Python3.x--33个保留字

    查询方法也在下图:

  8. 第四周(1):数据分布-Python实战

    数据准备 数据集地址:http://jse.amstat.org/datasets/normtemp.dat.txt 数据集描述:总共只有三列:体温.性别.心率 数据集详细描述:Journal of ...

  9. python后端链接数据库-----MySQLdb

    连接数据库之前请先确认好以下事宜: 1.已经建议好相应的数据库 2.在数据库中已经建立了相应的表 3.已经安装了MySQldb模块 示例: import MySQLdb # 打开数据库连接 db = ...

  10. 学习笔记之操作系统(Operating System)

    学习笔记之多线程 - 浩然119 - 博客园 https://www.cnblogs.com/pegasus923/p/5554565.html 用三个线程按顺序循环打印ABC三个字母 - 浩然119 ...