All Projects → Tape-Worm → Gorgon

Tape-Worm / Gorgon

Licence: MIT License
A modular set of libraries for .Net that are useful for graphics and video game development.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Gorgon

NavMeshSurface2DBaker
NavMeshSurface2DBaker is a Unity Package that provides functionality to bake 2D colliders into NavMeshSurface components.
Stars: ✭ 33 (-32.65%)
Mutual labels:  2d
MiniKnight
A pixel-art platformer in F#, where you must fight your way to the portal, collecting coins and slaying orcs along the way!
Stars: ✭ 47 (-4.08%)
Mutual labels:  2d
D2dControl
WPF Control for Direct2D with SharpDX
Stars: ✭ 70 (+42.86%)
Mutual labels:  sharpdx
cray
A real-time interactive progressive path tracer on the GPU.
Stars: ✭ 35 (-28.57%)
Mutual labels:  direct3d
Fyrox
3D and 2D game engine written in Rust
Stars: ✭ 3,539 (+7122.45%)
Mutual labels:  2d
glsl-rotate
GLSL rotation functions with matrices: 2D and 3D (with X/Y/Z convenience functions).
Stars: ✭ 54 (+10.2%)
Mutual labels:  2d
opendev
OpenDev is a non-profit project that tries to collect as many resources (assets) of free use for the development of video games and applications.
Stars: ✭ 34 (-30.61%)
Mutual labels:  2d
meta2d
Meta2D is open source WebGL 2D game engine for making cross platform games.
Stars: ✭ 33 (-32.65%)
Mutual labels:  2d
voltar
WebGL only 2D game engine using Godot as the visual editor
Stars: ✭ 25 (-48.98%)
Mutual labels:  2d
gridder
A Grid based 2D Graphics library
Stars: ✭ 51 (+4.08%)
Mutual labels:  2d
godot experiments
Some 2D, 3D & VR experiments and tutorials in Godot 3
Stars: ✭ 181 (+269.39%)
Mutual labels:  2d
isometric
A lightweight JavaScript library, written in TypeScript to create isometric projections using SVGs
Stars: ✭ 53 (+8.16%)
Mutual labels:  2d
bridson
Poisson Disc Sampling in Python
Stars: ✭ 30 (-38.78%)
Mutual labels:  2d
emerald
A 2D rust game engine focused on portability.
Stars: ✭ 383 (+681.63%)
Mutual labels:  2d
okeevis-render
a fast lightweight 2d graphic library
Stars: ✭ 22 (-55.1%)
Mutual labels:  2d
2D-Platformer-Hunter
A 2D Platformer Controller in Unity
Stars: ✭ 153 (+212.24%)
Mutual labels:  2d
cage
Cage (Ain't a Game Engine) - write 2D games using plain C
Stars: ✭ 40 (-18.37%)
Mutual labels:  2d
SharpMath2
2D math / geometry collision library for C#, compatable with monogame.
Stars: ✭ 36 (-26.53%)
Mutual labels:  2d
awesome-canvas
Canvas资源库大全中文版。An awesome Canvas packages and resources.
Stars: ✭ 288 (+487.76%)
Mutual labels:  2d
vecti
A tiny TypeScript library for 2D vector math.
Stars: ✭ 14 (-71.43%)
Mutual labels:  2d

gorgon_2 x_logo_full_site

What is Gorgon?

A modular set of libraries useful for graphics and/or video game development. Gorgon uses Direct 3D 11.2 (via SharpDX) to provide high performance graphics for your applications.

What is not Gorgon?

Building applications with Gorgon requires that you write code. There's no nodes, no blueprints, etc... It does not contain:

  • A fully featured game engine.
  • An all-in-one editor that uses drag and drop to build your application.
  • A scripting system.

Gorgon is meant for people that want to write their own functionality, get down into the guts of their applications and not have to deal with a black boxed scripting system, or editor. In short, it's more work, but more customizable.

For those that want a more complete (and polished) package to build their applications there's Unity, Unreal, Godot or Stride (formally Xenko).

Documentation

Documentation for the Gorgon APIs is located here.

What's the licensing?

Gorgon is licensed under the MIT license.

How far along are you? Is it done yet? How about now?

Gorgon 3.2 is in development.

What can it do?

Gorgon provides a set of libraries that are capable of handling pretty much any task thrown at it. It includes:

Core functionality, plug in support and utility functionality. This is the base library that everything else uses.

Core Windows specific functionality. Provides UI functionality, such as custom message box dialogs, timing functionality using QPC and/or the windows multimedia timer and various other bits of utility/diagnostic functionality.

A virtual file system that can mount a directory as a file system root, or using various file system providers, can mount a packed file as a virtual file system root. This code is based on the popular PhysFS library.

By default, Gorgon's basic virtual file system is based on the folder/files on the Windows file system, but using filesystem providers via plug ins, applications can read any type of file storage container can be used if the appropriate plug in is available for it. Gorgon comes with two plug ins for file system providers:

By default, the file system provider

A flexible input library to handle joysticks/gamepads, keyboard and mouse input. The input library can use events or polling to retrieve data from the various input sources.

Keyboard and mouse input is provided using the Windows Raw Input API, and joystick/gamepad support is driven by the following plug ins:

A "low-level" graphics API that sits on top of Direct 3D 11.2. Provides a simplified system to build objects such as render targets, swap chains, buffers, etc... The rendering portion of the API provides a simple mechanism to submit batched state and draw information back to the underlying D3D API.

Functionality to allow Gorgon to render onto a WPF surface. This allows interoperabilty between Gorgon and WPF.

Functionality to read and write image formats. This also contains functionality to use a fluent interface to manipulate images for things like cropping, scaling, etc...

Gorgon uses codecs to read/write images and includes codecs for the following formats:

  • DDS - Direct Draw Surface
  • TGA - Truevision Targa
  • PNG - Portable Network Graphics
  • JPG - Joint Photographic Experts Group
  • BMP - Windows Bitmap
  • GIF - Graphic Interchange Format (supports animated gifs as well)

In additon to the support above, applications can extend the support for file formats by adding their own custom codec plug in to read/write in their desired format(s).

An extensive bitmap font creation interface (within the graphics module) that supports kerning, outlining of font glyphs, and other customizations to help generate impressive looking text.

Currently Gorgon supports reading and writing of font files through codecs. Support is included for:

  • GorFont: A proprietary binary format for Gorgon.
  • BmFont: A popular font file type created by Andreas Jönsson (Note: this support is limited to the text based file format at this time).

In addition to the support above, applications can introduce their own codecs to read/write whatever font types they wish by extending the GorgonFontCodec type. (Plug in support is pending at this time)

A 2D renderer that sits on top of the graphics module to make developing 2D games/applications much easier. It supports:

  • Sprites
  • Primitives (triangles, lines, ellipses, arcs, and rectangles)
  • Text rendering
  • A shader based effects system

All of these are provided using batched rendering, similar to MonoGame for maximum performance.

IO functionality for serializing sprite and polysprite data to and from various formats using codecs.

An animation module that allows the creation and playback of key framed animations for various types of objects.

Animation controllers for the 2D renderer are provided by the Gorgon.Animation.Gorgon2D assembly.

A flexible content editor to allow for the creation and editing of content.

  • Supports a plug in based architecture to allow developers to extend the editor indefinitely.
  • Supports file management of content by using a simple tree layout for folders and files.
  • Comes with an image editor plug in which allows users to add depth slices to 3D images (I have yet, for the life of me to find anything on the web that does this), mip maps and array indices, and other simple functions.
  • Comes with a sprite editor plug in which allows users to clip sprites from an image and store them as a file.
  • Comes with an animation editor plug in for animating sprites.
  • Can output the files as a packed file. The type of file that be written out is provided via plug in support (currently only supports the proprietary Gorgon packed file format).
  • Can import packed files using file system plug ins (currently has support for zip and the proprietary Gorgon packed file formats - included with Gorgon as file system plug ins).

What's required?

  • .NET 6.0
  • Windows 10 (Build 15063 or later).
  • A video card that supports Microsoft DirectX 11.2 or better

To compile the library

To use the library

  • You may use any .NET 6.0 enabled language (e.g. Visual Basic .NET) to write an application with Gorgon.

Source code

The master branch contains the current release version of Gorgon 3.2.

Acknowledgements

Gorgon uses icons from the following sources:

Oxygen https://github.com/pasnox/oxygen-icons-png
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org.html

Icons8 http://https://icons8.com

Sprites example textures from: http://millionthvector.blogspot.com/

This following image(s) is/are not redistributable without permission from the original author.

"HotPocket.dds" by Starkiteckt https://www.artstation.com/starkiteckt

Electronics.DDS, Halifax.DDS, Handmaid.DDS and PewterPup.DDS by Colleen MacLean

Third Party True Type fonts:

Tequila by uZiMweB
A Charming Font by GemFonts
Sunset by Harold's Fonts
Monsters Attack ! by The Empire of the Claw
Grunja by Apostrophic Labs
The Bold Font by ???

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