GithubHelp home page GithubHelp logo

rpgskeleton's Introduction

rpgskeleton

This is a skeleton project for use with RPG Maker VX Ace. It contains everything you need to get started on a collaborative RPG Maker VX Ace project.

There is a basic empty skeleton RPG Maker VX Ace project, along with some scripts and makefiles that make it easy to pack/unpack RPG Maker datafiles to/from YAML and script files. This converts them between plaintext formats, which means they're now easy to version control/merge/share. (And it means that programmers can work on scripts without ever opening the editor at all, just repack and run Game.exe!)

Dependencies

License

All of the files in "LICENSE/Enterbrain_files.txt" were ripped from RPG Maker VX Ace, (C) Enterbrain. The Enterbrain RPG Maker VX Ace license is in this repository as LICENSE/VXACE_EULA.rtf. It is assumed that your team will have at least as many licenses of VX Ace as you have people working on the project.

Everything in this project not created by Enterbrain is covered by the MIT License, see LICENSE/MIT.txt.

Stuff you add to the project beyond what I have here is covered under your own license; please add all applicable licenses into LICENSE/.

For non-programmers

For any project built off this skeleton, collaborating is easy:

  • Download and install the version control client that your developer tells you to
  • Check out the project from the URL they give you
  • Repack the project by running 'pack.rb' (doubleclick it in Explorer)
  • Open the game project in RPG Maker and make whatever changes you want
  • Unpack the project by running 'unpack.rb' (doubleclick it in Explorer)
  • Commit the project into version control

Now your programmers and project managers will thank you.

For programmers and others who care about diff/merge

  • Clone the project
  • Do whatever work you're going to do
  • edit yaml files in YAML/; these are all the game database files converted to plaintext YAML
  • edit scripts under ./Scripts - these are all the game scripts, ready for your IDE/editor of choice
  • Whatever else
  • Test your work in the game (or open it up in the editor)
  • make pack
  • do your testing
  • make unpack (convert it all back to text)
  • Commit your work

The game skeleton has had all of the default ruby scripts yanked out. The scripts (100% stock) now live in ./Scripts/RPG/*rb. There is only one script loaded by the project proper (and which gets packed back into Data/), ./Scripts/entrypoint.rb. It doesn't do anything more than setup some load paths ( so 'require' works how we expect ), import the RPG module, and then call the main loop.

If you want to modify entrypoint.rb, do it before the game loop starts. However I recommend that you make a new module under Scripts/ and have the RPG module require it, or just add it to the RPG module itself.

For project managers

You might want to add a .gitignore to exclude Data/* to enforce that only the unpacked files get committed, and a pre-commit hook to reject any commits that don't keep YAML/ up to date with Data/, and Scripts/ up to date with YAML/Scripts.yaml

rpgskeleton's People

Contributors

akesterson avatar

Watchers

James Cloos avatar Joshua Palma 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.