Skip to content

2D Platform game engine written in straight C# which features Sonic the Hedgehog style gameplay.

License

Notifications You must be signed in to change notification settings

RobTF/spikeball

Repository files navigation

SpikeBall

2D Platform game engine written in straight C# which features Sonic the Hedgehog style gameplay.

Spikeball is a small game engine written with the initial aim of emulating the Sonic the Hedgehog series.

Features

  • Built in emulation of the Sonic the Hedgehog movement physics (as described on Sonic Retro).
  • Completely standalone C# assembly, with no dependencies on any specific game development tool.
  • Portable code; it would be possible to port the engine to phone apps, for example.
  • Game engine and rendering systems are completely decoupled (e.g. possible to use high res sprites).
  • Levels/maps built using the Tiled tile editor.
  • Collision system (per tile and AABB).
  • Basic animation system.
  • Basic audio system.
  • Resource management system (preload/late load).
  • Renderer provided which uses Direct2D.
  • Possibly a good learning tool for those wishing to learn the basics of game development.

Run & Play!

The project currently consists of a single Visual Studio 2015 solution and two projects, Platformer.DirectX and Platformer.Engine. The "DirectX" project is a renderer that uses Direct2D to perform its drawing and is the project you need to run as it provides the actual entry point, the engine is loaded into the application as an assembly reference.

There are two test maps provided, to "play" them simply choose them from the file menu and use the arrow keys to move Sonic and the Z key to jump.

Pressing P will toggle pause mode, pressing Q whilst paused will run the game frame-by-frame which was a useful debugging tool.

The engine is a single C# assembly however I have contained the game speciific entities in the "Gameplay" namespace as the plan may be to eventually split the game away from the engine proper.

The renderer uses the BASS audio library which has seperate builds for x86/x64, therefore the solution can be built in either x86 or x64, however the engine library does not care which architecture it runs under and is therefore an AnyCPU build.

Licensing and use of the engine

If you are inspired to build a full game with this engine as a base then PLEASE DO!! It's free for all and if you have an idea let me know and I will likely endeavour to support you. There are no royalties required and everytihng falls under the MIT licence. Libraries I have referenced (such as BASS) which are licenced by other means are easily replaced.

Images

In game

Map editing

About

2D Platform game engine written in straight C# which features Sonic the Hedgehog style gameplay.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages