All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.moaxcp.x11client.protocol.randr.SetScreenConfig Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.randr;

import com.github.moaxcp.x11client.protocol.TwoWayRequest;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XReplyFunction;
import java.io.IOException;
import java.lang.Byte;
import java.lang.Override;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;

@Value
@Builder
public class SetScreenConfig implements TwoWayRequest {
  public static final byte OPCODE = 2;

  private int window;

  private int timestamp;

  private int configTimestamp;

  private short sizeID;

  private short rotation;

  private short rate;

  public XReplyFunction getReplyFunction() {
    return (field, sequenceNumber, in) -> SetScreenConfigReply.readSetScreenConfigReply(field, sequenceNumber, in);
  }

  public byte getOpCode() {
    return OPCODE;
  }

  public static SetScreenConfig readSetScreenConfig(X11Input in) throws IOException {
    in.readPad(1);
    short length = in.readCard16();
    int window = in.readCard32();
    int timestamp = in.readCard32();
    int configTimestamp = in.readCard32();
    short sizeID = in.readCard16();
    short rotation = in.readCard16();
    short rate = in.readCard16();
    in.readPad(2);
    SetScreenConfig.SetScreenConfigBuilder javaBuilder = SetScreenConfig.builder();
    javaBuilder.window(window);
    javaBuilder.timestamp(timestamp);
    javaBuilder.configTimestamp(configTimestamp);
    javaBuilder.sizeID(sizeID);
    javaBuilder.rotation(rotation);
    javaBuilder.rate(rate);
    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.writeCard32(window);
    out.writeCard32(timestamp);
    out.writeCard32(configTimestamp);
    out.writeCard16(sizeID);
    out.writeCard16(rotation);
    out.writeCard16(rate);
    out.writePad(2);
  }

  public boolean isRotationEnabled(@NonNull Rotation... maskEnums) {
    for(Rotation m : maskEnums) {
      if(!m.isEnabled(rotation)) {
        return false;
      }
    }
    return true;
  }

  @Override
  public int getSize() {
    return 24;
  }

  public static class SetScreenConfigBuilder {
    public boolean isRotationEnabled(@NonNull Rotation... maskEnums) {
      for(Rotation m : maskEnums) {
        if(!m.isEnabled(rotation)) {
          return false;
        }
      }
      return true;
    }

    public SetScreenConfig.SetScreenConfigBuilder rotationEnable(Rotation... maskEnums) {
      for(Rotation m : maskEnums) {
        rotation((short) m.enableFor(rotation));
      }
      return this;
    }

    public SetScreenConfig.SetScreenConfigBuilder rotationDisable(Rotation... maskEnums) {
      for(Rotation m : maskEnums) {
        rotation((short) m.disableFor(rotation));
      }
      return this;
    }

    public int getSize() {
      return 24;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy