1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-12 03:13:00 +00:00
Files
CC-Tweaked/src/main/java/dan200/computercraft/shared/util/Palette.java
2021-07-11 01:40:01 +00:00

136 lines
3.1 KiB
Java

/*
* This file is part of ComputerCraft - http://www.computercraft.info
* Copyright Daniel Ratcliffe, 2011-2021. Do not distribute without permission.
* Send enquiries to dratcliffe@gmail.com
*/
package dan200.computercraft.shared.util;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.network.PacketByteBuf;
public class Palette
{
public static final Palette DEFAULT = new Palette();
private static final int PALETTE_SIZE = 16;
private final double[][] colours = new double[PALETTE_SIZE][3];
public Palette()
{
// Get the default palette
resetColours();
}
public void resetColours()
{
for( int i = 0; i < Colour.VALUES.length; i++ )
{
resetColour( i );
}
}
public void resetColour( int i )
{
if( i >= 0 && i < colours.length )
{
setColour( i, Colour.VALUES[i] );
}
}
public void setColour( int i, Colour colour )
{
setColour( i, colour.getR(), colour.getG(), colour.getB() );
}
public void setColour( int i, double r, double g, double b )
{
if( i >= 0 && i < colours.length )
{
colours[i][0] = r;
colours[i][1] = g;
colours[i][2] = b;
}
}
public double[] getColour( int i )
{
if( i >= 0 && i < colours.length )
{
return colours[i];
}
return null;
}
public void write( PacketByteBuf buffer )
{
for( double[] colour : colours )
{
for( double channel : colour )
{
buffer.writeByte( (int) (channel * 0xFF) & 0xFF );
}
}
}
public void read( PacketByteBuf buffer )
{
for( double[] colour : colours )
{
for( int i = 0; i < colour.length; i++ )
{
colour[i] = (buffer.readByte() & 0xFF) / 255.0;
}
}
}
public NbtCompound writeToNBT( NbtCompound nbt )
{
int[] rgb8 = new int[colours.length];
for( int i = 0; i < colours.length; i++ )
{
rgb8[i] = encodeRGB8( colours[i] );
}
nbt.putIntArray( "term_palette", rgb8 );
return nbt;
}
public static int encodeRGB8( double[] rgb )
{
int r = (int) (rgb[0] * 255) & 0xFF;
int g = (int) (rgb[1] * 255) & 0xFF;
int b = (int) (rgb[2] * 255) & 0xFF;
return (r << 16) | (g << 8) | b;
}
public void readFromNBT( NbtCompound nbt )
{
if( !nbt.contains( "term_palette" ) )
{
return;
}
int[] rgb8 = nbt.getIntArray( "term_palette" );
if( rgb8.length != colours.length )
{
return;
}
for( int i = 0; i < colours.length; i++ )
{
colours[i] = decodeRGB8( rgb8[i] );
}
}
public static double[] decodeRGB8( int rgb )
{
return new double[] {
((rgb >> 16) & 0xFF) / 255.0f,
((rgb >> 8) & 0xFF) / 255.0f,
(rgb & 0xFF) / 255.0f,
};
}
}