forked from External/mage
146 lines
4.4 KiB
Java
146 lines
4.4 KiB
Java
|
|
package mage.server.draft;
|
|
|
|
import java.rmi.RemoteException;
|
|
import java.util.Optional;
|
|
import java.util.Set;
|
|
import java.util.UUID;
|
|
import java.util.concurrent.ScheduledExecutorService;
|
|
import java.util.concurrent.ScheduledFuture;
|
|
import java.util.concurrent.TimeUnit;
|
|
import mage.game.draft.Draft;
|
|
import mage.interfaces.callback.ClientCallback;
|
|
import mage.interfaces.callback.ClientCallbackMethod;
|
|
import mage.server.User;
|
|
import mage.server.UserManager;
|
|
import mage.server.util.ThreadExecutor;
|
|
import mage.view.DraftClientMessage;
|
|
import mage.view.DraftPickView;
|
|
import mage.view.DraftView;
|
|
import org.apache.log4j.Logger;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class DraftSession {
|
|
|
|
protected static final Logger logger = Logger.getLogger(DraftSession.class);
|
|
|
|
protected final UUID userId;
|
|
protected final UUID playerId;
|
|
protected final Draft draft;
|
|
protected boolean killed = false;
|
|
protected UUID markedCard;
|
|
|
|
private ScheduledFuture<?> futureTimeout;
|
|
protected static final ScheduledExecutorService timeoutExecutor = ThreadExecutor.instance.getTimeoutExecutor();
|
|
|
|
public DraftSession(Draft draft, UUID userId, UUID playerId) {
|
|
this.userId = userId;
|
|
this.draft = draft;
|
|
this.playerId = playerId;
|
|
this.markedCard = null;
|
|
}
|
|
|
|
public boolean init() {
|
|
if (!killed) {
|
|
Optional<User> user = UserManager.instance.getUser(userId);
|
|
if (user.isPresent()) {
|
|
if (futureTimeout != null && !futureTimeout.isDone()) {
|
|
int remaining = (int) futureTimeout.getDelay(TimeUnit.SECONDS);
|
|
user.get().fireCallback(new ClientCallback(ClientCallbackMethod.DRAFT_INIT, draft.getId(),
|
|
new DraftClientMessage(getDraftView(), getDraftPickView(remaining))));
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public void update() {
|
|
if (!killed) {
|
|
UserManager.instance
|
|
.getUser(userId).
|
|
ifPresent(user -> user.fireCallback(new ClientCallback(ClientCallbackMethod.DRAFT_UPDATE, draft.getId(),
|
|
new DraftClientMessage(getDraftView(), null))));
|
|
}
|
|
}
|
|
|
|
public void draftOver() {
|
|
if (!killed) {
|
|
UserManager.instance
|
|
.getUser(userId)
|
|
.ifPresent(user -> user.fireCallback(new ClientCallback(ClientCallbackMethod.DRAFT_OVER, draft.getId())));
|
|
}
|
|
}
|
|
|
|
public void pickCard(int timeout) {
|
|
if (!killed) {
|
|
setupTimeout(timeout);
|
|
UserManager.instance
|
|
.getUser(userId)
|
|
.ifPresent(user -> user.fireCallback(new ClientCallback(ClientCallbackMethod.DRAFT_PICK, draft.getId(),
|
|
new DraftClientMessage(getDraftView(), getDraftPickView(timeout)))));
|
|
|
|
}
|
|
}
|
|
|
|
private synchronized void setupTimeout(int seconds) {
|
|
cancelTimeout();
|
|
if (seconds > 0) {
|
|
futureTimeout = timeoutExecutor.schedule(
|
|
() -> DraftManager.instance.timeout(draft.getId(), userId),
|
|
seconds, TimeUnit.SECONDS
|
|
);
|
|
}
|
|
}
|
|
|
|
private synchronized void cancelTimeout() {
|
|
if (futureTimeout != null) {
|
|
futureTimeout.cancel(false);
|
|
}
|
|
}
|
|
|
|
protected void handleRemoteException(RemoteException ex) {
|
|
logger.fatal("DraftSession error ", ex);
|
|
DraftManager.instance.kill(draft.getId(), userId);
|
|
}
|
|
|
|
public void setKilled() {
|
|
killed = true;
|
|
}
|
|
|
|
public DraftPickView sendCardPick(UUID cardId, Set<UUID> hiddenCards) {
|
|
cancelTimeout();
|
|
if (draft.addPick(playerId, cardId, hiddenCards)) {
|
|
return getDraftPickView(0);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void removeDraft() {
|
|
UserManager.instance.getUser(userId).ifPresent(user -> user.removeDraft(playerId));
|
|
|
|
}
|
|
|
|
private DraftView getDraftView() {
|
|
return new DraftView(draft);
|
|
}
|
|
|
|
private DraftPickView getDraftPickView(int timeout) {
|
|
return new DraftPickView(draft.getPlayer(playerId), timeout);
|
|
}
|
|
|
|
public UUID getDraftId() {
|
|
return draft.getId();
|
|
}
|
|
|
|
public UUID getMarkedCard() {
|
|
return markedCard;
|
|
}
|
|
|
|
public void setMarkedCard(UUID markedCard) {
|
|
this.markedCard = markedCard;
|
|
}
|
|
|
|
}
|