com.github.moaxcp.x11client.protocol.xf86vidmode.SetGammaRamp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.xf86vidmode;
import com.github.moaxcp.x11client.protocol.OneWayRequest;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import java.io.IOException;
import java.lang.Byte;
import java.lang.Override;
import java.lang.Short;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class SetGammaRamp implements OneWayRequest {
public static final byte OPCODE = 18;
private short screen;
@NonNull
private List red;
@NonNull
private List green;
@NonNull
private List blue;
public byte getOpCode() {
return OPCODE;
}
public static SetGammaRamp readSetGammaRamp(X11Input in) throws IOException {
in.readPad(1);
short length = in.readCard16();
short screen = in.readCard16();
short size = in.readCard16();
List red = in.readCard16((Short.toUnsignedInt(size) + 1) & (~ (1)));
List green = in.readCard16((Short.toUnsignedInt(size) + 1) & (~ (1)));
List blue = in.readCard16((Short.toUnsignedInt(size) + 1) & (~ (1)));
SetGammaRamp.SetGammaRampBuilder javaBuilder = SetGammaRamp.builder();
javaBuilder.screen(screen);
javaBuilder.red(red);
javaBuilder.green(green);
javaBuilder.blue(blue);
in.readPadAlign(javaBuilder.getSize());
return javaBuilder.build();
}
@Override
public void write(byte offset, X11Output out) throws IOException {
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE) + Byte.toUnsignedInt(offset)));
out.writePad(1);
out.writeCard16((short) getLength());
out.writeCard16(screen);
short size = (short) blue.size();
out.writeCard16(size);
out.writeCard16(red);
out.writeCard16(green);
out.writeCard16(blue);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 8 + 2 * red.size() + 2 * green.size() + 2 * blue.size();
}
public static class SetGammaRampBuilder {
public int getSize() {
return 8 + 2 * red.size() + 2 * green.size() + 2 * blue.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy