GithubHelp home page GithubHelp logo

raymondseger / sgdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stephane-d/sgdk

0.0 2.0 0.0 130.1 MB

SGDK - A free and open development kit for the Sega Mega Drive

Home Page: https://www.patreon.com/SGDK

License: MIT License

C 75.66% Assembly 6.27% Batchfile 0.11% Java 17.78% PowerShell 0.10% Dockerfile 0.02% ReScript 0.01% Shell 0.02% Makefile 0.04%

sgdk's Introduction

SGDK 1.65 (july 2021)

Copyright 2021 Stephane Dallongeville

Patreon: https://www.patreon.com/SGDK
Github: https://github.com/Stephane-D/SGDK

SGDK is a free development kit allowing to develop software in C language for the Sega Mega Drive. It contains the development library itself (with the code sources) and some custom tools used to compile resources. SGDK uses the GCC compiler (m68k-elf target) and the libgcc to generate ROM image. Binaries (GCC 6.3) are provided for Windows OS for convenience but you need to install it by yourself for others operating systems. Note that SGDK also requires Java (custom tools need it) so you need to have Java installed on your system.

SGDK library and custom tools are distributed under the MIT license (see license.txt file). GCC compiler and libgcc are under GNU license (GPL3) and any software build from it (as the SGDK library) is under the GCC runtime library exception license (see COPYING.RUNTIME file)

GET STARTED

First, you need to know that SGDK uses C language (assembly is also possible but not necessary) so it's highly recommended to be familiar with C programming before trying to develop with SGDK. Learning C language at same time than learning 'Sega Mega Drive' programming is definitely too difficult and you will end nowhere. It's also important to have, at least, a basic knowledge about the Sega Mega Drive hardware (specifically the video system).

MEGA DRIVE TECHNICAL INFO REFERENCES

INSTALLATION AND DOCUMENTATION

Then when you feel ready you can go further and finally install SGDK :)

You can find installation instructions and tutorials about how use SGDK on the wiki:
https://github.com/Stephane-D/SGDK/wiki

Also SGDK comes with a doxygen documentation (generated from .h header files) which provides complete information about SGDK structures and functions description. You can find it in the 'doc' folder (open your local doc/html/files.html in your browser).

Another important point to know is that SGDK heavily relies on resources which are compiled through rescomp tool. You can read the rescomp.txt file to know which kind of resource you can use and how to declare them then you can check the 'sample' folder from SGDK and in particular the sonic sample which is a good showcase of SGDK usage in general (functions and resources).

OTHERS TUTORIALS

You can also follow up-to-date and more complete online tutorials as this one (thanks to Ohsat for making them):
https://www.ohsat.com/tutorial/
You also have the great ones from Danibus (spanish only):
https://danibus.wordpress.com/

HELP AND SUPPORT

If you need help or support with SGDK, you can join the SGDK Discord server to get support:
https://discord.gg/xmnBWQS

You can also go to the Spritesmind forum which is dedicated to Sega Mega Drive development and has a specific section for SGDK:
http://gendev.spritesmind.net/forum/

MACOSX / LINUX

Unix/Linux users should give a try to this very simple script allowing to use SGDK from Wine easily:
https://github.com/Franticware/SGDK_wine

There is also the new and nice solution proposed by Daniel Valdivieso to use SGDK with VSCode under any OS using Wine:
https://github.com/v4ld3r5/sgdk_vscode_template

Another great alternative is to use the complete MarsDev environment developed by Andy Grind: https://github.com/andwn/marsdev It suppots all OSes, provides SGDK compatibility as well than 32X support so be sure to check it.

MacOSX users also have access to SGDK with Gendev for MacOS from Sonic3D project:
https://github.com/SONIC3D/gendev-macos

DOCKER

A modern way to install it on any environement is to use Docker.

To build the sgdk base image:

docker build -t sgdk .

And then to compile the local env, such as samples for example:

cd sample/sonic
docker run --rm -v "$PWD":/src sgdk

Notes:

  • $PWD will not work on Windows, there %CD% has to be used instead.
  • To avoid writing ./out files as root, execute the docker command as current user:
    • docker run --rm -v "$PWD":/src -u $(id -u):$(id -g) sgdk

VISUAL STUDIO

You can find a Visual Studio template into the 'vstudio' folder to facilate SGDK integration with VS. To go even further you can also install the VS extension made by zerasul:
https://marketplace.visualstudio.com/items?itemName=zerasul.genesis-code

THANKS

  • Chilly Willy for making almost all the JOY / controller support in SGDK (and the joy test sample ^^).
  • Astrofra for the starfield donut sample and the revamped readme ;)
  • Gligli for building and providing GCC 6.3 for Windows.
  • Gunpog for making the new SGDK logo.
  • Vojtěch Salajka for the script allowing to use SGDK easily from Wine (Linux/Unix but may work on OSX too).
  • Daniel Valdivieso for another Wine based solution to use SGDK on multi-OS (including a VSCode template).
  • Andy Grind for the MarsDev project allowing to use SGDK on any OS and also supporting 32X dev.
  • Kubilus for the GenDev Linux port of SGDK.
  • Sonic3D for the GenDev OSX port of SGDK.
  • Vladimir Kryvian for Visual Studio support and template.
  • Steve Schnepp for Docker support.
  • Andreas Dietrich for the nice Wobbler & scaling effect samples.
  • clbr for various contributions.
  • jgyllinsky for providing / improving build batches.
  • nolddor for fixes / contributions.
  • starling13 for fixes.
  • davidgf for its contributions (apultra tool, improved assembly LTO optimization).
  • Banshaku for its contribution on improving makefile and deps generation with rescomp.
  • Ohsat for making nice tutorials.
  • ShiningBzh / Jeremy and Kentosama for their precious help in testing.
  • Vetea and Studio Vetea Discord people in general for their support and kindness.
  • all those i forgot and generally all people helping by providing support, reporting bugs and supporting SGDK in any way !

SUPPORT SGDK

SGDK is completly free but you can support it on Patreon: https://www.patreon.com/SGDK

Thanks =) I wish you a great and happy coding time !

POWERED BY THE SGDK!

These projects are known to be based on the SGDK (non-exhaustive list):

alt text

Tanzer by Mega Cat Studios

alt text

MASIAKA by Resistance

alt text

Xeno Crisis by the Bitmap Bureau

alt text

Demons of Asteborg Neofid Studios

Random list of SGDK-powered games and demos

sgdk's People

Contributors

stephane-d avatar turiaso avatar lizardrive avatar clbr avatar astrofra avatar devpow112 avatar pladaria avatar davidgfnet avatar sirmacho2 avatar steveschnepp avatar jgyllinsky avatar nolddor avatar atamurad avatar emeric-martineau avatar bigevilcorporation avatar rfmerrill avatar elazul avatar iequalshane avatar starling13 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.