Added random generator for the initial letters and sending command

This commit is contained in:
Lorenzo Iovino 2017-06-26 15:47:25 +02:00
parent 648ea2ef7c
commit 5f8fe0ae2d
19 changed files with 58861 additions and 436 deletions

722
.idea/workspace.xml generated

File diff suppressed because it is too large Load diff

View file

@ -16,6 +16,8 @@ public class Game extends Page {
private TTContainer gameContainer;
public GameController gameController;
public TTGameBox gameBox;
public DefaultListModel<String> words = new DefaultListModel<String>();
public DefaultListModel<Point> letterSpawningPoint = new DefaultListModel<Point>();
public Timer timer = null;
@ -85,7 +87,8 @@ public class Game extends Page {
return l;
}
private Callable<Object> getWords(){
private Callable<Object> sendWords(String word){
System.out.println("SENDDDD" + word);
return null;
}
@ -100,12 +103,11 @@ public class Game extends Page {
-1,
root);
TTGameBox gameBox = new TTGameBox(
gameBox = new TTGameBox(
new Point(150, 90),
new Dimension(250, 40),
"Word!",
new DefaultListModel(),
getWords(),
"Insert word and Press ENTER!",
words,
gameContainer);
addFooter(root);

View file

@ -110,9 +110,10 @@ public class Page {
lblTimer.setText("00:00");
((Timer)e.getSource()).stop();
} else {
SimpleDateFormat dateFormat = new SimpleDateFormat("mm:ss:S");
lblTimer.setText(dateFormat.format(count));
int minutes = count / 60;
int seconds = count % 60;
String str = String.format("%d:%02d", minutes, seconds);
lblTimer.setText(str);
count--;
}

View file

@ -83,7 +83,7 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
@Override
public void done() {
System.out.println("DDDDDDDD22");
System.out.println("Done");
}
}

View file

@ -21,12 +21,12 @@ public class StartGame implements Runnable {
@Override
public void run(){
//Letters are ready? Polling
while(!(this.game.gameController.letters.size() > 0)) {
System.out.println(this.game.gameController.letters.size());
this.game.gameController.letters = App.matchService.words;
}
System.out.println(this.game.gameController.letters);
game.showLetters();
if(this.game.gameController.letters.size()>0){
this.game.timer.start();
}

View file

@ -43,8 +43,6 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
buffer.clear();
Message msg = Message.toMessage(line);
System.out.println("HEY");
System.out.println(msg);
if (msg.message.equals("TIMEOUT")) {
socketChannel.close();
loading.dispose();
@ -75,6 +73,6 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
}
public void done(){
System.out.println("DONEEE");
System.out.println("Done");
}
}

View file

@ -17,7 +17,6 @@ public class TTGameBox extends TTInputField{
Dimension dimension,
String placeholer,
DefaultListModel listModel,
Callable<Object> clickHandler,
TTContainer parent){
super(position, dimension, placeholer, parent);
@ -31,6 +30,15 @@ public class TTGameBox extends TTInputField{
@Override
public void keyPressed(KeyEvent e) {
super.keyPressed(e);
if(e.getKeyCode() == 10){
try {
System.out.println(getText());
setText("");
listModel.addElement(getText());
} catch (Exception e1) {
e1.printStackTrace();
}
}
//Every time i press a key, execute a search of users
}
});

View file

@ -4,6 +4,7 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />

View file

@ -31,7 +31,6 @@ public class Message implements Serializable {
}
public static Message toMessage(String data){
System.out.println(data);
int divisorType = data.indexOf("=");
data = data.substring(divisorType+1, data.length());

View file

@ -4,6 +4,7 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />

58110
Server/resources/dictionary Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,7 @@
package com.texttwist.server.components;
import com.sun.org.apache.xpath.internal.operations.Bool;
import com.texttwist.server.models.Dictionary;
import com.texttwist.server.models.Match;
import com.texttwist.server.tasks.SendInvitations;
import com.texttwist.server.tasks.WaitForPlayers;
@ -18,6 +19,8 @@ import java.net.Socket;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Iterator;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
@ -34,6 +37,9 @@ public class GameServer implements Runnable{
protected ThreadProxy proxy;
protected Selector selector = null;
protected ExecutorService threadPool = Executors.newCachedThreadPool();
private String dictionaryPath = "./Server/resources/dictionary";
public static Dictionary dict;
public static DefaultListModel<Match> activeMatches = new DefaultListModel<Match>();
@ -43,6 +49,7 @@ public class GameServer implements Runnable{
public void run(){
dict = new Dictionary(dictionaryPath);
ByteBuffer buffer = ByteBuffer.allocate(1024);
try {
selector = Selector.open();
@ -116,7 +123,6 @@ public class GameServer implements Runnable{
} catch (IOException e1) {
e1.printStackTrace();
}
System.out.println("DDD");
e.printStackTrace();
}
}

View file

@ -79,15 +79,4 @@ public class SessionsManager {
}
}
public void printSessions() {
for(int i = 0; i<sessions.size(); i++){
System.out.println(sessions.get(i).toString());
}
}
public int size(){
return sessions.size();
}
}

View file

@ -125,20 +125,22 @@ public class ThreadProxy implements Callable<Boolean> {
Boolean joinMatchRes = joinMatch.get();
if(joinMatchRes){
System.out.print("START THE FUCKING GAME!!!!");
//Find the game, send broadcast communication
// buffer.flip();
Match match = Match.findMatch(request.data.get(0));
Future<DefaultListModel<String>> generateWords = threadPool.submit(new GenerateWords());
match.setLetters(generateWords.get());
for (int i =0; i< match.playersSocket.size(); i++) {
System.out.println("INVIO");
socketChannel = match.playersSocket.get(i).getValue();
if(socketChannel!=null) {
buffer.clear();
Future<DefaultListModel<String>> generateWords = threadPool.submit(new GenerateWords());
Message message = new Message("GAME_STARTED", "", "", generateWords.get());
Message message = new Message("GAME_STARTED", "", "", match.letters);
match.startGame();
byteMessage = new String(message.toString()).getBytes();

View file

@ -0,0 +1,58 @@
package com.texttwist.server.models;
import javax.swing.*;
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.Random;
import java.util.stream.Stream;
/**
* Created by loke on 26/06/2017.
*/
public class Dictionary {
DefaultListModel<String> wordList = new DefaultListModel<>();
private Random randomGenerator;
public Dictionary(String dictionaryPath) {
try (BufferedReader br = new BufferedReader(new FileReader(new File(dictionaryPath)))) {
for (String line; (line = br.readLine()) != null; ) {
wordList.addElement(line);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public String getRandomWord(int minimumWordSize, int maximumWordSize){
randomGenerator = new Random();
int index = randomGenerator.nextInt(wordList.size());
String word = wordList.get(index);
if(word.length() >= minimumWordSize && word.length() <= maximumWordSize) {
return word;
} else {
for(int i = index; i< wordList.size()-index; i++){
word = wordList.get(i);
if(word.length() >= minimumWordSize && word.length() <= maximumWordSize) {
return word;
}
}
for(int i = index; i>0 ; i--){
word = wordList.get(i);
if(word.length() >= minimumWordSize && word.length() <= maximumWordSize) {
return word;
}
}
return "";
}
}
}

View file

@ -17,6 +17,7 @@ public class Match {
public DefaultListModel<Pair<String,SocketChannel>> playersSocket = new DefaultListModel<Pair<String, SocketChannel>>();
private boolean started = false;
public String matchCreator;
public DefaultListModel<String> letters;
public DefaultListModel<Pair<String,Integer>> playersScore = new DefaultListModel<Pair<String, Integer>>();
public Match(String matchCreator, DefaultListModel<String> players){
@ -47,4 +48,7 @@ public class Match {
}
public void setLetters(DefaultListModel<String> letters){
this.letters = letters;
}
}

View file

@ -1,6 +1,12 @@
package com.texttwist.server.tasks;
import com.texttwist.server.components.GameServer;
import javax.swing.*;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.charset.Charset;
import java.nio.file.*;
import java.util.concurrent.Callable;
/**
@ -15,13 +21,13 @@ public class GenerateWords implements Callable<DefaultListModel<String>> {
@Override
public DefaultListModel<String> call() throws Exception {
DefaultListModel l = new DefaultListModel<String>();
l.addElement("D");
l.addElement("S");
l.addElement("Q");
l.addElement("A");
DefaultListModel<String> l = new DefaultListModel<String>();
String word = GameServer.dict.getRandomWord(6, 7);
System.out.println(word);
for (int i = 0;i < word.length(); i++){
l.addElement(String.valueOf(word.charAt(i)));
}
return l;
}

View file

@ -2015,3 +2015,124 @@ LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - Invoked invitation with username=c|[a, b]
LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - Invoked invitation with username=c|[a, b]
LOGGER (Client1): Sun Jun 25 19:43:58 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:44:00 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:44:01 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:44:03 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:44:04 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - Invoked invitation with username=d|[e]
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - Invoked invitation with username=d|[e]
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - Invoked invitation with username=d|[e]
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - Invoked invitation with username=d|[e]
LOGGER (Client1): Sun Jun 25 19:44:58 CEST 2017 - Invoked invitation with username=d|[e]
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Sun Jun 25 19:45:06 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Sun Jun 25 19:45:14 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:45:16 CEST 2017 - Client starting ...
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - Invoked invitation with username=v|[f]
LOGGER (Client1): Sun Jun 25 19:45:46 CEST 2017 - v ti ha sfidato!
LOGGER (Client1): Mon Jun 26 14:31:20 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:31:21 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:31:29 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 14:31:29 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 14:31:29 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 14:33:28 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:33:40 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:33:41 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:33:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 14:33:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 14:33:51 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 14:38:29 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 14:38:52 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:00:41 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:00:42 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:00:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:00:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:00:51 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:03:35 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:03:37 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:03:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:03:51 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:03:51 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:05:55 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:05:57 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:06:05 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:06:05 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:06:05 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:07:16 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:07:23 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:07:31 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:07:31 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:07:31 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:10:09 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:10:12 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:10:22 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:10:22 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:10:22 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:15:25 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:15:27 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:15:34 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:15:34 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:15:34 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:19:41 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:19:44 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:19:53 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:19:53 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:19:53 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:23:59 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:24:01 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:24:09 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:24:09 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:24:09 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:30:50 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:30:52 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:30:59 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:30:59 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:30:59 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:31:26 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:31:27 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:31:35 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:31:35 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:31:35 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:34:22 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:34:23 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:37:41 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:37:41 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:37:41 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:38:38 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:38:39 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:38:46 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:38:46 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:38:46 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:40:59 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:41:01 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:41:11 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:41:11 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:41:11 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:44:08 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:44:10 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:44:18 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:44:18 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:44:18 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:44:51 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:44:53 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:45:00 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:45:00 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Mon Jun 26 15:45:00 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:46:17 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:46:19 CEST 2017 - Client starting ...
LOGGER (Client1): Mon Jun 26 15:46:28 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:46:28 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Mon Jun 26 15:46:28 CEST 2017 - b ti ha sfidato!

View file

@ -3828,3 +3828,196 @@ LOGGER (Server): Sun Jun 25 19:39:45 CEST 2017 - Invoked login with username=b A
LOGGER (Server): Sun Jun 25 19:39:45 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:39:52 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Sun Jun 25 19:39:52 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:43:55 CEST 2017 - Server starting ...
LOGGER (Server): Sun Jun 25 19:43:55 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Sun Jun 25 19:43:55 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Sun Jun 25 19:43:55 CEST 2017 - Server started
LOGGER (Server): Sun Jun 25 19:44:27 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Sun Jun 25 19:44:27 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:44:30 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Sun Jun 25 19:44:30 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:44:32 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Sun Jun 25 19:44:32 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:44:36 CEST 2017 - Invoked register with username=d AND password=d
LOGGER (Server): Sun Jun 25 19:44:36 CEST 2017 - Registration successfull
LOGGER (Server): Sun Jun 25 19:44:42 CEST 2017 - Invoked register with username=e AND password=e
LOGGER (Server): Sun Jun 25 19:44:42 CEST 2017 - Registration successfull
LOGGER (Server): Sun Jun 25 19:44:46 CEST 2017 - Invoked login with username=d AND password=d
LOGGER (Server): Sun Jun 25 19:44:46 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:44:48 CEST 2017 - Invoked login with username=e AND password=e
LOGGER (Server): Sun Jun 25 19:44:48 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:45:24 CEST 2017 - Invoked register with username=f AND password=
LOGGER (Server): Sun Jun 25 19:45:26 CEST 2017 - Invoked register with username=f AND password=f
LOGGER (Server): Sun Jun 25 19:45:26 CEST 2017 - Registration successfull
LOGGER (Server): Sun Jun 25 19:45:29 CEST 2017 - Invoked login with username=f AND password=f
LOGGER (Server): Sun Jun 25 19:45:29 CEST 2017 - Login successfull
LOGGER (Server): Sun Jun 25 19:45:38 CEST 2017 - Invoked register with username=v AND password=v
LOGGER (Server): Sun Jun 25 19:45:38 CEST 2017 - Registration successfull
LOGGER (Server): Sun Jun 25 19:45:41 CEST 2017 - Invoked login with username=v AND password=v
LOGGER (Server): Sun Jun 25 19:45:41 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 14:31:17 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 14:31:18 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 14:31:18 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 14:31:18 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 14:31:25 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 14:31:25 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 14:31:27 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 14:31:27 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 14:33:38 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 14:33:38 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 14:33:38 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 14:33:38 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 14:33:43 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 14:33:43 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 14:33:48 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 14:33:48 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 14:38:24 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 14:38:24 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 14:38:24 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 14:38:48 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 14:38:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 14:38:49 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:00:37 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:00:37 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:00:37 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:00:37 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:00:45 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:00:45 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:00:49 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:00:49 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:01:52 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:01:53 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:01:53 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:01:53 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:02:38 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:02:38 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:02:38 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:02:38 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:03:23 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:03:23 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:03:23 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:03:23 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:03:29 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:03:29 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:03:29 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:03:29 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:03:44 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:03:44 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:03:49 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:03:49 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:05:52 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:05:52 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:05:52 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:05:52 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:06:00 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:06:00 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:06:02 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:06:02 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:07:12 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:07:12 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:07:12 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:07:12 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:07:27 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:07:27 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:07:28 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:07:28 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:09:58 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:09:58 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:09:58 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:09:58 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:10:02 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:10:02 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:10:02 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:10:02 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:10:16 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:10:16 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:10:19 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:10:19 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:15:24 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:15:24 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:15:24 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:15:24 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:15:30 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:15:30 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:15:32 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:15:32 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:19:38 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:19:38 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:19:38 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:19:38 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:19:47 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:19:47 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:19:49 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:19:49 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:23:55 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:23:56 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:23:56 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:23:56 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:24:05 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:24:05 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:24:07 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:24:07 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:30:47 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:30:47 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:30:47 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:30:47 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:30:55 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:30:55 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:30:57 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:30:57 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:31:23 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:31:23 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:31:23 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:31:23 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:31:29 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:31:29 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:31:32 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:31:32 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:34:19 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:34:19 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:34:19 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:34:19 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:37:34 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:37:34 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:37:38 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:37:38 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:38:34 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:38:34 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:38:34 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:38:34 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:38:42 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:38:42 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:38:44 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:38:44 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:40:35 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:40:35 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:40:35 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:40:35 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:41:05 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:41:05 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:41:08 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:41:08 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:44:07 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:44:07 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:44:07 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:44:07 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:44:13 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:44:13 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:44:15 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:44:15 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:44:49 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:44:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:44:49 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:44:49 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:44:56 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:44:56 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:44:58 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:44:58 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:46:15 CEST 2017 - Server starting ...
LOGGER (Server): Mon Jun 26 15:46:15 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Mon Jun 26 15:46:15 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Mon Jun 26 15:46:15 CEST 2017 - Server started
LOGGER (Server): Mon Jun 26 15:46:21 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Mon Jun 26 15:46:21 CEST 2017 - Login successfull
LOGGER (Server): Mon Jun 26 15:46:24 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Mon Jun 26 15:46:24 CEST 2017 - Login successfull