Code Monkey home page Code Monkey logo

korempt's Introduction

libopenmpt player for Kore

current libopenmpt version : 3.1

How to:

  • Add the libopenmpt project to your project root under the folder LibOpenMPT.

namespace {
    void update() {
        Kore::Audio2::update(); //Update audio!
    }
}

int kore(int argc, char** argv) {
    Kore::System::setName("Shader");
    Kore::System::setup();
    Kore::WindowOptions options;
    options.title = "KoreMPT";
    options.width = 1024/3;
    options.height = 768/3;
    options.x = 100;
    options.y = 100;
    options.mode = WindowMode::WindowModeWindow;
    Kore::System::initWindow(options);
    Kore::System::setCallback(update);

    Kore::Audio2::init(); // Initialize Audio2 first
    Kore::Audio1::init(); // Make sure you initialize Audio1 as well

    Kore::FileReader file;
    file.open("Sound/theme_for_a_hero.mptm", Kore::FileReader::FileType::Asset);

    KMPT::MPTStreamer mod;
    // Make sure you call init, it will hijack Audio1 and makes sure it's updated too.
    mod.init();			
    mod.loadFile(file);
    file.close();

    Kore::System::start();

    return 0;
};

Currently only one MPTStreamer is supported. Meaning you can only load one module at a time. However sub songs are supported.

File support

Any module file that works with openmpt should work here too.

known limitations:

Compressed data is not supported. If your module contains compressed data best course of action is to load the module into OpenMPT and convert it to a OpenMPT file. Due to differences in how some modules are handled there might be slight loss in quality.

Tested on

  • windows
  • android

Korefile.js

Korefile.js contains all the defines and includes to run libopenmpt with Kore. Things here deviate from the projects make file. For any other untested platform you might have to add a clause specifically for that target and add includes/defines.

korempt's People

Contributors

disar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

bradparks

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.