Difference between revisions of "Castle Game Engine"

From Lazarus wiki
Jump to navigationJump to search
(Domain name changed to castle-engine.io)
(Tried to make it a bit more "wikipedic", and added links to game development stuff.)
Line 1: Line 1:
 
{{Castle_Game_Engine}}
 
{{Castle_Game_Engine}}
 +
{{Infobox game development}}
  
[https://castle-engine.io/ Castle Game Engine] is a cross-platform 3D and 2D game engine. We provide an easy and extensible API to create and manage 3D objects, with out-of-the-box levels, items, intelligent creatures and more. We support 3D models and animations in various formats, in particular [https://castle-engine.io/vrml_x3d.php very versatile VRML / X3D], but also Collada, Wavefront OBJ, and (especially nice for 2D animations) Spine JSON. Many graphic features are available, like shadows, bump mapping, mirrors, screen effects, shaders. The engine can be used to compile both standalone games (Linux, Windows, Mac OS X) as well as mobile games (Android, iOS).
+
[https://castle-engine.io/ Castle Game Engine] is a cross-platform 3D and 2D [[Game Engine|game engine]]. It provides an extensible API to create and manage 3D objects, with out-of-the-box levels, items, intelligent creatures and more. It support 3D models and animations in various formats, in particular [https://castle-engine.io/vrml_x3d.php very versatile VRML / X3D], but also Collada, Wavefront OBJ, and Spine JSON, that allows 2D animations. Many graphic features are available, like shadows, bump mapping, mirrors, screen effects and shaders.
  
Rendering is done through OpenGL or OpenGLES2. You can use Lazarus TCastleControl component, so that engine rendering can be a part of your normal Lazarus form. We also provide TCastleWindow class, specialized in creating windows with OpenGL context for games (with optional menu bars and dialog boxes, all without the need for LCL).
+
The engine can be used to compile both desktop (Linux, Windows, Mac OS X) and mobile games (Android, iOS).
 +
 
 +
Rendering is done through OpenGL or OpenGLES2.
 +
 
 +
It is component based.
  
 
The engine can be used just as a set of units and components. You can also use the [https://github.com/castle-engine/castle-engine/wiki/Build-Tool engine build tool] to easily compile and package your games, e.g. for Android or iOS.
 
The engine can be used just as a set of units and components. You can also use the [https://github.com/castle-engine/castle-engine/wiki/Build-Tool engine build tool] to easily compile and package your games, e.g. for Android or iOS.
  
 
The engine is open-source --- the core engine may be used under GNU LGPL, with "static linking exception" like FPC RTL, so you can make both open- and closed-source games. Developed using a clean Object Pascal, for FPC/Lazarus.
 
The engine is open-source --- the core engine may be used under GNU LGPL, with "static linking exception" like FPC RTL, so you can make both open- and closed-source games. Developed using a clean Object Pascal, for FPC/Lazarus.
 
[https://castle-engine.io/features.php More complete list of engine features.]
 
 
[https://www.patreon.com/castleengine Please support the engine development on Patreon!]
 
 
== Documentation ==
 
 
We have a lot of documentation about using the engine:
 
 
# [https://castle-engine.io/documentation.php Getting Started]
 
# [https://castle-engine.io/manual_intro.php Manual]
 
# [https://castle-engine.io/creating_data_intro.php Guide to creating game data]
 
# [https://castle-engine.io/apidoc/html/index.html API reference]
 
  
 
== Screenshots ==
 
== Screenshots ==
Line 32: Line 24:
 
[[Image:castle_game_engine_fps_game.jpg]]
 
[[Image:castle_game_engine_fps_game.jpg]]
  
== Videos ==
 
 
See [https://www.youtube.com/channel/UCq9jJ5ivIXC5VEWiUAfxBxw Castle Game Engine YouTube channel] for all videos. Most interesting:
 
 
* [https://www.youtube.com/watch?v=o5q7guVkYVo Demo reel (Support us on Patreon)]
 
* [https://www.youtube.com/watch?v=AuI4zgmT-YQ Dragon Spine demo]
 
* [https://www.youtube.com/watch?v=ICH3N7OZXx8 FPS game using Castle Game Engine 4.0.0]
 
* [https://www.youtube.com/watch?v=9dH234o5dqo Water with caustics in view3dscene]
 
* [https://www.youtube.com/watch?v=hIuEGnRm-yM Castle Game Engine 2D physics using Kraft]
 
* [https://www.youtube.com/watch?v=8k9zX6dPQEU Castle Game Engine physics - Mesh Collider]
 
* [https://www.youtube.com/watch?v=A4XUHfuzlFQ Wyrd Forest - Castle Game Engine demo - terrain, shooting and splitting objects, spawning]
 
* [https://www.youtube.com/watch?v=snb8wXOwtHE Castle Game Engine terrain and spawning fun ("Wyrd Forest" demo)]
 
  
Enjoy! Author: [[User:Michalis|Michalis Kamburelis]]
+
==External links==
 +
* [https://www.youtube.com/channel/UCq9jJ5ivIXC5VEWiUAfxBxw Castle Game Engine YouTube channel]
 +
* [https://castle-engine.io/features.php More complete list of engine features.]
 +
* [https://castle-engine.io/documentation.php Getting started]
 +
* [https://castle-engine.io/apidoc/html/index.html API reference]
 +
* [https://www.patreon.com/castleengine Patreon page]
  
 
[[Category:Components]]
 
[[Category:Components]]

Revision as of 13:48, 15 May 2018

English (en) suomi (fi) français (fr)


Castle Game Engine is a cross-platform 3D and 2D game engine. It provides an extensible API to create and manage 3D objects, with out-of-the-box levels, items, intelligent creatures and more. It support 3D models and animations in various formats, in particular very versatile VRML / X3D, but also Collada, Wavefront OBJ, and Spine JSON, that allows 2D animations. Many graphic features are available, like shadows, bump mapping, mirrors, screen effects and shaders.

The engine can be used to compile both desktop (Linux, Windows, Mac OS X) and mobile games (Android, iOS).

Rendering is done through OpenGL or OpenGLES2.

It is component based.

The engine can be used just as a set of units and components. You can also use the engine build tool to easily compile and package your games, e.g. for Android or iOS.

The engine is open-source --- the core engine may be used under GNU LGPL, with "static linking exception" like FPC RTL, so you can make both open- and closed-source games. Developed using a clean Object Pascal, for FPC/Lazarus.

Screenshots

VRML/X3D browser in Lazarus:

kambi vrml browser.jpg

FPS example game:

castle game engine fps game.jpg


External links