package dataBase.subPicture;

import java.awt.Color;
import java.io.IOException;
import java.io.Serializable;

import util.simpleIO.Out;

public class PixelByte implements Serializable {
	
	private static final long serialVersionUID = 4L;
	public byte r,g,b;
	static int count = 0;
	
	/**
	 * Constructor: full
	 * @param rgb - RGB-array. Alpha ignored.
	 */
	public PixelByte(int[] rgb){
		
		assert rgb[0]>0 && rgb[1]>0 && rgb[2]>0 && rgb[0]<256 && rgb[1]<256 && rgb[2]<256;
		
		r = (byte) rgb[0];
		g = (byte) rgb[1];
		b = (byte) rgb[2];
		
		//if(count++ % 1000 == 0)
		//	Out.pl(" >> Pixel = "+toString());
	}
	
	/**
	 * Constructor: empty
	 */
	public PixelByte(){
		//empty
	}
	
//	/**
//	 * Testing, assertion
//	 * @return true if assertion (pixel values between 0 and 255)
//	 */
//	private boolean test(){
//		return r<256 && g<256 && b<=256 &&
//				r>0 && g>0 && b>0;
//	}
	
	/**
	 * @return luminance within 255
	 */
	public int getLumiFull(){
		return r&0xff + g&0xff + b&0xff;
	}
	
//	/**
//	 * @return luminance within 255
//	 */
//	public short getLumi255(){
//		return (short) ((r+g+b+0.5f)/3.0f);
//	}
	
	/**
	 * Also called HSB (Hue, Saturation, Value/Brightness)
	 * @return {Hue,Saturation,Value}
	 */
	public float[] getHSV(){
		float[] hsv = new float[3];
		Color.RGBtoHSB(r&0xff, g&0xff, b&0xff, hsv);
		return hsv;
	}
	
	@Override
	public String toString(){
		return ""+r+"/"+g+"/"+b;
	}
	
	protected void writeObjectNew(java.io.ObjectOutputStream out) throws IOException {
		out.writeShort(r);
		out.writeShort(g);
		out.writeShort(b);
	}
	protected PixelByte readObjectNew(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
		r=in.readShort();
		g=in.readShort();
		b=in.readShort();
		
		//if(count++ % 1000 == 0)
		//	Out.pl(" >> Pixel = "+toString());
		
		return this;
	}
}
