
com.github.ocraft.s2client.protocol.request.RequestJoinGame Maven / Gradle / Ivy
The newest version!
package com.github.ocraft.s2client.protocol.request;
/*-
* #%L
* ocraft-s2client-protocol
* %%
* Copyright (C) 2017 - 2018 Ocraft Project
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
import SC2APIProtocol.Sc2Api;
import com.github.ocraft.s2client.protocol.BuilderSyntax;
import com.github.ocraft.s2client.protocol.Strings;
import com.github.ocraft.s2client.protocol.game.*;
import com.github.ocraft.s2client.protocol.response.ResponseType;
import com.github.ocraft.s2client.protocol.syntax.request.MultiplayerSyntax;
import com.github.ocraft.s2client.protocol.syntax.request.RequestJoinGameSyntax;
import com.github.ocraft.s2client.protocol.syntax.request.UseInterfaceSyntax;
import java.util.Objects;
import java.util.Optional;
import static com.github.ocraft.s2client.protocol.Constants.nothing;
import static com.github.ocraft.s2client.protocol.Defaults.defaultInterfaces;
import static com.github.ocraft.s2client.protocol.Preconditions.isSet;
import static java.util.stream.Collectors.toSet;
public final class RequestJoinGame extends Request {
private static final long serialVersionUID = 6978407850554692095L;
private final Race race;
private final Observer observerOf;
private final InterfaceOptions interfaceOptions;
private final MultiplayerOptions multiplayerOptions;
private final String playerName;
private RequestJoinGame(Builder builder) {
this.race = builder.race;
this.observerOf = builder.observer;
this.interfaceOptions = builder.interfaceOptions;
this.multiplayerOptions = builder.multiplayerOptions;
this.playerName = builder.playerName;
}
public static final class Builder implements RequestJoinGameSyntax, UseInterfaceSyntax {
private Race race;
private Observer observer;
private InterfaceOptions interfaceOptions = defaultInterfaces();
private MultiplayerOptions multiplayerOptions;
private String playerName;
@Override
public UseInterfaceSyntax as(Race race) {
this.observer = nothing();
this.race = race;
return this;
}
@Override
public UseInterfaceSyntax as(Observer observer) {
this.observer = observer;
this.race = nothing();
return this;
}
@Override
public UseInterfaceSyntax as(Race race, String playerName) {
as(race);
this.playerName = playerName;
return this;
}
@Override
public UseInterfaceSyntax as(Observer observer, String playerName) {
as(observer);
this.playerName = playerName;
return this;
}
@Override
public MultiplayerSyntax use(InterfaceOptions interfaceOptions) {
this.interfaceOptions = interfaceOptions;
return this;
}
@Override
public MultiplayerSyntax use(BuilderSyntax interfaceOptions) {
return use(interfaceOptions.build());
}
@Override
public BuilderSyntax with(MultiplayerOptions multiplayerOptions) {
this.multiplayerOptions = multiplayerOptions;
return this;
}
@Override
public BuilderSyntax with(
BuilderSyntax multiplayerOptions) {
return with(multiplayerOptions.build());
}
@Override
public RequestJoinGame build() {
if (!oneOfParticipantIsSet()) throw new IllegalArgumentException("participant case is required");
if (!interfaceOptionsAreSet()) throw new IllegalArgumentException("interface options are required");
return new RequestJoinGame(this);
}
private boolean oneOfParticipantIsSet() {
return isSet(observer) || isSet(race);
}
private boolean interfaceOptionsAreSet() {
return isSet(interfaceOptions);
}
}
public static RequestJoinGameSyntax joinGame() {
return new Builder();
}
@Override
public Sc2Api.Request toSc2Api() {
Sc2Api.RequestJoinGame.Builder aSc2ApiRequestJoinGame = Sc2Api.RequestJoinGame.newBuilder()
.setOptions(interfaceOptions.toSc2Api());
getRace().map(Race::toSc2Api).ifPresent(aSc2ApiRequestJoinGame::setRace);
getObserverOf().map(Observer::toSc2Api).ifPresent(aSc2ApiRequestJoinGame::setObservedPlayerId);
getMultiplayerOptions().ifPresent(options -> aSc2ApiRequestJoinGame
.setSharedPort(options.getSharedPort())
.setServerPorts(options.getServerPort().toSc2Api())
.addAllClientPorts(options.getClientPorts().stream().map(PortSet::toSc2Api).collect(toSet())));
getPlayerName().ifPresent(aSc2ApiRequestJoinGame::setPlayerName);
return Sc2Api.Request.newBuilder()
.setJoinGame(aSc2ApiRequestJoinGame.build())
.build();
}
@Override
public ResponseType responseType() {
return ResponseType.JOIN_GAME;
}
public Optional getRace() {
return Optional.ofNullable(race);
}
public Optional getObserverOf() {
return Optional.ofNullable(observerOf);
}
public InterfaceOptions getInterfaceOptions() {
return interfaceOptions;
}
public Optional getMultiplayerOptions() {
return Optional.ofNullable(multiplayerOptions);
}
/**
* Use this to set the player's name to something other than autogenerated name.
*/
public Optional getPlayerName() {
return Optional.ofNullable(playerName);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
RequestJoinGame that = (RequestJoinGame) o;
if (race != that.race) return false;
if (!Objects.equals(observerOf, that.observerOf)) return false;
if (!interfaceOptions.equals(that.interfaceOptions)) return false;
if (!Objects.equals(multiplayerOptions, that.multiplayerOptions))
return false;
return Objects.equals(playerName, that.playerName);
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (race != null ? race.hashCode() : 0);
result = 31 * result + (observerOf != null ? observerOf.hashCode() : 0);
result = 31 * result + interfaceOptions.hashCode();
result = 31 * result + (multiplayerOptions != null ? multiplayerOptions.hashCode() : 0);
result = 31 * result + (playerName != null ? playerName.hashCode() : 0);
return result;
}
@Override
public String toString() {
return Strings.toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy