Compare commits
1 Commits
setupBranc
...
feature/se
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35ded2b5ea |
198
Client/Client.cs
198
Client/Client.cs
@@ -2,54 +2,28 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Windows.Media;
|
|
||||||
using System.Windows;
|
|
||||||
|
|
||||||
using static SharedClientServer.JSONConvert;
|
using static SharedClientServer.JSONConvert;
|
||||||
|
|
||||||
namespace Client
|
namespace Client
|
||||||
{
|
{
|
||||||
public delegate void LobbyJoinCallback(bool isHost);
|
public delegate void OnLobbyCreated(int id);
|
||||||
|
|
||||||
public delegate void RandomWord(string word);
|
|
||||||
public delegate void HandleIncomingMsg(string username, string msg);
|
|
||||||
internal delegate void HandleIncomingPlayer(Lobby lobby);
|
|
||||||
public delegate void CanvasDataReceived(double[][] coordinates, Color color);
|
|
||||||
public delegate void CanvasReset();
|
|
||||||
public delegate void LobbyCallback(int id);
|
|
||||||
|
|
||||||
|
|
||||||
class Client : ObservableObject
|
class Client : ObservableObject
|
||||||
{
|
{
|
||||||
|
|
||||||
private ClientData clientData = ClientData.Instance;
|
|
||||||
|
|
||||||
private TcpClient tcpClient;
|
private TcpClient tcpClient;
|
||||||
private NetworkStream stream;
|
private NetworkStream stream;
|
||||||
private byte[] buffer = new byte[2048];
|
private byte[] buffer = new byte[1024];
|
||||||
private byte[] totalBuffer = new byte[2048];
|
private byte[] totalBuffer = new byte[1024];
|
||||||
private int totalBufferReceived = 0;
|
private int totalBufferReceived = 0;
|
||||||
public int Port = 5555;
|
public int Port = 5555;
|
||||||
public bool Connected = false;
|
public bool Connected = false;
|
||||||
private string username;
|
private string username;
|
||||||
public Callback OnSuccessfullConnect;
|
public Callback OnSuccessfullConnect;
|
||||||
public Callback OnLobbiesListReceived;
|
public Callback OnLobbiesListReceived;
|
||||||
public LobbyJoinCallback OnLobbyJoinSuccess;
|
public Callback OnLobbyJoinSuccess;
|
||||||
public Callback OnLobbiesReceivedAndWaitingForHost;
|
public Callback OnLobbiesReceivedAndWaitingForHost;
|
||||||
public Callback OnServerDisconnect;
|
public OnLobbyCreated OnLobbyCreated;
|
||||||
public Callback OnLobbyUpdate;
|
|
||||||
public LobbyCallback OnLobbyCreated;
|
|
||||||
public LobbyCallback OnLobbyLeave;
|
|
||||||
public RandomWord RandomWord;
|
|
||||||
public HandleIncomingMsg IncomingMsg;
|
|
||||||
public HandleIncomingPlayer IncomingPlayer;
|
|
||||||
private ClientData data = ClientData.Instance;
|
|
||||||
public CanvasDataReceived CanvasDataReceived;
|
|
||||||
public CanvasReset CReset;
|
|
||||||
public HandleIncomingPlayer UpdateUserScores;
|
|
||||||
public Lobby[] Lobbies { get; set; }
|
public Lobby[] Lobbies { get; set; }
|
||||||
|
|
||||||
public Client(string username)
|
public Client(string username)
|
||||||
@@ -63,63 +37,41 @@ namespace Client
|
|||||||
private void OnConnect(IAsyncResult ar)
|
private void OnConnect(IAsyncResult ar)
|
||||||
{
|
{
|
||||||
Debug.Write("finished connecting to server");
|
Debug.Write("finished connecting to server");
|
||||||
try
|
this.tcpClient.EndConnect(ar);
|
||||||
{
|
this.stream = tcpClient.GetStream();
|
||||||
this.tcpClient.EndConnect(ar);
|
OnSuccessfullConnect?.Invoke();
|
||||||
this.stream = tcpClient.GetStream();
|
SendMessage(JSONConvert.ConstructUsernameMessage(username));
|
||||||
OnSuccessfullConnect?.Invoke();
|
this.stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnReadComplete),null);
|
||||||
OnLobbyUpdate = updateGameLobby;
|
|
||||||
SendMessage(JSONConvert.ConstructUsernameMessage(username));
|
|
||||||
this.stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnReadComplete), null);
|
|
||||||
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("Can't connect, retrying...");
|
|
||||||
tcpClient.BeginConnect("localhost", Port, new AsyncCallback(OnConnect), null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnReadComplete(IAsyncResult ar)
|
private void OnReadComplete(IAsyncResult ar)
|
||||||
{
|
{
|
||||||
|
int amountReceived = stream.EndRead(ar);
|
||||||
|
|
||||||
if (ar == null || (!ar.IsCompleted) || (!this.stream.CanRead) || !this.tcpClient.Client.Connected)
|
if (totalBufferReceived + amountReceived > 1024)
|
||||||
return;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
int amountReceived = stream.EndRead(ar);
|
throw new OutOfMemoryException("buffer too small");
|
||||||
|
|
||||||
if (totalBufferReceived + amountReceived > 2048)
|
|
||||||
{
|
|
||||||
throw new OutOfMemoryException("buffer too small");
|
|
||||||
}
|
|
||||||
|
|
||||||
Array.Copy(buffer, 0, totalBuffer, totalBufferReceived, amountReceived);
|
|
||||||
totalBufferReceived += amountReceived;
|
|
||||||
|
|
||||||
int expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
||||||
|
|
||||||
while (totalBufferReceived >= expectedMessageLength)
|
|
||||||
{
|
|
||||||
// we have received the complete packet
|
|
||||||
byte[] message = new byte[expectedMessageLength];
|
|
||||||
// put the message received into the message array
|
|
||||||
Array.Copy(totalBuffer, 0, message, 0, expectedMessageLength);
|
|
||||||
handleData(message);
|
|
||||||
|
|
||||||
totalBufferReceived -= expectedMessageLength;
|
|
||||||
expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
ar.AsyncWaitHandle.WaitOne();
|
|
||||||
stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnReadComplete), null);
|
|
||||||
}
|
}
|
||||||
catch (IOException e)
|
|
||||||
|
Array.Copy(buffer, 0, totalBuffer, totalBufferReceived, amountReceived);
|
||||||
|
totalBufferReceived += amountReceived;
|
||||||
|
|
||||||
|
int expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
||||||
|
|
||||||
|
while (totalBufferReceived >= expectedMessageLength)
|
||||||
{
|
{
|
||||||
Debug.WriteLine("[CLIENT] server not responding! got error: " + e.Message);
|
// we have received the complete packet
|
||||||
OnServerDisconnect?.Invoke();
|
byte[] message = new byte[expectedMessageLength];
|
||||||
|
// put the message received into the message array
|
||||||
|
Array.Copy(totalBuffer, 0, message, 0, expectedMessageLength);
|
||||||
|
|
||||||
|
handleData(message);
|
||||||
|
|
||||||
|
totalBufferReceived -= expectedMessageLength;
|
||||||
|
expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnReadComplete), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleData(byte[] message)
|
private void handleData(byte[] message)
|
||||||
@@ -129,7 +81,6 @@ namespace Client
|
|||||||
byte[] payload = new byte[message.Length - 5];
|
byte[] payload = new byte[message.Length - 5];
|
||||||
Array.Copy(message, 5, payload, 0, message.Length - 5);
|
Array.Copy(message, 5, payload, 0, message.Length - 5);
|
||||||
|
|
||||||
Debug.WriteLine("[CLIENT] GOT STRING" + Encoding.ASCII.GetString(payload));
|
|
||||||
switch (id)
|
switch (id)
|
||||||
{
|
{
|
||||||
case JSONConvert.LOGIN:
|
case JSONConvert.LOGIN:
|
||||||
@@ -141,16 +92,6 @@ namespace Client
|
|||||||
string textUsername = combo.Item1;
|
string textUsername = combo.Item1;
|
||||||
string textMsg = combo.Item2;
|
string textMsg = combo.Item2;
|
||||||
|
|
||||||
if (textUsername != data.User.Username)
|
|
||||||
{
|
|
||||||
IncomingMsg?.Invoke(textUsername, textMsg);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (textMsg == data.User.RandomWord && !string.IsNullOrEmpty(data.User.RandomWord))
|
|
||||||
{
|
|
||||||
Debug.WriteLine($"[CLIENT] word has been guessed! {data.User.Username} + Word: {data.User.RandomWord}");
|
|
||||||
}
|
|
||||||
|
|
||||||
//TODO display username and message in chat window
|
//TODO display username and message in chat window
|
||||||
Debug.WriteLine("[CLIENT] INCOMING MESSAGE!");
|
Debug.WriteLine("[CLIENT] INCOMING MESSAGE!");
|
||||||
Debug.WriteLine("[CLIENT] User name: {0}\t User message: {1}", textUsername, textMsg);
|
Debug.WriteLine("[CLIENT] User name: {0}\t User message: {1}", textUsername, textMsg);
|
||||||
@@ -166,7 +107,6 @@ namespace Client
|
|||||||
Lobbies = JSONConvert.GetLobbiesFromMessage(payload);
|
Lobbies = JSONConvert.GetLobbiesFromMessage(payload);
|
||||||
OnLobbiesListReceived?.Invoke();
|
OnLobbiesListReceived?.Invoke();
|
||||||
OnLobbiesReceivedAndWaitingForHost?.Invoke();
|
OnLobbiesReceivedAndWaitingForHost?.Invoke();
|
||||||
OnLobbyUpdate?.Invoke();
|
|
||||||
break;
|
break;
|
||||||
case LobbyIdentifier.HOST:
|
case LobbyIdentifier.HOST:
|
||||||
// we receive this when the server has made us a host of a new lobby
|
// we receive this when the server has made us a host of a new lobby
|
||||||
@@ -176,11 +116,7 @@ namespace Client
|
|||||||
OnLobbyCreated?.Invoke(lobbyCreatedID);
|
OnLobbyCreated?.Invoke(lobbyCreatedID);
|
||||||
break;
|
break;
|
||||||
case LobbyIdentifier.JOIN_SUCCESS:
|
case LobbyIdentifier.JOIN_SUCCESS:
|
||||||
OnLobbyJoinSuccess?.Invoke(JSONConvert.GetLobbyJoinIsHost(payload));
|
OnLobbyJoinSuccess?.Invoke();
|
||||||
break;
|
|
||||||
case LobbyIdentifier.LEAVE:
|
|
||||||
int lobbyLeaveID = JSONConvert.GetLobbyID(payload);
|
|
||||||
OnLobbyLeave?.Invoke(lobbyLeaveID);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
//TODO fill lobby with the data received
|
//TODO fill lobby with the data received
|
||||||
@@ -188,84 +124,15 @@ namespace Client
|
|||||||
|
|
||||||
case JSONConvert.CANVAS:
|
case JSONConvert.CANVAS:
|
||||||
// canvas data
|
// canvas data
|
||||||
//clientData.CanvasData = JSONConvert.getCoordinates(payload);
|
|
||||||
int type = JSONConvert.GetCanvasMessageType(payload);
|
|
||||||
switch (type)
|
|
||||||
{
|
|
||||||
case JSONConvert.CANVAS_RESET:
|
|
||||||
CReset?.Invoke();
|
|
||||||
break;
|
|
||||||
|
|
||||||
case JSONConvert.CANVAS_WRITING:
|
|
||||||
CanvasDataReceived?.Invoke(JSONConvert.getCoordinates(payload), JSONConvert.getCanvasDrawingColor(payload));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case JSONConvert.RANDOMWORD:
|
|
||||||
//Flag byte for receiving the random word.
|
|
||||||
int lobbyId = JSONConvert.GetLobbyID(payload);
|
|
||||||
data.User.RandomWord = JSONConvert.GetRandomWord(payload);
|
|
||||||
data.User.TurnToDraw = true; // Dit is test code, dit kan weg zodra alles lopende is.
|
|
||||||
if (data.Lobby?.ID == lobbyId && data.User.TurnToDraw)
|
|
||||||
RandomWord?.Invoke(data.User.RandomWord);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Debug.WriteLine("[CLIENT] Received weird identifier: " + id);
|
Debug.WriteLine("[CLIENT] Received weird identifier: " + id);
|
||||||
break;
|
break;
|
||||||
case JSONConvert.GAME:
|
|
||||||
switch (JSONConvert.GetGameCommand(payload))
|
|
||||||
{
|
|
||||||
case JSONConvert.GameCommand.TIMER_ELAPSED:
|
|
||||||
int lobbyElapsedID = JSONConvert.GetLobbyID(payload);
|
|
||||||
|
|
||||||
//todo set next round
|
|
||||||
break;
|
|
||||||
|
|
||||||
case JSONConvert.GameCommand.INITIALIZE:
|
|
||||||
int lobbyID = JSONConvert.GetLobbyID(payload);
|
|
||||||
string userName = JSONConvert.GetUsernameLogin(payload);
|
|
||||||
if (lobbyID == clientData.Lobby.ID)
|
|
||||||
{
|
|
||||||
if (userName == clientData.User.Username)
|
|
||||||
{
|
|
||||||
clientData.User.TurnToDraw = true;
|
|
||||||
Debug.WriteLine("[CLIENT] Setting a player's turnToDraw to true");
|
|
||||||
}
|
|
||||||
clientData.Client.UpdateUserScores?.Invoke(clientData.Lobby);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
SendMessage(JSONConvert.GetMessageToSend(JSONConvert.MESSAGE_RECEIVED, null));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Updates the current lobby with the joining players,
|
|
||||||
* their player score is also tracked and should always be zero.
|
|
||||||
*/
|
|
||||||
private void updateGameLobby()
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[CLIENT] updating game lobby");
|
|
||||||
foreach (var item in Lobbies)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[CLIENT] lobby data: {0}", item.Users.Count);
|
|
||||||
if (item.ID == data.Lobby?.ID)
|
|
||||||
{
|
|
||||||
//IncomingPlayer?.Invoke(item);
|
|
||||||
UpdateUserScores?.Invoke(item as Lobby);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendMessage(byte[] message)
|
public void SendMessage(byte[] message)
|
||||||
{
|
{
|
||||||
Debug.WriteLine("[CLIENT] sending message " + Encoding.ASCII.GetString(message));
|
Debug.WriteLine("[CLIENT] sending message " + Encoding.ASCII.GetString(message));
|
||||||
@@ -276,7 +143,6 @@ namespace Client
|
|||||||
{
|
{
|
||||||
Debug.WriteLine("[CLIENT] finished writing");
|
Debug.WriteLine("[CLIENT] finished writing");
|
||||||
stream.EndWrite(ar);
|
stream.EndWrite(ar);
|
||||||
stream.Flush();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ namespace Client
|
|||||||
private Client _client;
|
private Client _client;
|
||||||
private Lobby _lobby;
|
private Lobby _lobby;
|
||||||
private string _message;
|
private string _message;
|
||||||
private double[] _canvasData = new double[4];
|
|
||||||
|
|
||||||
private ClientData()
|
private ClientData()
|
||||||
{
|
{
|
||||||
@@ -69,11 +68,5 @@ namespace Client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public double[] CanvasData
|
|
||||||
{
|
|
||||||
get { return _canvasData; }
|
|
||||||
set { _canvasData = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,9 +11,6 @@ using System.Collections.ObjectModel;
|
|||||||
using Client.Views;
|
using Client.Views;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows.Data;
|
using System.Windows.Data;
|
||||||
using System.Data;
|
|
||||||
using System.Windows.Controls.Primitives;
|
|
||||||
using System.Windows.Controls;
|
|
||||||
|
|
||||||
namespace Client
|
namespace Client
|
||||||
{
|
{
|
||||||
@@ -37,11 +34,6 @@ namespace Client
|
|||||||
_lobbies = new ObservableCollection<Lobby>();
|
_lobbies = new ObservableCollection<Lobby>();
|
||||||
client = ClientData.Instance.Client;
|
client = ClientData.Instance.Client;
|
||||||
client.OnLobbiesListReceived = updateLobbies;
|
client.OnLobbiesListReceived = updateLobbies;
|
||||||
client.OnLobbyLeave = leaveLobby;
|
|
||||||
client.OnServerDisconnect = () =>
|
|
||||||
{
|
|
||||||
Environment.Exit(0);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
OnHostButtonClick = new RelayCommand(hostGame);
|
OnHostButtonClick = new RelayCommand(hostGame);
|
||||||
@@ -49,28 +41,21 @@ namespace Client
|
|||||||
JoinSelectedLobby = new RelayCommand(joinLobby, true);
|
JoinSelectedLobby = new RelayCommand(joinLobby, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void leaveLobby(int id)
|
|
||||||
{
|
|
||||||
_model.CanStartGame = true;
|
|
||||||
ClientData.Instance.Lobby = null;
|
|
||||||
SelectedLobby = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void hostGame()
|
private void hostGame()
|
||||||
{
|
{
|
||||||
Debug.WriteLine("attempting to host game for " + ClientData.Instance.User.Username);
|
Debug.WriteLine("attempting to host game for " + ClientData.Instance.User.Username);
|
||||||
client.SendMessage(JSONConvert.ConstructLobbyHostMessage());
|
client.SendMessage(JSONConvert.ConstructLobbyHostMessage());
|
||||||
client.OnLobbyCreated = becomeHostForLobby;
|
client.OnLobbyCreated = becomeHostForLobby;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void becomeHostForLobby(int id)
|
private void becomeHostForLobby(int id)
|
||||||
{
|
{
|
||||||
|
|
||||||
Debug.WriteLine($"got host succes with data {id} ");
|
Debug.WriteLine($"got host succes with data {id} ");
|
||||||
wantToBeHost = true;
|
wantToBeHost = true;
|
||||||
wantToBeHostId = id;
|
wantToBeHostId = id;
|
||||||
ClientData.Instance.User.Host = true;
|
|
||||||
client.OnLobbiesReceivedAndWaitingForHost = hostLobbiesReceived;
|
client.OnLobbiesReceivedAndWaitingForHost = hostLobbiesReceived;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void hostLobbiesReceived()
|
private void hostLobbiesReceived()
|
||||||
@@ -92,21 +77,14 @@ namespace Client
|
|||||||
|
|
||||||
private void joinLobby()
|
private void joinLobby()
|
||||||
{
|
{
|
||||||
if (SelectedLobby != null)
|
// lobby die je wilt joinen verwijderen
|
||||||
{
|
// nieuwe binnengekregen lobby toevoegen
|
||||||
if (SelectedLobby.PlayersIn == SelectedLobby.MaxPlayers || !SelectedLobby.LobbyJoinable)
|
client.OnLobbyJoinSuccess = OnLobbyJoinSuccess;
|
||||||
{
|
client.SendMessage(JSONConvert.ConstructLobbyJoinMessage(SelectedLobby.ID));
|
||||||
return;
|
|
||||||
}
|
|
||||||
client.OnLobbyJoinSuccess = OnLobbyJoinSuccess;
|
|
||||||
client.SendMessage(JSONConvert.ConstructLobbyJoinMessage(SelectedLobby.ID));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnLobbyJoinSuccess(bool isHost)
|
private void OnLobbyJoinSuccess()
|
||||||
{
|
{
|
||||||
ClientData.Instance.User.Host = isHost;
|
|
||||||
startGameInLobby();
|
startGameInLobby();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,26 +92,29 @@ namespace Client
|
|||||||
|
|
||||||
private void updateLobbies()
|
private void updateLobbies()
|
||||||
{
|
{
|
||||||
Debug.WriteLine("[VIEWMODEL] updating lobbies...");
|
Debug.WriteLine("updating lobbies...");
|
||||||
Lobby[] lobbiesArr = client.Lobbies;
|
Lobby[] lobbiesArr = client.Lobbies;
|
||||||
Application.Current.Dispatcher.Invoke(delegate
|
Application.Current.Dispatcher.Invoke(delegate
|
||||||
{
|
{
|
||||||
|
|
||||||
|
//for (int i = 0; i < lobbiesArr.Length; i++)
|
||||||
|
//{
|
||||||
|
// Lobby lobby = lobbiesArr[i];
|
||||||
|
// Debug.WriteLine(lobby.PlayersIn);
|
||||||
|
// if (i < _lobbies.Count && _lobbies[i].ID == lobby.ID)
|
||||||
|
// {
|
||||||
|
// _lobbies[i].Set(lobby);
|
||||||
|
// } else
|
||||||
|
// {
|
||||||
|
// _lobbies.Add(lobbiesArr[i]);
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
_lobbies.Clear();
|
_lobbies.Clear();
|
||||||
|
|
||||||
Lobby clientLobby = ClientData.Instance.Lobby;
|
|
||||||
foreach (Lobby l in lobbiesArr)
|
foreach (Lobby l in lobbiesArr)
|
||||||
{
|
{
|
||||||
_lobbies.Add(l);
|
_lobbies.Add(l);
|
||||||
if (l.ID == clientLobby?.ID)
|
|
||||||
{
|
|
||||||
clientLobby.Users.Clear();
|
|
||||||
|
|
||||||
foreach (User user in l.Users)
|
|
||||||
{
|
|
||||||
clientLobby.Users.Add(user);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -187,7 +168,5 @@ namespace Client
|
|||||||
get { return _lobbies; }
|
get { return _lobbies; }
|
||||||
set { _lobbies = value; }
|
set { _lobbies = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,296 +1,126 @@
|
|||||||
using Client.Views;
|
|
||||||
using GalaSoft.MvvmLight.Command;
|
|
||||||
using SharedClientServer;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Collections.ObjectModel;
|
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Timers;
|
|
||||||
using System.Windows;
|
|
||||||
using System.Windows.Input;
|
|
||||||
using System.Windows.Media;
|
|
||||||
using System.Windows.Shapes;
|
|
||||||
|
|
||||||
namespace Client.ViewModels
|
|
||||||
{
|
|
||||||
class ViewModelGame : INotifyPropertyChanged
|
|
||||||
{
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
|
||||||
private ClientData data = ClientData.Instance;
|
|
||||||
private GameWindow window;
|
|
||||||
private Point currentPoint = new Point();
|
|
||||||
public Color color;
|
|
||||||
public double[][] buffer;
|
|
||||||
public int pos = 0;
|
|
||||||
public int maxLines = 50;
|
|
||||||
public Queue<double[][]> linesQueue;
|
|
||||||
private Timer queueTimer;
|
|
||||||
|
|
||||||
private bool wordGuessed = false;
|
|
||||||
|
|
||||||
public static ObservableCollection<string> Messages { get; } = new ObservableCollection<string>();
|
|
||||||
public ObservableCollection<string> Players { get; } = new ObservableCollection<string>();
|
|
||||||
|
|
||||||
private dynamic _payload;
|
|
||||||
|
|
||||||
public string _username;
|
|
||||||
|
|
||||||
public string _message;
|
|
||||||
public string Message
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return _message;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
_message = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private string _randomWord;
|
|
||||||
public string RandomWord
|
|
||||||
{
|
|
||||||
get {
|
|
||||||
if (data.User.TurnToDraw)
|
|
||||||
return _randomWord;
|
|
||||||
|
|
||||||
if (!wordGuessed)
|
using Client.Views;
|
||||||
{
|
using GalaSoft.MvvmLight.Command;
|
||||||
string hiddenWord = "";
|
using SharedClientServer;
|
||||||
for (int i = 0; i < _randomWord.Length; i++)
|
using System.Collections.ObjectModel;
|
||||||
{
|
using System.ComponentModel;
|
||||||
hiddenWord += "_ ";
|
using System.Windows;
|
||||||
}
|
using System.Windows.Input;
|
||||||
return hiddenWord;
|
using System.Windows.Media;
|
||||||
}
|
using System.Windows.Shapes;
|
||||||
else
|
|
||||||
return _randomWord;
|
namespace Client.ViewModels
|
||||||
}
|
{
|
||||||
|
class ViewModelGame : INotifyPropertyChanged
|
||||||
set { _randomWord = value; }
|
{
|
||||||
}
|
private ClientData data = ClientData.Instance;
|
||||||
|
|
||||||
public bool IsHost
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
{
|
|
||||||
get { return data.User.Host; }
|
private Point currentPoint = new Point();
|
||||||
}
|
private Color color;
|
||||||
|
|
||||||
public bool UserTurnToDraw
|
public ObservableCollection<string> Messages { get; } = new ObservableCollection<string>();
|
||||||
|
|
||||||
|
private dynamic _payload;
|
||||||
|
|
||||||
|
private string _username;
|
||||||
|
|
||||||
|
private string _message;
|
||||||
|
public string Message
|
||||||
{
|
{
|
||||||
get { return data.User.TurnToDraw; }
|
get
|
||||||
}
|
{
|
||||||
|
return _message;
|
||||||
public ViewModelGame(GameWindow window)
|
}
|
||||||
{
|
set
|
||||||
this.window = window;
|
{
|
||||||
_randomWord = "";
|
_message = value;
|
||||||
buffer = new double[maxLines][];
|
}
|
||||||
linesQueue = new Queue<double[][]>();
|
}
|
||||||
OnKeyDown = new RelayCommand(ChatBox_KeyDown);
|
public ICommand OnKeyDown { get; set; }
|
||||||
ButtonStartGame = new RelayCommand(BeginGame);
|
|
||||||
ButtonResetCanvas = new RelayCommand(CanvasResetLocal);
|
|
||||||
data.Client.CanvasDataReceived = UpdateCanvasWithNewData;
|
|
||||||
data.Client.CReset = CanvasResetData;
|
|
||||||
data.Client.RandomWord = HandleRandomWord;
|
|
||||||
data.Client.IncomingMsg = HandleIncomingMsg;
|
|
||||||
data.Client.IncomingPlayer = HandleIncomingPlayer;
|
|
||||||
data.Client.UpdateUserScores = UpdateUserScores;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ICommand OnKeyDown { get; set; }
|
|
||||||
public ICommand ButtonStartGame { get; set; }
|
|
||||||
public ICommand ButtonResetCanvas { get; set; }
|
|
||||||
|
|
||||||
public void BeginGame()
|
|
||||||
{
|
|
||||||
|
|
||||||
queueTimer = new Timer(50);
|
|
||||||
queueTimer.Start();
|
|
||||||
queueTimer.Elapsed += sendArrayFromQueue;
|
|
||||||
data.Client.SendMessage(JSONConvert.ConstructGameStartData(data.Lobby.ID));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void CanvasResetLocal()
|
|
||||||
{
|
|
||||||
this.window.CanvasForPaint.Children.Clear();
|
|
||||||
data.Client.SendMessage(JSONConvert.GetMessageToSend(JSONConvert.CANVAS, JSONConvert.CANVAS_RESET));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void Canvas_MouseDown(MouseButtonEventArgs e, GameWindow window)
|
|
||||||
{
|
|
||||||
if (e.ButtonState == MouseButtonState.Pressed)
|
|
||||||
{
|
|
||||||
currentPoint = e.GetPosition(window.CanvasForPaint);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Canvas_MouseMove(MouseEventArgs e, GameWindow window)
|
|
||||||
{
|
|
||||||
if (e.LeftButton == MouseButtonState.Pressed)
|
|
||||||
{
|
|
||||||
double[] coordinates = new double[4];
|
|
||||||
Line line = new Line();
|
|
||||||
|
|
||||||
line.Stroke = new SolidColorBrush(color);
|
|
||||||
//line.Stroke = SystemColors.WindowFrameBrush;
|
|
||||||
line.X1 = currentPoint.X;
|
|
||||||
line.Y1 = currentPoint.Y;
|
|
||||||
line.X2 = e.GetPosition(window.CanvasForPaint).X;
|
|
||||||
line.Y2 = e.GetPosition(window.CanvasForPaint).Y;
|
|
||||||
coordinates[0] = line.X1;
|
|
||||||
coordinates[1] = line.Y1;
|
|
||||||
coordinates[2] = line.X2;
|
|
||||||
coordinates[3] = line.Y2;
|
|
||||||
currentPoint = e.GetPosition(window.CanvasForPaint);
|
|
||||||
buffer[pos] = coordinates;
|
|
||||||
pos++;
|
|
||||||
|
|
||||||
window.CanvasForPaint.Children.Add(line);
|
|
||||||
if (pos == maxLines)
|
|
||||||
{
|
|
||||||
double[][] temp = new double[maxLines][];
|
|
||||||
for (int i = 0; i < maxLines; i++)
|
|
||||||
{
|
|
||||||
temp[i] = buffer[i];
|
|
||||||
}
|
|
||||||
linesQueue.Enqueue(temp);
|
|
||||||
Array.Clear(buffer, 0, buffer.Length);
|
|
||||||
pos = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Canvas_MouseUp(object sender, MouseButtonEventArgs e)
|
|
||||||
{
|
|
||||||
|
|
||||||
sendArrayFromQueue(sender, null);
|
|
||||||
|
|
||||||
}
|
public void Canvas_MouseDown(MouseButtonEventArgs e, GameWindow window)
|
||||||
|
{
|
||||||
private void sendArrayFromQueue(object sender, ElapsedEventArgs e)
|
if (e.ButtonState == MouseButtonState.Pressed)
|
||||||
{
|
{
|
||||||
|
currentPoint = e.GetPosition(window.CanvasForPaint);
|
||||||
if (linesQueue.Count != 0)
|
}
|
||||||
{
|
}
|
||||||
double[][] temp = linesQueue.Dequeue();
|
|
||||||
data.Client.SendMessage(JSONConvert.ConstructDrawingCanvasData(temp,color));
|
public void Canvas_MouseMove(MouseEventArgs e, GameWindow window)
|
||||||
}
|
{
|
||||||
}
|
if (e.LeftButton == MouseButtonState.Pressed)
|
||||||
|
{
|
||||||
public void Color_Picker(RoutedPropertyChangedEventArgs<Color?> e, GameWindow window)
|
double[] coordinates = new double[4];
|
||||||
{
|
Line line = new Line();
|
||||||
Color colorSelected = new Color();
|
|
||||||
colorSelected.A = 255;
|
line.Stroke = new SolidColorBrush(color);
|
||||||
colorSelected.R = window.ClrPcker_Background.SelectedColor.Value.R;
|
//line.Stroke = SystemColors.WindowFrameBrush;
|
||||||
colorSelected.G = window.ClrPcker_Background.SelectedColor.Value.G;
|
line.X1 = currentPoint.X;
|
||||||
colorSelected.B = window.ClrPcker_Background.SelectedColor.Value.B;
|
line.Y1 = currentPoint.Y;
|
||||||
color = colorSelected;
|
line.X2 = e.GetPosition(window.CanvasForPaint).X;
|
||||||
}
|
line.Y2 = e.GetPosition(window.CanvasForPaint).Y;
|
||||||
|
coordinates[0] = line.X1;
|
||||||
private void UpdateCanvasWithNewData(double[][] buffer, Color color)
|
coordinates[1] = line.Y1;
|
||||||
{
|
coordinates[2] = line.X2;
|
||||||
Application.Current.Dispatcher.Invoke(delegate
|
coordinates[3] = line.Y2;
|
||||||
{
|
currentPoint = e.GetPosition(window.CanvasForPaint);
|
||||||
foreach (double[] arr in buffer)
|
|
||||||
{
|
window.CanvasForPaint.Children.Add(line);
|
||||||
Line line = new Line();
|
data.Client.SendMessage(JSONConvert.GetMessageToSend(0x04, coordinates));
|
||||||
line.Stroke = new SolidColorBrush(color);
|
}
|
||||||
line.X1 = arr[0];
|
}
|
||||||
line.Y1 = arr[1];
|
|
||||||
line.X2 = arr[2];
|
public void Color_Picker(RoutedPropertyChangedEventArgs<Color?> e, GameWindow window)
|
||||||
line.Y2 = arr[3];
|
{
|
||||||
this.window.CanvasForPaint.Children.Add(line);
|
Color colorSelected = new Color();
|
||||||
}
|
colorSelected.A = 255;
|
||||||
});
|
colorSelected.R = window.ClrPcker_Background.SelectedColor.Value.R;
|
||||||
}
|
colorSelected.G = window.ClrPcker_Background.SelectedColor.Value.G;
|
||||||
|
colorSelected.B = window.ClrPcker_Background.SelectedColor.Value.B;
|
||||||
private void CanvasResetData()
|
color = colorSelected;
|
||||||
{
|
}
|
||||||
this.window.CanvasForPaint.Children.Clear();
|
|
||||||
}
|
|
||||||
|
public ViewModelGame()
|
||||||
private void ChatBox_KeyDown()
|
{
|
||||||
{
|
if (_payload == null)
|
||||||
//if enter then clear textbox and send message.
|
{
|
||||||
if (Message != string.Empty) AddMessage(Message);
|
_message = "";
|
||||||
Message = string.Empty;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
internal void AddMessage(string message)
|
{
|
||||||
{
|
//_message = data.Message;
|
||||||
Messages.Add($"{data.User.Username}: {message}");
|
//_username = data.User.Username;
|
||||||
|
//Messages.Add($"{data.User.Username}: {Message}");
|
||||||
_payload = new
|
}
|
||||||
{
|
OnKeyDown = new RelayCommand(ChatBox_KeyDown);
|
||||||
username = data.User.Username,
|
}
|
||||||
message = message
|
|
||||||
};
|
private void ChatBox_KeyDown()
|
||||||
|
{
|
||||||
//Broadcast the message after adding it to the list!
|
//if enter then clear textbox and send message.
|
||||||
data.Client.SendMessage(JSONConvert.GetMessageToSend(JSONConvert.MESSAGE, _payload));
|
if (Message != string.Empty) AddMessage(Message);
|
||||||
}
|
Message = string.Empty;
|
||||||
|
}
|
||||||
public void HandleIncomingMsg(string username, string message)
|
|
||||||
{
|
internal void AddMessage(string message)
|
||||||
Application.Current.Dispatcher.Invoke(delegate
|
{
|
||||||
{
|
Messages.Add($"{data.User.Username}: {message}");
|
||||||
Messages.Add($"{username}: {message}");
|
|
||||||
});
|
_payload = new
|
||||||
}
|
{
|
||||||
public void LeaveGame(object sender, System.ComponentModel.CancelEventArgs e)
|
username = data.User.Username,
|
||||||
{
|
message = message
|
||||||
Debug.WriteLine("Leaving...");
|
};
|
||||||
data.Client.SendMessage(JSONConvert.ConstructLobbyLeaveMessage(data.Lobby.ID));
|
|
||||||
}
|
//Broadcast the message after adding it to the list!
|
||||||
|
data.Client.SendMessage(JSONConvert.GetMessageToSend(JSONConvert.MESSAGE, _payload));
|
||||||
public void HandleRandomWord(string randomWord)
|
}
|
||||||
{
|
|
||||||
Debug.WriteLine("[CLIENT] Reached the handle random word method!");
|
|
||||||
Application.Current.Dispatcher.Invoke(delegate
|
}
|
||||||
{
|
}
|
||||||
RandomWord = randomWord;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
public void HandleIncomingPlayer(Lobby lobby)
|
|
||||||
{
|
|
||||||
Application.Current.Dispatcher.Invoke(delegate
|
|
||||||
{
|
|
||||||
Players.Clear();
|
|
||||||
foreach (var item in lobby.Users)
|
|
||||||
{
|
|
||||||
Players.Add(item.Username + "\n" + item.Score + "\n" + item.TurnToDraw);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateUserScores(Lobby newLobby) {
|
|
||||||
Debug.WriteLine("[GAME] updating user scores");
|
|
||||||
List<User> newUsers = newLobby.Users;
|
|
||||||
// go over all users in current lobby
|
|
||||||
foreach (User user in data.Lobby?.Users)
|
|
||||||
{
|
|
||||||
// check with all users in new lobby
|
|
||||||
foreach (User newUser in newUsers)
|
|
||||||
{
|
|
||||||
// and update the score
|
|
||||||
if (newUser.Username == user.Username)
|
|
||||||
{
|
|
||||||
Debug.WriteLine($"[GAME] setting score of {user.Username} to {newUser.Score}. it was {user.Score}");
|
|
||||||
user.Score = newUser.Score;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// update all the scores in the player list
|
|
||||||
HandleIncomingPlayer(newLobby);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:local="clr-namespace:Client.Views"
|
||||||
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
|
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="Scrubl.io" Height="600" Width="1200">
|
Title="Scrubl.io" Height="600" Width="1200">
|
||||||
@@ -22,32 +23,24 @@
|
|||||||
<Grid Grid.Column="0" Grid.Row="1">
|
<Grid Grid.Column="0" Grid.Row="1">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition/>
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<ListBox Name="PlayerList" ItemsSource="{Binding Path=Players}" Margin="10,0,0,10" FontSize="20"/>
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid Grid.Row="0" Grid.Column="1">
|
<Button Name="CanvasReset" Click="CanvasReset_Click" Grid.Row="0" Grid.Column="2" Margin="84,10,10,10" Content="RESET"/>
|
||||||
<Grid.ColumnDefinitions>
|
|
||||||
<ColumnDefinition Width="160"/>
|
|
||||||
<ColumnDefinition Width="160"/>
|
|
||||||
<ColumnDefinition Width="*"/>
|
|
||||||
<ColumnDefinition Width="100"/>
|
|
||||||
</Grid.ColumnDefinitions>
|
|
||||||
<Label Grid.Row="0" Grid.Column="0" VerticalAlignment="Center" FontSize="20" Content="Pick a color -->"/>
|
|
||||||
<xctk:ColorPicker Name="ClrPcker_Background" SelectedColorChanged="ClrPcker_Background_SelectedColorChanged_1" Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Center" Height="22" Width="100" />
|
|
||||||
|
|
||||||
|
|
||||||
<Label Name="GuessWord" Grid.Row="0" Grid.Column="2" Content="{Binding Path=RandomWord, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20"/>
|
|
||||||
|
|
||||||
<Button Name="CanvasReset" Click="CanvasReset_Click" Grid.Row="0" Grid.Column="3" Content="RESET"/>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
<Button Name="StartGame" Grid.Row="0" Grid.Column="2" Content="Start Game" FontSize="20" Command="{Binding ButtonStartGame}" IsEnabled="{Binding IsHost}"/>
|
|
||||||
|
|
||||||
|
<xctk:ColorPicker Name="ClrPcker_Background" SelectedColorChanged="ClrPcker_Background_SelectedColorChanged_1" Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Center" Height="22" Width="100"/>
|
||||||
|
|
||||||
<Border Grid.Row="1" Grid.Column="1" Margin ="10,10,10,10" BorderBrush="Black" BorderThickness ="2.5">
|
<Border Grid.Row="1" Grid.Column="1" Margin ="10,10,10,10" BorderBrush="Black" BorderThickness ="2.5">
|
||||||
<Canvas Name="CanvasForPaint" MouseDown="CanvasForPaint_MouseDown" MouseMove="CanvasForPaint_MouseMove" MouseUp="CanvasForPaint_MouseUp">
|
<Canvas Name="CanvasForPaint" MouseDown="CanvasForPaint_MouseDown" MouseMove="CanvasForPaint_MouseMove">
|
||||||
<Canvas.Background>
|
<Canvas.Background>
|
||||||
<SolidColorBrush Color="White" Opacity="0"/>
|
<SolidColorBrush Color="White" Opacity="0"/>
|
||||||
</Canvas.Background>
|
</Canvas.Background>
|
||||||
@@ -55,9 +48,9 @@
|
|||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
<Grid Grid.Column="2" Grid.Row="1">
|
<Grid Grid.Column="2" Grid.Row="1">
|
||||||
<ListBox Name ="TextBox" ItemsSource="{Binding Path=Messages}" Margin="0,0,10,69" />
|
<ListBox Name ="TextBox" ItemsSource="{Binding Path=Messages}" Margin="0,0,0,69"/>
|
||||||
|
|
||||||
<TextBox Name="ChatBox" Text="{Binding Message, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Margin="0,465,10,0">
|
<TextBox Name="ChatBox" Text="{Binding Message, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Margin="0,465,0,0">
|
||||||
<TextBox.InputBindings>
|
<TextBox.InputBindings>
|
||||||
<KeyBinding Key="Return" Command="{Binding OnKeyDown}"/>
|
<KeyBinding Key="Return" Command="{Binding OnKeyDown}"/>
|
||||||
</TextBox.InputBindings>
|
</TextBox.InputBindings>
|
||||||
|
|||||||
@@ -1,8 +1,15 @@
|
|||||||
using Client.ViewModels;
|
using Client.ViewModels;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
namespace Client.Views
|
namespace Client.Views
|
||||||
{
|
{
|
||||||
@@ -15,9 +22,8 @@ namespace Client.Views
|
|||||||
private ViewModelGame viewModel;
|
private ViewModelGame viewModel;
|
||||||
public GameWindow()
|
public GameWindow()
|
||||||
{
|
{
|
||||||
this.viewModel = new ViewModelGame(this);
|
this.viewModel = new ViewModelGame();
|
||||||
DataContext = this.viewModel;
|
DataContext = this.viewModel;
|
||||||
Closing += this.viewModel.LeaveGame;
|
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -36,16 +42,21 @@ namespace Client.Views
|
|||||||
private void CanvasReset_Click(object sender, RoutedEventArgs e)
|
private void CanvasReset_Click(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
CanvasForPaint.Children.Clear();
|
CanvasForPaint.Children.Clear();
|
||||||
|
|
||||||
|
//FOR FUTURE USE, IF NECCESSARY
|
||||||
|
//TEST.Children.Clear();
|
||||||
|
|
||||||
|
//foreach (UIElement child in CanvasForPaint.Children)
|
||||||
|
//{
|
||||||
|
// var xaml = System.Windows.Markup.XamlWriter.Save(child);
|
||||||
|
// var deepCopy = System.Windows.Markup.XamlReader.Parse(xaml) as UIElement;
|
||||||
|
// TEST.Children.Add(deepCopy);
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ClrPcker_Background_SelectedColorChanged_1(object sender, RoutedPropertyChangedEventArgs<Color?> e)
|
private void ClrPcker_Background_SelectedColorChanged_1(object sender, RoutedPropertyChangedEventArgs<Color?> e)
|
||||||
{
|
{
|
||||||
viewModel.Color_Picker(e, this);
|
viewModel.Color_Picker(e, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CanvasForPaint_MouseUp(object sender, MouseButtonEventArgs e)
|
|
||||||
{
|
|
||||||
viewModel.Canvas_MouseUp(sender, e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
<RowDefinition Height="60"/>
|
<RowDefinition Height="60"/>
|
||||||
<RowDefinition Height="50"/>
|
<RowDefinition Height="50"/>
|
||||||
<RowDefinition Height="30"/>
|
<RowDefinition Height="30"/>
|
||||||
<RowDefinition Height="100"/>
|
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
@@ -23,9 +22,8 @@
|
|||||||
<Label Grid.Row="1" FontSize="30" Content="Enter a username:"/>
|
<Label Grid.Row="1" FontSize="30" Content="Enter a username:"/>
|
||||||
<Label Grid.Row="2" FontSize="15" Content="(max amount of characters for the username is 10)"/>
|
<Label Grid.Row="2" FontSize="15" Content="(max amount of characters for the username is 10)"/>
|
||||||
|
|
||||||
<TextBox Name="usernameTextbox" Grid.Row="1" Grid.Column="1" MaxLength="69" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Left" Width="250"/>
|
<TextBox Name="usernameTextbox" Grid.Row="1" Grid.Column="1" MaxLength="10" FontSize="30" VerticalAlignment="Center" HorizontalAlignment="Left" Width="250"/>
|
||||||
<Button Name="LoginButton" Content="ENTER" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" Width="100" Height="40" Click="Button_EnterUsername"/>
|
<Button Content="ENTER" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" Width="100" Height="40" Click="Button_EnterUsername"/>
|
||||||
|
|
||||||
<Label Grid.Row="3" Grid.Column="0" Content="Tip of the century: base64 != UTF8!" FontSize="20" FontWeight="Bold"/>
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</Window>
|
</Window>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Client.ViewModels;
|
using SharedClientServer;
|
||||||
using SharedClientServer;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@@ -20,21 +19,28 @@ namespace Client.Views
|
|||||||
public partial class LoginScreen : Window
|
public partial class LoginScreen : Window
|
||||||
{
|
{
|
||||||
ClientData data = ClientData.Instance;
|
ClientData data = ClientData.Instance;
|
||||||
private LoginViewModel loginViewModel;
|
|
||||||
public LoginScreen()
|
public LoginScreen()
|
||||||
{
|
{
|
||||||
loginViewModel = new LoginViewModel(this);
|
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Button_EnterUsername(object sender, RoutedEventArgs e)
|
private void Button_EnterUsername(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
string name = usernameTextbox.Text;
|
User user = new User(usernameTextbox.Text);
|
||||||
if (name == string.Empty) return;
|
Client client = new Client(user.Username);
|
||||||
LoginButton.IsEnabled = false;
|
client.OnSuccessfullConnect = () =>
|
||||||
loginViewModel.UsernameEntered(name);
|
{
|
||||||
|
// because we need to start the main window on a UI thread, we need to let the dispatcher handle it, which will execute the code on the ui thread
|
||||||
|
Application.Current.Dispatcher.Invoke(delegate {
|
||||||
|
data.User = user;
|
||||||
|
data.Client = client;
|
||||||
|
client.SendMessage(JSONConvert.ConstructLobbyRequestMessage());
|
||||||
|
MainWindow startWindow = new MainWindow();
|
||||||
|
startWindow.Show();
|
||||||
|
this.Close();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,8 +57,7 @@
|
|||||||
<GridView x:Name="grdList">
|
<GridView x:Name="grdList">
|
||||||
<GridViewColumn Header="Lobby ID" DisplayMemberBinding="{Binding ID}" Width="70"/>
|
<GridViewColumn Header="Lobby ID" DisplayMemberBinding="{Binding ID}" Width="70"/>
|
||||||
<GridViewColumn Header="Players in" DisplayMemberBinding="{Binding PlayersIn}" Width="70"/>
|
<GridViewColumn Header="Players in" DisplayMemberBinding="{Binding PlayersIn}" Width="70"/>
|
||||||
<GridViewColumn Header="max players available" DisplayMemberBinding="{Binding MaxPlayers}" Width="150"/>
|
<GridViewColumn Header="max players available" DisplayMemberBinding="{Binding MaxPlayers}"/>
|
||||||
<GridViewColumn Header="joinable" DisplayMemberBinding="{Binding LobbyJoinable}"/>
|
|
||||||
</GridView>
|
</GridView>
|
||||||
</ListView.View>
|
</ListView.View>
|
||||||
</ListView>
|
</ListView>
|
||||||
|
|||||||
@@ -6,30 +6,22 @@ using SharedClientServer;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Timers;
|
|
||||||
using static SharedClientServer.JSONConvert;
|
using static SharedClientServer.JSONConvert;
|
||||||
|
|
||||||
namespace Server.Models
|
namespace Server.Models
|
||||||
{
|
{
|
||||||
public delegate void Callback();
|
|
||||||
class ServerClient : ObservableObject
|
class ServerClient : ObservableObject
|
||||||
{
|
{
|
||||||
private TcpClient tcpClient;
|
private TcpClient tcpClient;
|
||||||
private NetworkStream stream;
|
private NetworkStream stream;
|
||||||
private byte[] buffer = new byte[2048];
|
private byte[] buffer = new byte[1024];
|
||||||
private byte[] totalBuffer = new byte[2048];
|
private byte[] totalBuffer = new byte[1024];
|
||||||
private string _randomWord = "";
|
|
||||||
private int totalBufferReceived = 0;
|
private int totalBufferReceived = 0;
|
||||||
private Dictionary<System.Timers.Timer, int> lobbyTimers;
|
|
||||||
public User User { get; set; }
|
public User User { get; set; }
|
||||||
private ServerCommunication serverCom = ServerCommunication.INSTANCE;
|
private ServerCommunication serverCom = ServerCommunication.INSTANCE;
|
||||||
private Callback OnMessageReceivedOk;
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Constructor that creates a new serverclient object with the given tcp client.
|
/// Constructor that creates a new serverclient object with the given tcp client.
|
||||||
@@ -37,7 +29,6 @@ namespace Server.Models
|
|||||||
/// <param name="client">the TcpClient object to use</param>
|
/// <param name="client">the TcpClient object to use</param>
|
||||||
public ServerClient(TcpClient client)
|
public ServerClient(TcpClient client)
|
||||||
{
|
{
|
||||||
lobbyTimers = new Dictionary<System.Timers.Timer, int>();
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] making new instance and starting");
|
Debug.WriteLine("[SERVERCLIENT] making new instance and starting");
|
||||||
tcpClient = client;
|
tcpClient = client;
|
||||||
stream = tcpClient.GetStream();
|
stream = tcpClient.GetStream();
|
||||||
@@ -54,60 +45,49 @@ namespace Server.Models
|
|||||||
if (ar == null || (!ar.IsCompleted) || (!this.stream.CanRead) || !this.tcpClient.Client.Connected)
|
if (ar == null || (!ar.IsCompleted) || (!this.stream.CanRead) || !this.tcpClient.Client.Connected)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
try
|
|
||||||
|
int bytesReceived = this.stream.EndRead(ar);
|
||||||
|
|
||||||
|
if (totalBufferReceived + bytesReceived > 1024)
|
||||||
{
|
{
|
||||||
int bytesReceived = this.stream.EndRead(ar);
|
throw new OutOfMemoryException("buffer is too small!");
|
||||||
|
|
||||||
if (totalBufferReceived + bytesReceived > 2048)
|
|
||||||
{
|
|
||||||
throw new OutOfMemoryException("buffer is too small!");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// copy the received bytes into the buffer
|
|
||||||
Array.Copy(buffer, 0, totalBuffer, totalBufferReceived, bytesReceived);
|
|
||||||
// add the bytes we received to the total amount
|
|
||||||
totalBufferReceived += bytesReceived;
|
|
||||||
|
|
||||||
// calculate the expected length of the message
|
|
||||||
int expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
||||||
|
|
||||||
while (totalBufferReceived >= expectedMessageLength)
|
|
||||||
{
|
|
||||||
// we have received the full packet
|
|
||||||
byte[] message = new byte[expectedMessageLength];
|
|
||||||
// copy the total buffer contents into the message array so we can pass it to the handleIncomingMessage method
|
|
||||||
Array.Copy(totalBuffer, 0, message, 0, expectedMessageLength);
|
|
||||||
HandleIncomingMessage(message);
|
|
||||||
|
|
||||||
// move the contents of the totalbuffer to the start of the array
|
|
||||||
Array.Copy(totalBuffer, expectedMessageLength, totalBuffer, 0, (totalBufferReceived - expectedMessageLength));
|
|
||||||
|
|
||||||
// remove the length of the expected message from the total buffer
|
|
||||||
totalBufferReceived -= expectedMessageLength;
|
|
||||||
// and set the new expected length to the rest that is still in the buffer
|
|
||||||
expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
|
||||||
|
|
||||||
if (expectedMessageLength == 0)
|
|
||||||
{
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
ar.AsyncWaitHandle.WaitOne();
|
|
||||||
// start reading for a new message
|
|
||||||
stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnRead), null);
|
|
||||||
}
|
|
||||||
catch (IOException e)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] Client disconnected! exception was " + e.Message);
|
|
||||||
tcpClient.Close();
|
|
||||||
ServerCommunication.INSTANCE.ServerClientDisconnect(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// copy the received bytes into the buffer
|
||||||
|
Array.Copy(buffer, 0, totalBuffer, totalBufferReceived, bytesReceived);
|
||||||
|
// add the bytes we received to the total amount
|
||||||
|
totalBufferReceived += bytesReceived;
|
||||||
|
|
||||||
|
// calculate the expected length of the message
|
||||||
|
int expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
||||||
|
|
||||||
|
while (totalBufferReceived >= expectedMessageLength)
|
||||||
|
{
|
||||||
|
// we have received the full packet
|
||||||
|
byte[] message = new byte[expectedMessageLength];
|
||||||
|
// copy the total buffer contents into the message array so we can pass it to the handleIncomingMessage method
|
||||||
|
Array.Copy(totalBuffer, 0, message, 0, expectedMessageLength);
|
||||||
|
HandleIncomingMessage(message);
|
||||||
|
|
||||||
|
// move the contents of the totalbuffer to the start of the array
|
||||||
|
Array.Copy(totalBuffer, expectedMessageLength, totalBuffer, 0, (totalBufferReceived - expectedMessageLength));
|
||||||
|
|
||||||
|
// remove the length of the expected message from the total buffer
|
||||||
|
totalBufferReceived -= expectedMessageLength;
|
||||||
|
// and set the new expected length to the rest that is still in the buffer
|
||||||
|
expectedMessageLength = BitConverter.ToInt32(totalBuffer, 0);
|
||||||
|
|
||||||
|
if (expectedMessageLength == 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
// start reading for a new message
|
||||||
|
stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(OnRead), null);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -119,21 +99,21 @@ namespace Server.Models
|
|||||||
Debug.WriteLine($"Got message : {Encoding.ASCII.GetString(message)}");
|
Debug.WriteLine($"Got message : {Encoding.ASCII.GetString(message)}");
|
||||||
byte id = message[4];
|
byte id = message[4];
|
||||||
byte[] payload = new byte[message.Length - 5];
|
byte[] payload = new byte[message.Length - 5];
|
||||||
Array.Copy(message, 5, payload, 0, message.Length - 5);
|
Array.Copy(message,5,payload,0,message.Length-5);
|
||||||
Debug.WriteLine("[SERVERCLIENT] GOT STRING" + Encoding.ASCII.GetString(payload));
|
Debug.WriteLine("[SERVERCLIENT] GOT STRING" + Encoding.ASCII.GetString(payload));
|
||||||
switch (id)
|
switch(id)
|
||||||
{
|
{
|
||||||
|
|
||||||
case JSONConvert.LOGIN:
|
case JSONConvert.LOGIN:
|
||||||
// json log in username data
|
// json log in username data
|
||||||
string uName = JSONConvert.GetUsernameLogin(payload);
|
string uName = JSONConvert.GetUsernameLogin(payload);
|
||||||
|
|
||||||
if (uName != null)
|
if (uName != null)
|
||||||
{
|
{
|
||||||
User = new User(uName);
|
User = new User(uName);
|
||||||
User.Username = uName;
|
User.Username = uName;
|
||||||
Debug.WriteLine("[SERVERCLIENT] set username to " + uName);
|
Debug.WriteLine("[SERVERCLIENT] set username to " + uName);
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case JSONConvert.MESSAGE:
|
case JSONConvert.MESSAGE:
|
||||||
@@ -142,118 +122,29 @@ namespace Server.Models
|
|||||||
string textUsername = combo.Item1;
|
string textUsername = combo.Item1;
|
||||||
string textMsg = combo.Item2;
|
string textMsg = combo.Item2;
|
||||||
|
|
||||||
//Takes the data sent from the client, and then sets it in a data packet to be sent.
|
Debug.WriteLine("[SERVERCLIENT] User name: {0}\t User message: {1}", textUsername, textMsg);
|
||||||
dynamic packet = new
|
|
||||||
{
|
|
||||||
username = textUsername,
|
|
||||||
message = textMsg
|
|
||||||
};
|
|
||||||
|
|
||||||
if (textMsg == _randomWord && !string.IsNullOrEmpty(_randomWord))
|
// todo handle sending to all except this user the username and message to display in chat
|
||||||
{
|
serverCom.SendToLobby(ServerCommunication.INSTANCE.GetLobbyForUser(User),payload);
|
||||||
Debug.WriteLine($"[SERVERCLIENT] word has been guessed! {User.Username} + Word: {_randomWord}");
|
Debug.WriteLine("Payload has been sent!");
|
||||||
}
|
|
||||||
|
|
||||||
//Sends the incomming message to be broadcast to all of the clients inside the current lobby.
|
|
||||||
serverCom.SendToLobby(serverCom.GetLobbyForUser(User), JSONConvert.GetMessageToSend(JSONConvert.MESSAGE, packet));
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case JSONConvert.LOBBY:
|
case JSONConvert.LOBBY:
|
||||||
// lobby data
|
// lobby data
|
||||||
LobbyIdentifier l = JSONConvert.GetLobbyIdentifier(payload);
|
LobbyIdentifier l = JSONConvert.GetLobbyIdentifier(payload);
|
||||||
handleLobbyMessage(payload, l);
|
handleLobbyMessage(payload,l);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case JSONConvert.CANVAS:
|
case JSONConvert.CANVAS:
|
||||||
|
Debug.WriteLine("GOT A MESSAGE FROM THE CLIENT ABOUT THE CANVAS!!!");
|
||||||
int typeToCheck = JSONConvert.GetCanvasMessageType(payload);
|
|
||||||
switch (typeToCheck)
|
|
||||||
{
|
|
||||||
case JSONConvert.CANVAS_WRITING:
|
|
||||||
dynamic canvasData = new
|
|
||||||
{
|
|
||||||
canvasType = typeToCheck,
|
|
||||||
coords = JSONConvert.getCoordinates(payload),
|
|
||||||
color = JSONConvert.getCanvasDrawingColor(payload)
|
|
||||||
};
|
|
||||||
serverCom.SendCanvasDataToLobby(serverCom.GetLobbyForUser(User),User.Username,JSONConvert.GetMessageToSend(JSONConvert.CANVAS,canvasData));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case JSONConvert.CANVAS_RESET:
|
|
||||||
dynamic canvasDataForReset = new
|
|
||||||
{
|
|
||||||
type = JSONConvert.GetCanvasMessageType(payload)
|
|
||||||
};
|
|
||||||
serverCom.SendToLobby(serverCom.GetLobbyForUser(User), JSONConvert.GetMessageToSend(CANVAS, canvasDataForReset));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// canvas data
|
// canvas data
|
||||||
// todo send canvas data to all other serverclients in lobby
|
// todo send canvas data to all other serverclients in lobby
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case JSONConvert.GAME:
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] Got a message about the game logic");
|
|
||||||
GameCommand command = JSONConvert.GetGameCommand(payload);
|
|
||||||
switch (command)
|
|
||||||
{
|
|
||||||
case GameCommand.START_GAME:
|
|
||||||
int lobbyID = JSONConvert.GetStartGameLobbyID(payload);
|
|
||||||
serverCom.CloseALobby(lobbyID);
|
|
||||||
//todo start a timer for this lobby
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] making timer for lobby " + lobbyID);
|
|
||||||
System.Timers.Timer lobbyTimer = new System.Timers.Timer(60 * 1000);
|
|
||||||
this.lobbyTimers.Add(lobbyTimer, lobbyID);
|
|
||||||
lobbyTimer.Elapsed += LobbyTimer_Elapsed;
|
|
||||||
lobbyTimer.Start();
|
|
||||||
ServerCommunication.INSTANCE.sendToAll(JSONConvert.ConstructLobbyListMessage(ServerCommunication.INSTANCE.lobbies.ToArray()));
|
|
||||||
serverCom.SendToLobby(lobbyID, JSONConvert.ConstructGameInitializeData( serverCom.FindUserNameInLobby(lobbyID),lobbyID));
|
|
||||||
break;
|
|
||||||
case GameCommand.TIMER_ELAPSED:
|
|
||||||
|
|
||||||
break;
|
|
||||||
case GameCommand.NEXT_ROUND:
|
|
||||||
// The next round has been started, so we can start the timer again
|
|
||||||
|
|
||||||
lobbyID = JSONConvert.GetLobbyID(payload);
|
|
||||||
foreach (System.Timers.Timer timer in lobbyTimers.Keys)
|
|
||||||
{
|
|
||||||
if (lobbyTimers[timer] == lobbyID)
|
|
||||||
{
|
|
||||||
timer.Start();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
case JSONConvert.RANDOMWORD:
|
|
||||||
//Flag byte for receiving the random word.
|
|
||||||
break;
|
|
||||||
case JSONConvert.MESSAGE_RECEIVED:
|
|
||||||
// we now can send a new message
|
|
||||||
OnMessageReceivedOk?.Invoke();
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Debug.WriteLine("[SERVER] Received weird identifier: " + id);
|
Debug.WriteLine("[SERVER] Received weird identifier: " + id);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void LobbyTimer_Elapsed(object sender, ElapsedEventArgs e)
|
|
||||||
{
|
|
||||||
System.Timers.Timer timer = sender as System.Timers.Timer;
|
|
||||||
int lobbyID = lobbyTimers[timer];
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] timer elapsed for lobby " + lobbyID);
|
|
||||||
serverCom.SendToLobby(lobbyID, JSONConvert.ConstructGameTimerElapsedMessage(lobbyID));
|
|
||||||
timer.Stop();
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private void handleLobbyMessage(byte[] payload, LobbyIdentifier l)
|
private void handleLobbyMessage(byte[] payload, LobbyIdentifier l)
|
||||||
{
|
{
|
||||||
switch (l)
|
switch (l)
|
||||||
@@ -271,45 +162,13 @@ namespace Server.Models
|
|||||||
break;
|
break;
|
||||||
case LobbyIdentifier.JOIN:
|
case LobbyIdentifier.JOIN:
|
||||||
int id = JSONConvert.GetLobbyID(payload);
|
int id = JSONConvert.GetLobbyID(payload);
|
||||||
bool isHost;
|
ServerCommunication.INSTANCE.JoinLobby(this.User,id);
|
||||||
ServerCommunication.INSTANCE.JoinLobby(this.User,id, out isHost);
|
sendMessage(JSONConvert.ConstructLobbyJoinSuccessMessage());
|
||||||
sendMessage(JSONConvert.ConstructLobbyJoinSuccessMessage(isHost));
|
|
||||||
ServerCommunication.INSTANCE.sendToAll(JSONConvert.ConstructLobbyListMessage(ServerCommunication.INSTANCE.lobbies.ToArray()));
|
|
||||||
OnMessageReceivedOk = () =>
|
|
||||||
{
|
|
||||||
_randomWord = JSONConvert.SendRandomWord("WordsForGame.json");
|
|
||||||
serverCom.sendToAll(JSONConvert.GetMessageToSend(JSONConvert.RANDOMWORD, new
|
|
||||||
{
|
|
||||||
id = serverCom.GetLobbyForUser(User).ID,
|
|
||||||
word = _randomWord
|
|
||||||
}));
|
|
||||||
OnMessageReceivedOk = null;
|
|
||||||
};
|
|
||||||
break;
|
|
||||||
case LobbyIdentifier.LEAVE:
|
|
||||||
id = JSONConvert.GetLobbyID(payload);
|
|
||||||
ServerCommunication.INSTANCE.LeaveLobby(User, id);
|
|
||||||
sendMessage(JSONConvert.ConstructLobbyLeaveMessage(id));
|
|
||||||
ServerCommunication.INSTANCE.sendToAll(JSONConvert.ConstructLobbyListMessage(ServerCommunication.INSTANCE.lobbies.ToArray()));
|
ServerCommunication.INSTANCE.sendToAll(JSONConvert.ConstructLobbyListMessage(ServerCommunication.INSTANCE.lobbies.ToArray()));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void SendLobbyData()
|
|
||||||
{
|
|
||||||
string result = await WaitForData();
|
|
||||||
if(result == "bruh momento")
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task<string> WaitForData()
|
|
||||||
{
|
|
||||||
await Task.Delay(1000);
|
|
||||||
return "bruh momento";
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// sends a message to the tcp client
|
/// sends a message to the tcp client
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ namespace Server.Models
|
|||||||
public bool Started = false;
|
public bool Started = false;
|
||||||
public List<Lobby> lobbies;
|
public List<Lobby> lobbies;
|
||||||
private Dictionary<Lobby, List<ServerClient>> serverClientsInlobbies;
|
private Dictionary<Lobby, List<ServerClient>> serverClientsInlobbies;
|
||||||
internal Action DisconnectClientAction;
|
|
||||||
public Action newClientAction;
|
public Action newClientAction;
|
||||||
|
|
||||||
|
|
||||||
@@ -90,7 +89,7 @@ namespace Server.Models
|
|||||||
/// send a message to all tcp clients in the list
|
/// send a message to all tcp clients in the list
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="message">the message to send</param>
|
/// <param name="message">the message to send</param>
|
||||||
public async void sendToAll(byte[] message)
|
public void sendToAll(byte[] message)
|
||||||
{
|
{
|
||||||
foreach (ServerClient sc in serverClients)
|
foreach (ServerClient sc in serverClients)
|
||||||
{
|
{
|
||||||
@@ -98,26 +97,6 @@ namespace Server.Models
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ServerClientDisconnect(ServerClient serverClient)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[SERVERCOMM] handling disconnect");
|
|
||||||
DisconnectClientAction?.Invoke();
|
|
||||||
int id = -1;
|
|
||||||
foreach (Lobby l in serverClientsInlobbies.Keys)
|
|
||||||
{
|
|
||||||
if (serverClientsInlobbies[l].Contains(serverClient))
|
|
||||||
{
|
|
||||||
id = l.ID;
|
|
||||||
}break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (id != -1)
|
|
||||||
{
|
|
||||||
LeaveLobby(serverClient.User, id);
|
|
||||||
SendToAllExcept(serverClient, JSONConvert.ConstructLobbyLeaveMessage(id));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendToAllExcept(string username, byte[] message)
|
public void SendToAllExcept(string username, byte[] message)
|
||||||
{
|
{
|
||||||
foreach (ServerClient sc in serverClients)
|
foreach (ServerClient sc in serverClients)
|
||||||
@@ -126,14 +105,6 @@ namespace Server.Models
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendToAllExcept(ServerClient sc, byte[] message)
|
|
||||||
{
|
|
||||||
foreach (ServerClient s in serverClients)
|
|
||||||
{
|
|
||||||
if (s != sc) s.sendMessage(message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendToLobby(Lobby lobby, byte[] message)
|
public void SendToLobby(Lobby lobby, byte[] message)
|
||||||
{
|
{
|
||||||
foreach (Lobby l in lobbies)
|
foreach (Lobby l in lobbies)
|
||||||
@@ -142,7 +113,6 @@ namespace Server.Models
|
|||||||
{
|
{
|
||||||
foreach (ServerClient sc in serverClientsInlobbies[l])
|
foreach (ServerClient sc in serverClientsInlobbies[l])
|
||||||
{
|
{
|
||||||
Debug.WriteLine("[SERVERCLIENT] Sending message to lobby");
|
|
||||||
sc.sendMessage(message);
|
sc.sendMessage(message);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -150,38 +120,6 @@ namespace Server.Models
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendToLobby(int lobbyID, byte[] message)
|
|
||||||
{
|
|
||||||
foreach (Lobby l in lobbies)
|
|
||||||
{
|
|
||||||
if (l.ID == lobbyID)
|
|
||||||
{
|
|
||||||
foreach (ServerClient sc in serverClientsInlobbies[l])
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[SERVERCLIENT] Sending message to lobby");
|
|
||||||
sc.sendMessage(message);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendCanvasDataToLobby(Lobby lobby, string username, byte[] message)
|
|
||||||
{
|
|
||||||
foreach (Lobby l in lobbies)
|
|
||||||
{
|
|
||||||
if (l == lobby)
|
|
||||||
{
|
|
||||||
foreach (ServerClient sc in serverClientsInlobbies[l])
|
|
||||||
{
|
|
||||||
if (sc.User.Username != username)
|
|
||||||
sc.sendMessage(message);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Lobby GetLobbyForUser(User user)
|
public Lobby GetLobbyForUser(User user)
|
||||||
{
|
{
|
||||||
foreach (Lobby l in lobbies)
|
foreach (Lobby l in lobbies)
|
||||||
@@ -223,7 +161,6 @@ namespace Server.Models
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int HostForLobby(User user)
|
public int HostForLobby(User user)
|
||||||
{
|
{
|
||||||
Lobby lobby = new Lobby( lobbies.Count + 1,0, 8);
|
Lobby lobby = new Lobby( lobbies.Count + 1,0, 8);
|
||||||
@@ -234,89 +171,17 @@ namespace Server.Models
|
|||||||
return lobby.ID;
|
return lobby.ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void JoinLobby(User user, int id, out bool isHost)
|
public void JoinLobby(User user, int id)
|
||||||
{
|
{
|
||||||
isHost = false;
|
|
||||||
foreach (Lobby l in lobbies)
|
foreach (Lobby l in lobbies)
|
||||||
{
|
{
|
||||||
if (l.ID == id)
|
if (l.ID == id)
|
||||||
{
|
{
|
||||||
if (l.Users.Count == 0)
|
|
||||||
{
|
|
||||||
user.Host = true;
|
|
||||||
isHost = true;
|
|
||||||
}
|
|
||||||
AddToLobby(l, user);
|
AddToLobby(l, user);
|
||||||
Debug.WriteLine($"{user.Username} joined lobby with id {id}");
|
Debug.WriteLine($"{user.Username} joined lobby with id {id}");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void LeaveLobby(User user, int id)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[SERVERCOMM] removing user from lobby");
|
|
||||||
foreach (Lobby l in lobbies)
|
|
||||||
{
|
|
||||||
if (l.ID == id)
|
|
||||||
{
|
|
||||||
Debug.WriteLine($"[SERVERCOMM] checking for lobby with id {l.ID}");
|
|
||||||
|
|
||||||
foreach (User u in l.Users)
|
|
||||||
{
|
|
||||||
Debug.WriteLine($"[SERVERCOMM] checking if {u.Username} is {user.Username} ");
|
|
||||||
// contains doesn't work, so we'll do it like this...
|
|
||||||
if (u.Username == user.Username)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("[SERVERCOMM] removed user from lobby!");
|
|
||||||
l.Users.Remove(user);
|
|
||||||
foreach (ServerClient sc in serverClients)
|
|
||||||
{
|
|
||||||
if (sc.User.Username == user.Username)
|
|
||||||
{
|
|
||||||
serverClientsInlobbies[l].Remove(sc);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (l.Users.Count != 0)
|
|
||||||
{
|
|
||||||
l.Users[0].Host = true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void CloseALobby(int lobbyID)
|
|
||||||
{
|
|
||||||
foreach (Lobby lobby in lobbies)
|
|
||||||
{
|
|
||||||
if (lobby.ID == lobbyID)
|
|
||||||
{
|
|
||||||
lobby.LobbyJoinable = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public string FindUserNameInLobby(int lobbyID)
|
|
||||||
{
|
|
||||||
Lobby lobbyFound = null;
|
|
||||||
foreach (Lobby lobby in lobbies)
|
|
||||||
{
|
|
||||||
if (lobby.ID == lobbyID)
|
|
||||||
{
|
|
||||||
lobbyFound = lobby;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return lobbyFound?.Users[lobbyFound.UserDrawing]?.Username;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,16 +6,6 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<None Remove="resources\WordsForGame.json" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="resources\WordsForGame.json">
|
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
||||||
</Content>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AsyncAwaitBestPractices" Version="4.3.0" />
|
<PackageReference Include="AsyncAwaitBestPractices" Version="4.3.0" />
|
||||||
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
|
||||||
|
|||||||
@@ -33,10 +33,6 @@ namespace Server.ViewModels
|
|||||||
{
|
{
|
||||||
InformationModel.ClientsConnected++;
|
InformationModel.ClientsConnected++;
|
||||||
};
|
};
|
||||||
serverCommunication.DisconnectClientAction = () =>
|
|
||||||
{
|
|
||||||
InformationModel.ClientsConnected--;
|
|
||||||
};
|
|
||||||
//BitmapImage onlineImg = new BitmapImage(new Uri(@"/img/online.png",UriKind.Relative));
|
//BitmapImage onlineImg = new BitmapImage(new Uri(@"/img/online.png",UriKind.Relative));
|
||||||
//BitmapImage offlineImg = new BitmapImage(new Uri(@"/img/offline.png", UriKind.Relative));
|
//BitmapImage offlineImg = new BitmapImage(new Uri(@"/img/offline.png", UriKind.Relative));
|
||||||
|
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
{
|
|
||||||
"filename": "wordsForGame",
|
|
||||||
"words": [
|
|
||||||
"teacher",
|
|
||||||
"love",
|
|
||||||
"engineer",
|
|
||||||
"supermarket",
|
|
||||||
"disaster",
|
|
||||||
"studio",
|
|
||||||
"restaurant",
|
|
||||||
"music",
|
|
||||||
"chocolate",
|
|
||||||
"dirt",
|
|
||||||
"thought",
|
|
||||||
"virus",
|
|
||||||
"lieutenant",
|
|
||||||
"painter",
|
|
||||||
"kiwi",
|
|
||||||
"power ranger",
|
|
||||||
"computer",
|
|
||||||
"people",
|
|
||||||
"candidate",
|
|
||||||
"security guard",
|
|
||||||
"Canada",
|
|
||||||
"teeth",
|
|
||||||
"army",
|
|
||||||
"airport",
|
|
||||||
"president",
|
|
||||||
"bedroom"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -7,8 +7,6 @@ using System.Text;
|
|||||||
namespace SharedClientServer
|
namespace SharedClientServer
|
||||||
{
|
{
|
||||||
public delegate void Callback();
|
public delegate void Callback();
|
||||||
|
|
||||||
|
|
||||||
class ClientServerUtil
|
class ClientServerUtil
|
||||||
{
|
{
|
||||||
// creates a message array to send to the server or to clients
|
// creates a message array to send to the server or to clients
|
||||||
|
|||||||
@@ -1,13 +1,11 @@
|
|||||||
using Client;
|
using Client;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Windows.Media;
|
|
||||||
|
|
||||||
namespace SharedClientServer
|
namespace SharedClientServer
|
||||||
{
|
{
|
||||||
@@ -17,13 +15,6 @@ namespace SharedClientServer
|
|||||||
public const byte MESSAGE = 0x02;
|
public const byte MESSAGE = 0x02;
|
||||||
public const byte LOBBY = 0x03;
|
public const byte LOBBY = 0x03;
|
||||||
public const byte CANVAS = 0x04;
|
public const byte CANVAS = 0x04;
|
||||||
public const byte GAME = 0x05;
|
|
||||||
public const byte MESSAGE_RECEIVED = 0x06;
|
|
||||||
public const byte RANDOMWORD = 0x07;
|
|
||||||
|
|
||||||
public const int CANVAS_WRITING = 0;
|
|
||||||
public const int CANVAS_RESET = 1;
|
|
||||||
|
|
||||||
|
|
||||||
public enum LobbyIdentifier
|
public enum LobbyIdentifier
|
||||||
{
|
{
|
||||||
@@ -34,18 +25,9 @@ namespace SharedClientServer
|
|||||||
LIST,
|
LIST,
|
||||||
REQUEST
|
REQUEST
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum GameCommand
|
|
||||||
{
|
|
||||||
START_GAME,
|
|
||||||
INITIALIZE,
|
|
||||||
TIMER_ELAPSED,
|
|
||||||
NEXT_ROUND
|
|
||||||
}
|
|
||||||
|
|
||||||
public static (string,string) GetUsernameAndMessage(byte[] json)
|
public static (string,string) GetUsernameAndMessage(byte[] json)
|
||||||
{
|
{
|
||||||
string msg = Encoding.UTF8.GetString(json);
|
string msg = Encoding.ASCII.GetString(json);
|
||||||
dynamic payload = JsonConvert.DeserializeObject(msg);
|
dynamic payload = JsonConvert.DeserializeObject(msg);
|
||||||
|
|
||||||
return (payload.username, payload.message);
|
return (payload.username, payload.message);
|
||||||
@@ -53,7 +35,7 @@ namespace SharedClientServer
|
|||||||
|
|
||||||
public static string GetUsernameLogin(byte[] json)
|
public static string GetUsernameLogin(byte[] json)
|
||||||
{
|
{
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
||||||
return payload.username;
|
return payload.username;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,7 +83,6 @@ namespace SharedClientServer
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static byte[] ConstructLobbyJoinMessage(int lobbyID)
|
public static byte[] ConstructLobbyJoinMessage(int lobbyID)
|
||||||
{
|
{
|
||||||
return GetMessageToSend(LOBBY, new
|
return GetMessageToSend(LOBBY, new
|
||||||
@@ -121,13 +102,13 @@ namespace SharedClientServer
|
|||||||
}
|
}
|
||||||
public static LobbyIdentifier GetLobbyIdentifier(byte[] json)
|
public static LobbyIdentifier GetLobbyIdentifier(byte[] json)
|
||||||
{
|
{
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
||||||
return payload.identifier;
|
return payload.identifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Lobby[] GetLobbiesFromMessage(byte[] json)
|
public static Lobby[] GetLobbiesFromMessage(byte[] json)
|
||||||
{
|
{
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
||||||
JArray lobbiesArray = payload.lobbies;
|
JArray lobbiesArray = payload.lobbies;
|
||||||
Debug.WriteLine("[JSONCONVERT] got lobbies from message" + lobbiesArray.ToString());
|
Debug.WriteLine("[JSONCONVERT] got lobbies from message" + lobbiesArray.ToString());
|
||||||
Lobby[] lobbiesTemp = lobbiesArray.ToObject<Lobby[]>();
|
Lobby[] lobbiesTemp = lobbiesArray.ToObject<Lobby[]>();
|
||||||
@@ -141,118 +122,24 @@ namespace SharedClientServer
|
|||||||
|
|
||||||
public static int GetLobbyID(byte[] json)
|
public static int GetLobbyID(byte[] json)
|
||||||
{
|
{
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
||||||
return payload.id;
|
return payload.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Lobby GetLobby(byte[] json)
|
public static Lobby GetLobby(byte[] json)
|
||||||
{
|
{
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
||||||
JObject dynamicAsObject = payload.lobby;
|
JObject dynamicAsObject = payload.lobby;
|
||||||
return dynamicAsObject.ToObject<Lobby>();
|
return dynamicAsObject.ToObject<Lobby>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] ConstructLobbyJoinSuccessMessage(bool isHost)
|
public static byte[] ConstructLobbyJoinSuccessMessage()
|
||||||
{
|
{
|
||||||
return GetMessageToSend(LOBBY, new { identifier = LobbyIdentifier.JOIN_SUCCESS,
|
return GetMessageToSend(LOBBY, new { identifier = LobbyIdentifier.JOIN_SUCCESS});
|
||||||
host = isHost});
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool GetLobbyJoinIsHost(byte[] json)
|
|
||||||
{
|
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
|
||||||
return payload.host;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public static byte[] ConstructCanvasDataSend(int typeToSend, double[][] buffer, Color colorToSend)
|
|
||||||
{
|
|
||||||
|
|
||||||
return GetMessageToSend(CANVAS, new
|
|
||||||
{
|
|
||||||
canvasType = typeToSend,
|
|
||||||
coords = buffer,
|
|
||||||
color = colorToSend
|
|
||||||
}); ;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static byte[] ConstructDrawingCanvasData(double[][] buffer, Color colorToSend)
|
|
||||||
{
|
|
||||||
return GetMessageToSend(CANVAS, new
|
|
||||||
{
|
|
||||||
canvasType = CANVAS_WRITING,
|
|
||||||
coords = buffer,
|
|
||||||
color = colorToSend
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int GetCanvasMessageType(byte[] json)
|
|
||||||
{
|
|
||||||
dynamic d = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(json));
|
|
||||||
return d.canvasType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static double[][] getCoordinates(byte[] payload)
|
|
||||||
{
|
|
||||||
Debug.WriteLine("got coords " + Encoding.UTF8.GetString(payload));
|
|
||||||
dynamic json = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(payload));
|
|
||||||
JArray coordinatesArray = json.coords;
|
|
||||||
|
|
||||||
double[][] coordinates = coordinatesArray.ToObject<double[][]>();
|
|
||||||
|
|
||||||
return coordinates;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Color getCanvasDrawingColor(byte[] payload)
|
|
||||||
{
|
|
||||||
dynamic json = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(payload));
|
|
||||||
Color color = json.color;
|
|
||||||
return color;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static byte[] ConstructGameStartData(int lobbyID)
|
|
||||||
{
|
|
||||||
|
|
||||||
return GetMessageToSend(GAME, new
|
|
||||||
{
|
|
||||||
command = GameCommand.START_GAME,
|
|
||||||
lobbyToStart = lobbyID
|
|
||||||
}); ;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static byte[] ConstructGameInitializeData(string userName, int lobbyID)
|
|
||||||
{
|
|
||||||
dynamic payload = new
|
|
||||||
{
|
|
||||||
id = lobbyID,
|
|
||||||
command = GameCommand.INITIALIZE,
|
|
||||||
username = userName
|
|
||||||
};
|
|
||||||
return GetMessageToSend(GAME, payload);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static byte[] ConstructGameTimerElapsedMessage(int lobbyID)
|
|
||||||
{
|
|
||||||
return GetMessageToSend(GAME, new
|
|
||||||
{
|
|
||||||
command = GameCommand.TIMER_ELAPSED,
|
|
||||||
id = lobbyID
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GameCommand GetGameCommand(byte[] payload)
|
|
||||||
{
|
|
||||||
dynamic json = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(payload));
|
|
||||||
return json.command;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int GetStartGameLobbyID(byte[] payload)
|
|
||||||
{
|
|
||||||
dynamic json = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(payload));
|
|
||||||
return json.lobbyToStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// constructs a message that can be sent to the clients or server
|
/// constructs a message that can be sent to the clients or server
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -262,8 +149,7 @@ namespace SharedClientServer
|
|||||||
public static byte[] GetMessageToSend(byte identifier, dynamic payload)
|
public static byte[] GetMessageToSend(byte identifier, dynamic payload)
|
||||||
{
|
{
|
||||||
// convert the dynamic to bytes
|
// convert the dynamic to bytes
|
||||||
string json = JsonConvert.SerializeObject(payload);
|
byte[] payloadBytes = Encoding.ASCII.GetBytes(JsonConvert.SerializeObject(payload));
|
||||||
byte[] payloadBytes = Encoding.UTF8.GetBytes(json);
|
|
||||||
// make the array that holds the message and copy the payload into it with the first spot containing the identifier
|
// make the array that holds the message and copy the payload into it with the first spot containing the identifier
|
||||||
byte[] res = new byte[payloadBytes.Length + 5];
|
byte[] res = new byte[payloadBytes.Length + 5];
|
||||||
// put the payload in the res array
|
// put the payload in the res array
|
||||||
@@ -274,40 +160,6 @@ namespace SharedClientServer
|
|||||||
Array.Copy(BitConverter.GetBytes(payloadBytes.Length+5),0,res,0,4);
|
Array.Copy(BitConverter.GetBytes(payloadBytes.Length+5),0,res,0,4);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* This method sends a random word from the json file, this happens when the client joins a lobby.
|
|
||||||
*/
|
|
||||||
public static string SendRandomWord(string filename)
|
|
||||||
{
|
|
||||||
dynamic words;
|
|
||||||
Random random = new Random();
|
|
||||||
string workingDir = Path.GetFullPath(@"..\Server");
|
|
||||||
string projDir = Directory.GetParent(workingDir).Parent.Parent.FullName;
|
|
||||||
string filePath = projDir += $@"\resources\{filename}";
|
|
||||||
|
|
||||||
using(StreamReader reader = new StreamReader(filePath))
|
|
||||||
{
|
|
||||||
string json = reader.ReadToEnd();
|
|
||||||
words = JsonConvert.DeserializeObject(json);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int index = random.Next(0, 24);
|
|
||||||
|
|
||||||
Debug.WriteLine($"[SERVERCLIENT] Sending random words {words}");
|
|
||||||
|
|
||||||
return words.words[index];
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Client gets the payload and retrieves the word from the payload
|
|
||||||
*/
|
|
||||||
public static string GetRandomWord(byte[] json)
|
|
||||||
{
|
|
||||||
dynamic payload = JsonConvert.DeserializeObject(Encoding.ASCII.GetString(json));
|
|
||||||
return payload.word;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ using System.Text;
|
|||||||
|
|
||||||
namespace Client
|
namespace Client
|
||||||
{
|
{
|
||||||
internal class Lobby : INotifyPropertyChanged
|
class Lobby : INotifyPropertyChanged
|
||||||
{
|
{
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
|
||||||
@@ -14,10 +14,8 @@ namespace Client
|
|||||||
private int _id;
|
private int _id;
|
||||||
private int _playersIn;
|
private int _playersIn;
|
||||||
private int _maxPlayers;
|
private int _maxPlayers;
|
||||||
private bool _lobbyJoinable;
|
|
||||||
//private List<string> _usernames;
|
//private List<string> _usernames;
|
||||||
private List<User> _users;
|
private List<User> _users;
|
||||||
private int _userDrawing;
|
|
||||||
|
|
||||||
//public void AddUsername(string username, out bool success)
|
//public void AddUsername(string username, out bool success)
|
||||||
//{
|
//{
|
||||||
@@ -36,8 +34,6 @@ namespace Client
|
|||||||
_maxPlayers = maxPlayers;
|
_maxPlayers = maxPlayers;
|
||||||
//_usernames = new List<string>();
|
//_usernames = new List<string>();
|
||||||
_users = new List<User>();
|
_users = new List<User>();
|
||||||
_lobbyJoinable = true;
|
|
||||||
_userDrawing = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddUser(string username, out bool succes)
|
public void AddUser(string username, out bool succes)
|
||||||
@@ -45,7 +41,7 @@ namespace Client
|
|||||||
succes = false;
|
succes = false;
|
||||||
if (_users.Count < _maxPlayers)
|
if (_users.Count < _maxPlayers)
|
||||||
{
|
{
|
||||||
_users.Add(new User(username, 0, false, false));
|
_users.Add(new User(username, 0, false));
|
||||||
succes = true;
|
succes = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -91,17 +87,6 @@ namespace Client
|
|||||||
set { _users = value; }
|
set { _users = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool LobbyJoinable
|
|
||||||
{
|
|
||||||
get { return _lobbyJoinable; }
|
|
||||||
set { _lobbyJoinable = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public int UserDrawing
|
|
||||||
{
|
|
||||||
get { return _userDrawing; }
|
|
||||||
set { _userDrawing = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,23 @@
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace SharedClientServer
|
namespace SharedClientServer
|
||||||
{
|
{
|
||||||
class User : IEquatable<User>
|
class User
|
||||||
{
|
{
|
||||||
private string _username;
|
private string _username;
|
||||||
private int _score;
|
private int _score;
|
||||||
private bool _host;
|
private bool _host;
|
||||||
private bool _turnToDraw;
|
|
||||||
private string _message;
|
private string _message;
|
||||||
private string _randomWord;
|
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public User(string username, int score, bool host, bool turnToDraw)
|
public User(string username, int score, bool host)
|
||||||
{
|
{
|
||||||
_username = username;
|
_username = username;
|
||||||
_score = score;
|
_score = score;
|
||||||
_host = host;
|
_host = host;
|
||||||
_turnToDraw = turnToDraw;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public User(string username)
|
public User(string username)
|
||||||
@@ -29,43 +25,6 @@ namespace SharedClientServer
|
|||||||
_username = username;
|
_username = username;
|
||||||
_score = 0;
|
_score = 0;
|
||||||
_host = false;
|
_host = false;
|
||||||
_turnToDraw = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool operator ==(User u1, User u2)
|
|
||||||
{
|
|
||||||
if (object.ReferenceEquals(u1, null))
|
|
||||||
{
|
|
||||||
return object.ReferenceEquals(u2, null);
|
|
||||||
}
|
|
||||||
return u1.Equals(u2 as object);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool operator !=(User u1, User u2)
|
|
||||||
{
|
|
||||||
if (object.ReferenceEquals(u1, null))
|
|
||||||
{
|
|
||||||
return object.ReferenceEquals(u2, null);
|
|
||||||
}
|
|
||||||
return u1.Equals(u2 as object);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override bool Equals(object obj)
|
|
||||||
{
|
|
||||||
if ((obj == null) || !this.GetType().Equals(obj.GetType()))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return this.Equals(obj as User);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool Equals([AllowNull] User other)
|
|
||||||
{
|
|
||||||
return other.Username == this.Username;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Username
|
public string Username
|
||||||
@@ -85,16 +44,5 @@ namespace SharedClientServer
|
|||||||
get { return _host; }
|
get { return _host; }
|
||||||
set { _host = value; }
|
set { _host = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool TurnToDraw
|
|
||||||
{
|
|
||||||
get { return _turnToDraw; }
|
|
||||||
set { _turnToDraw = value; }
|
|
||||||
}
|
|
||||||
public string RandomWord
|
|
||||||
{
|
|
||||||
get { return _randomWord; }
|
|
||||||
set { _randomWord = value; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user