com.foudroyantfactotum.mod.fousarchive.midi.generation.MidiTexture.java Source code

Java tutorial

Introduction

Here is the source code for com.foudroyantfactotum.mod.fousarchive.midi.generation.MidiTexture.java

Source

/*
 * Fou's Archive - A Minecraft Mod
 * Copyright (c) 2016 Foudroyant Factotum
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.foudroyantfactotum.mod.fousarchive.midi.generation;

import com.foudroyantfactotum.mod.fousarchive.items.ItemPianoRoll;
import com.foudroyantfactotum.mod.fousarchive.utility.Settings;
import com.foudroyantfactotum.mod.fousarchive.utility.log.Logger;
import com.foudroyantfactotum.mod.fousarchive.utility.log.UserLogger;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.renderer.texture.AbstractTexture;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.util.ResourceLocation;
import org.lwjgl.BufferUtils;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import org.lwjgl.opengl.GL14;

import javax.imageio.ImageIO;
import javax.sound.midi.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.util.Arrays;

public class MidiTexture extends AbstractTexture {
    private final ResourceLocation rl;

    public MidiTexture(ResourceLocation rl) {
        this.rl = rl;
    }

    @Override
    public void loadTexture(IResourceManager resourceManager) throws IOException {
        final int xSize = getSmallTextureSize();
        final int ySize = 88;
        byte[] res = null;

        try (final InputStream io = resourceManager.getResource(rl).getInputStream()) {
            res = getMidiTrack(io, xSize, ySize);
        } catch (InvalidMidiDataException e) {
            e.printStackTrace();
        }

        if (res != null) {
            this.deleteGlTexture();

            GlStateManager.bindTexture(this.getGlTextureId());

            final ByteBuffer bb = (ByteBuffer) BufferUtils.createByteBuffer(res.length).put(res).flip();

            GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MAX_LEVEL, 0);
            GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST);
            GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MIN_LOD, 0.0f);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MAX_LOD, 0.0f);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL14.GL_TEXTURE_LOD_BIAS, 0.0f);

            GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, xSize, ySize, 0, GL11.GL_RGB, GL11.GL_BYTE, bb);
        }
    }

    private static int getSmallTextureSize() {
        if (Minecraft.getGLMaximumTextureSize() < Settings.PianoPlayer.uy_max_texture_cap)
            return Minecraft.getGLMaximumTextureSize();
        else
            return Settings.PianoPlayer.uy_max_texture_cap;
    }

    public boolean hasTextureID() {
        return glTextureId != -1;
    }

    public ResourceLocation resourceLocation() {
        return rl;
    }

    @Override
    public void restoreLastBlurMipmap() {

    }

    @Override
    public void setBlurMipmap(boolean p1, boolean p2) {

    }

    public double getDisplayRatio() {
        return Settings.PianoPlayer.uy_max_sheet_shown / (double) Settings.PianoPlayer.uy_max_texture_cap; // sheet display size ratio
    }

    public double getDisplayAmount() {
        return getDisplayRatio() * 0.5;
    }

    private static byte[] getMidiTrack(InputStream io, int xSize, int ySize)
            throws InvalidMidiDataException, IOException {
        final Sequence sequence = MidiSystem.getSequence(io);
        final byte pixelComponents = 3;

        final byte[] img = new byte[xSize * ySize * pixelComponents];
        final long[] lastEvent = new long[88];

        for (Track track : sequence.getTracks()) {
            Arrays.fill(lastEvent, -1);

            for (int i = 0; i < track.size(); i++) {
                final MidiEvent event = track.get(i);
                final MidiMessage midimsg = event.getMessage();

                if (midimsg instanceof ShortMessage) {
                    final ShortMessage shortmsg = (ShortMessage) midimsg;
                    final int shortmsg_cmd = shortmsg.getCommand();

                    if (!(shortmsg_cmd == ShortMessage.NOTE_OFF || shortmsg_cmd == ShortMessage.NOTE_ON))
                        continue;

                    final int note = shortmsg.getData1() - 18;
                    final int vel = shortmsg.getData2();

                    if (!(note > -1 && note < lastEvent.length))
                        continue;

                    if ((vel == 0 || shortmsg_cmd == ShortMessage.NOTE_OFF) && lastEvent[note] != -1) {
                        final int line = note * xSize;
                        final int lineStart = (int) (line
                                + (lastEvent[note] * xSize / (double) sequence.getTickLength())) * pixelComponents;
                        final int lineEnd = (int) (line
                                + (event.getTick() * xSize / (double) sequence.getTickLength())) * pixelComponents;

                        Arrays.fill(img, lineStart, lineEnd, Byte.MAX_VALUE);

                        lastEvent[note] = -1;

                    } else if (lastEvent[note] == -1) {
                        lastEvent[note] = event.getTick();
                    }
                }
            }
        }

        return img;
    }

    public static class EmptyPage extends MidiTexture {
        public EmptyPage() {
            super(ItemPianoRoll.NONE);
        }

        @Override
        public void loadTexture(IResourceManager resourceManager) throws IOException {
            final int xSize = 10;
            final int ySize = 10;
            byte[] res = new byte[xSize * ySize * 3];

            this.deleteGlTexture();

            GlStateManager.bindTexture(this.getGlTextureId());

            final ByteBuffer bb = (ByteBuffer) BufferUtils.createByteBuffer(res.length).put(res).flip();

            GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MAX_LEVEL, 0);
            GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MIN_LOD, 0.0f);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL12.GL_TEXTURE_MAX_LOD, 0.0f);
            GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL14.GL_TEXTURE_LOD_BIAS, 0.0f);

            GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, xSize, ySize, 0, GL11.GL_RGB, GL11.GL_BYTE, bb);
        }
    }

    public static void main(String[] args) throws IOException, InvalidMidiDataException {
        final InputStream io = new FileInputStream("");
        final long startTime = System.currentTimeMillis();

        final byte[] test = getMidiTrack(io, 8192, 88);

        final long endTime = System.currentTimeMillis();

        io.close();

        Logger.info(UserLogger.GENERAL,
                String.format("startTime: %s endTime: %s totalTime: %s", startTime, endTime, endTime - startTime));

        ImageIO.write(toBufferImage(test, 8192, 88), "png", new File("/tmp/Song.png"));
    }

    private static BufferedImage toBufferImage(byte[] img, int xSize, int ySize) {
        final BufferedImage bimg = new BufferedImage(xSize, ySize, BufferedImage.TYPE_3BYTE_BGR);

        for (int x = 0; x < xSize; ++x) {
            for (int y = 0; y < ySize; ++y) {
                final int pixel = (y * xSize + x) * 3;

                bimg.setRGB(x, y, img[pixel] << 16 | img[pixel + 1] << 8 | img[pixel + 2]);
            }
        }

        return bimg;
    }
}