mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Some changes to user / session / chat / tournament handling (not all tested yet).
This commit is contained in:
parent
e8cfb2231c
commit
d3a2ba683c
13 changed files with 105 additions and 86 deletions
|
@ -171,6 +171,17 @@ public class ChatManager {
|
|||
}
|
||||
}
|
||||
|
||||
public void sendReconnectMessage(UUID userId) {
|
||||
User user = UserManager.getInstance().getUser(userId);
|
||||
if (user != null) {
|
||||
for (ChatSession chat: chatSessions.values()) {
|
||||
if (chat.hasUser(userId)) {
|
||||
chat.broadcast(null, user.getName() + " has reconnected", MessageColor.BLUE, true, MessageType.STATUS);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void removeUser(UUID userId, DisconnectReason reason) {
|
||||
for (ChatSession chat: chatSessions.values()) {
|
||||
chat.kill(userId, reason);
|
||||
|
|
|
@ -64,7 +64,7 @@ public class ChatSession {
|
|||
if (user != null && !clients.containsKey(userId)) {
|
||||
String userName = user.getName();
|
||||
clients.put(userId, userName);
|
||||
broadcast(null, new StringBuilder(userName).append(" has joined").toString(), MessageColor.BLUE, true, MessageType.STATUS);
|
||||
broadcast(null, userName + " has joined", MessageColor.BLUE, true, MessageType.STATUS);
|
||||
logger.debug(userName + " joined chat " + chatId);
|
||||
}
|
||||
}
|
||||
|
@ -78,8 +78,10 @@ public class ChatSession {
|
|||
}
|
||||
if (reason != null && userId != null && clients.containsKey(userId)) {
|
||||
String userName = clients.get(userId);
|
||||
if (!reason.equals(DisconnectReason.LostConnection)) { // for lost connection the user will be reconnected or session expire so no remove of chat yet
|
||||
clients.remove(userId);
|
||||
logger.debug(userName + "(" + reason.toString() + ")" + " removed from chatId " + chatId);
|
||||
}
|
||||
String message;
|
||||
switch (reason) {
|
||||
case Disconnected:
|
||||
|
@ -151,8 +153,7 @@ public class ChatSession {
|
|||
user.fireCallback(new ClientCallback("chatMessage", chatId, new ChatMessage(username, msg, time, color, messageType, soundToPlay)));
|
||||
}
|
||||
else {
|
||||
logger.debug("user not found - killed from chat session - userId: " + userId +" chatId: " +chatId);
|
||||
kill(userId, DisconnectReason.CleaningUp);
|
||||
logger.debug("user not found but chat still exists - userId: " + userId +" chatId: " +chatId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -204,11 +204,17 @@ public class Main {
|
|||
// So it should be possible to reconnect to server and continue games if DisconnectReason is set to LostConnection
|
||||
//SessionManager.getInstance().disconnect(client.getSessionId(), DisconnectReason.Disconnected);
|
||||
SessionManager.getInstance().disconnect(client.getSessionId(), DisconnectReason.LostConnection);
|
||||
logger.debug("Client disconnected - " + sessionInfo + " throwable: " + throwable == null ? "null" :throwable.getMessage());
|
||||
logger.info("CLIENT DISCONNECTED - " + sessionInfo, throwable);
|
||||
if (logger.isDebugEnabled()) {
|
||||
throwable.printStackTrace();
|
||||
}
|
||||
}
|
||||
else {
|
||||
SessionManager.getInstance().disconnect(client.getSessionId(), DisconnectReason.LostConnection);
|
||||
logger.info("Connection to client lost - " + sessionInfo + " throwable: " + (throwable == null ? "null" :throwable.getMessage()));
|
||||
logger.info("CONNECTION LOST - " + sessionInfo, throwable);
|
||||
if (logger.isDebugEnabled()) {
|
||||
throwable.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -98,9 +98,10 @@ public class Session {
|
|||
user = UserManager.getInstance().findUser(userName);
|
||||
if (user.getHost().equals(host)) {
|
||||
user.updateLastActivity(); // minimizes possible expiration
|
||||
this.userId = user.getId();
|
||||
if (user.getSessionId().isEmpty()) {
|
||||
// TODO Send Chat message to tables (user is not registered yet)
|
||||
// ChatManager.getInstance().broadcast([CHAT ID TABLES], "has reconnected", ChatMessage.MessageColor.GREEN);
|
||||
ChatManager.getInstance().sendReconnectMessage(user.getId());
|
||||
logger.info("Reconnecting session for " + userName);
|
||||
} else {
|
||||
//throw new MageException("This machine is already connected");
|
||||
|
@ -195,24 +196,13 @@ public class Session {
|
|||
return sessionId;
|
||||
}
|
||||
|
||||
//synchronized public void userLostConnection() {
|
||||
public void userLostConnection() {
|
||||
// because different threads can activate this
|
||||
synchronized public void userLostConnection() {
|
||||
User user = UserManager.getInstance().getUser(userId);
|
||||
if (user == null) {
|
||||
logger.error("User for session not found sessionId: " + sessionId + " userId: " +userId);
|
||||
// can happen if user from same host sign in multiple time with multiple clients, after he disconnects with one client
|
||||
return;
|
||||
}
|
||||
if (user.getSessionId().isEmpty()) {
|
||||
logger.debug("User was already disconnected sessionId: " + sessionId + " userId: " +userId);
|
||||
return;
|
||||
}
|
||||
if (logger.isInfoEnabled()) {
|
||||
StringBuilder sb = new StringBuilder(user.getName());
|
||||
sb.append(" lost connection - userId: ").append(userId);
|
||||
sb.append(" sessionId: ").append(sessionId);
|
||||
logger.info(sb);
|
||||
if (user == null || !user.isConnected()) {
|
||||
return; //user was already disconnected by other thread
|
||||
}
|
||||
logger.info("LOST CONNECTION - " + user.getName());
|
||||
UserManager.getInstance().disconnect(userId, DisconnectReason.LostConnection);
|
||||
}
|
||||
|
||||
|
@ -225,7 +215,10 @@ public class Session {
|
|||
call.setMessageId(messageId++);
|
||||
callbackHandler.handleCallbackOneway(new Callback(call));
|
||||
} catch (HandleCallbackException ex) {
|
||||
logger.info(new StringBuilder("Session of userId ").append(userId).append(" callback exception: ").append(ex.getMessage()).toString());
|
||||
logger.info("CALLBACK EXCEPTION - userId " + userId, ex);
|
||||
if (logger.isDebugEnabled()) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
userLostConnection();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -111,9 +111,14 @@ public class SessionManager {
|
|||
return false;
|
||||
}
|
||||
|
||||
public synchronized void disconnect(String sessionId, DisconnectReason reason) {
|
||||
public void disconnect(String sessionId, DisconnectReason reason) {
|
||||
Session session = sessions.get(sessionId);
|
||||
if (session != null) {
|
||||
synchronized (session) {
|
||||
if (!sessions.containsKey(sessionId)) {
|
||||
// session was removed meanwhile by another thread so we can return
|
||||
return;
|
||||
}
|
||||
sessions.remove(sessionId);
|
||||
switch (reason) {
|
||||
case Disconnected:
|
||||
|
@ -134,11 +139,11 @@ public class SessionManager {
|
|||
default:
|
||||
logger.error("endSession: unexpected reason " + reason.toString() + " - sessionId: "+ sessionId);
|
||||
}
|
||||
} else {
|
||||
logger.error("endSession: could not find session with id " + sessionId);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public Map<String, Session> getSessions() {
|
||||
Map<String, Session> map = new HashMap<>();
|
||||
for (Map.Entry<String, Session> entry : sessions.entrySet()) {
|
||||
|
|
|
@ -184,7 +184,7 @@ public class TableController {
|
|||
|
||||
return true;
|
||||
} else {
|
||||
throw new GameException("Playertype " + seat.getPlayerType().toString() + " could not be created.");
|
||||
throw new GameException("Playertype " + seat.getPlayerType() + " could not be created.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -155,7 +155,7 @@ public class User {
|
|||
return connectionTime;
|
||||
}
|
||||
|
||||
public synchronized void fireCallback(final ClientCallback call) {
|
||||
public void fireCallback(final ClientCallback call) {
|
||||
if (isConnected()) {
|
||||
Session session = SessionManager.getInstance().getSession(sessionId);
|
||||
if (session != null) {
|
||||
|
@ -373,7 +373,8 @@ public class User {
|
|||
if (table.isTournament()) {
|
||||
if (tableEntry.getKey() != null) {
|
||||
TournamentPlayer tournamentPlayer = table.getTournament().getPlayer(tableEntry.getKey());
|
||||
if (tournamentPlayer != null && !tournamentPlayer.isEliminated()) {
|
||||
if (tournamentPlayer != null) {
|
||||
if (!tournamentPlayer.isEliminated()) {
|
||||
switch (table.getState()) {
|
||||
case CONSTRUCTING:
|
||||
construct++;
|
||||
|
@ -385,11 +386,13 @@ public class User {
|
|||
tournament++;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!isConnected()) {
|
||||
tournamentPlayer.setDisconnectInfo(disconnectInfo);
|
||||
} else {
|
||||
tournamentPlayer.setDisconnectInfo("");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// can happen if tournamet has just ended
|
||||
logger.debug(getName() + " tournament player missing - tableId:" + table.getId(), null);
|
||||
|
|
|
@ -63,10 +63,11 @@ public class TournamentManager {
|
|||
}
|
||||
|
||||
public void quit(UUID tournamentId, UUID userId) {
|
||||
if (controllers.containsKey(tournamentId)) {
|
||||
controllers.get(tournamentId).quit(userId);
|
||||
TournamentController tournamentController = controllers.get(tournamentId);
|
||||
if (tournamentController != null) {
|
||||
tournamentController.quit(userId);
|
||||
} else {
|
||||
Logger.getLogger(TournamentManager.class).error("TournamentManager.quit tournament controller missing tournamentid: " + tournamentId + " userId: " + userId);
|
||||
Logger.getLogger(TournamentManager.class).error("Tournament controller missing tournamentid: " + tournamentId + " userId: " + userId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -176,7 +176,7 @@ public class TournamentSession {
|
|||
}
|
||||
|
||||
private void cleanUp() {
|
||||
if (!futureTimeout.isDone()) {
|
||||
if (futureTimeout != null && !futureTimeout.isDone()) {
|
||||
futureTimeout.cancel(true);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,9 +67,6 @@ public class CandelabraOfTawnos extends CardImpl {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
class CandelabraOfTawnosAbility extends ActivatedAbilityImpl implements AdjustingSourceCosts{
|
||||
public CandelabraOfTawnosAbility(){
|
||||
super(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapSourceCost());
|
||||
|
@ -110,9 +107,4 @@ class CandelabraOfTawnosAbility extends ActivatedAbilityImpl implements Adjustin
|
|||
return "{X}, {T}: Untap X target lands";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -455,6 +455,12 @@ public abstract class GameImpl implements Game, Serializable {
|
|||
}
|
||||
if (remainingPlayers <= 1 || numLosers >= state.getPlayers().size() - 1) {
|
||||
end();
|
||||
if (remainingPlayers == 0 && logger.isDebugEnabled()) {
|
||||
logger.debug("DRAW for gameId: " + getId());
|
||||
for (Player player: state.getPlayers().values()) {
|
||||
logger.debug("-- " + player.getName() + " left: " + (player.hasLeft() ? "Y":"N") + " lost: " + (player.hasLost()? "Y":"N"));
|
||||
}
|
||||
}
|
||||
for (Player player: state.getPlayers().values()) {
|
||||
if (!player.hasLeft() && !player.hasLost()) {
|
||||
logger.debug(new StringBuilder("Player ").append(player.getName()).append(" has won gameId: ").append(this.getId()));
|
||||
|
|
|
@ -444,7 +444,7 @@ public abstract class TournamentImpl implements Tournament {
|
|||
|
||||
protected void winners() {
|
||||
List<TournamentPlayer> winners = new ArrayList<>();
|
||||
int pointsWinner = Integer.MIN_VALUE;
|
||||
int pointsWinner = 1; // with less than 1 point you can't win
|
||||
for(TournamentPlayer tournamentPlayer: this.getPlayers()) {
|
||||
if (pointsWinner < tournamentPlayer.getPoints()) {
|
||||
winners.clear();
|
||||
|
@ -454,7 +454,7 @@ public abstract class TournamentImpl implements Tournament {
|
|||
winners.add(tournamentPlayer);
|
||||
}
|
||||
}
|
||||
// set winner state for the players with the most points
|
||||
// set winner state for the players with the most points > 0
|
||||
for (TournamentPlayer tournamentPlayer: winners) {
|
||||
tournamentPlayer.setStateInfo("Winner");
|
||||
}
|
||||
|
|
|
@ -88,6 +88,7 @@ public class TournamentPlayer {
|
|||
}
|
||||
|
||||
public void setEliminated() {
|
||||
this.setDisconnectInfo("");
|
||||
this.setState(TournamentPlayerState.ELIMINATED);
|
||||
this.eliminated = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue