Code Monkey home page Code Monkey logo

drg2sba's Introduction

npm version

This program takes a .drg file from I-Doser and converts it to an .sbg SBaGen file.

See it in action here.

The authors of this project have nothing to do with I-Doser, I-Doser is a registered trademark.

It should work on Windows, Mac, & Linux.

Features

  • Convert drg file into sbagen format
  • Extract every part of the drg file (description, title, image, sbagen code)

Installation

You can install this globally so drg2sba ends up in your path with this: npm install -g drg2sba. You can add it to a particular project with npm install --save drg2sba.

usage

command-line

You can get more info with drg2sba --help.

Extract the description & title as comments in the sbagen file:

drg2sba drg/Absinthe.drg

Extract the image:

drg2sba drg/Absinthe.drg --image Absinthe.bmp

Extract all the parts as separate files:

drg2sba drg/Absinthe.drg -i Absinthe.png -s Absinthe.sba -d Absinthe.txt

Extract all parts to filenames that match for every file in a directory:

drg2sba -i -s -d drg/*.drg

Which will make these files in that directory:

  • Absinthe.bmp
  • Absinthe.sba
  • Absinthe.txt

nodejs, browserify

var drg2sba = require('drg2sba');
var sba = drg2sba(drg_file_contents);

requirejs

define(['drg2sba', 'text!Absinthe.drg'], function(drg2sba, drg_file_contents){
  var sba = drg2sba(drg_file_contents);
});

no-install regular browser-global

<script src="https://rawgit.com/brainbang/drg2sbg/master/dist/drg2sba.min.js"></script>
<script>
var sba = drg2sba(drg_file_contents);
</script>

Related links

drg2sba's People

Contributors

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