jar2333 / Taylor

A simple game engine built using raylib and mruby

Home Page:http://taylor.oequacki.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Taylor

Made for Games

Build status GitHub all releases

Website: http://taylor.oequacki.com
Documentation: http://taylor.oequacki.com/documentation/taylor/
Try it out online: http://taylor.oequacki.com/playground/

What's this?

Taylor is a game engine I've built using mruby and raylib. I'm trying to build a very simple way for people to get into game development. This is trying to replicate the simplicity of QBasic but with a more of a modern approach.

Getting Started

Check out my tutorial over on the official Taylor website.

Examples

If you'd like to see some examples, check them out here!

Compile Yourself!

There's a couple reasons you may want to compile Taylor yourself and thankfully it's pretty straight forward for Linux.

  1. Install the build dependencies:
    Fedora:
    $ sudo dnf groupinstall "Development Tools" "Development Libraries"; sudo dnf install ruby
    Ubuntu/Debian:
    $ sudo apt-get install build-essential ruby

  2. You should now just be able to run $ rake and wait a few seconds.

  3. You'll now have a binary you can run like $ ./dist/linux/debug/taylor

  4. If you want the nice command line interface, you'll need to run:
    $ ./dist/linux/debug/taylor ./cli-tool/cli.rb

  5. Take make it easier to run, you can create a taylor-dev script and populate it with:

    #!/usr/bin/env bash
    TAYLOR_PATH=/home/sean/code/taylor/
    
    "$TAYLOR_PATH/dist/linux/debug/taylor" "$TAYLOR_PATH/cli-tool/cli.rb" "$@"
  6. Then you can just $ ./taylor-dev

Building All the Docker Images

To build all the docker images you can run the following commands:

$ bundle exec rake docker:build:{linux,windows,osx,web}
$ cd scripts/export
$ bundle exec rake docker:build:{export,linux,windows,osx,web}

If you also want to compile the mruby and raylib dependencies yourself there are docker images for that too, just run:

$ bundle exec rake docker:build:{mruby,raylib}

About

A simple game engine built using raylib and mruby

http://taylor.oequacki.com/

License:MIT License


Languages

Language:Ruby 58.2%Language:C++ 40.3%Language:HTML 0.9%Language:Shell 0.5%Language:Java 0.1%Language:GLSL 0.0%