diff --git a/bin/com/tofvesson/api/Callback$1.class b/bin/com/tofvesson/api/Callback$1.class new file mode 100644 index 0000000..bb42882 Binary files /dev/null and b/bin/com/tofvesson/api/Callback$1.class differ diff --git a/bin/com/tofvesson/api/Callback.class b/bin/com/tofvesson/api/Callback.class new file mode 100644 index 0000000..97bf0e5 Binary files /dev/null and b/bin/com/tofvesson/api/Callback.class differ diff --git a/bin/com/tofvesson/api/Coordinate.class b/bin/com/tofvesson/api/Coordinate.class new file mode 100644 index 0000000..32f95a8 Binary files /dev/null and b/bin/com/tofvesson/api/Coordinate.class differ diff --git a/bin/com/tofvesson/api/ICallback.class b/bin/com/tofvesson/api/ICallback.class new file mode 100644 index 0000000..9f3aabd Binary files /dev/null and b/bin/com/tofvesson/api/ICallback.class differ diff --git a/bin/com/tofvesson/api/ICoordinate.class b/bin/com/tofvesson/api/ICoordinate.class new file mode 100644 index 0000000..314eda2 Binary files /dev/null and b/bin/com/tofvesson/api/ICoordinate.class differ diff --git a/bin/com/tofvesson/api/IGridPosition.class b/bin/com/tofvesson/api/IGridPosition.class new file mode 100644 index 0000000..0381cdd Binary files /dev/null and b/bin/com/tofvesson/api/IGridPosition.class differ diff --git a/bin/com/tofvesson/api/IMap.class b/bin/com/tofvesson/api/IMap.class new file mode 100644 index 0000000..c753408 Binary files /dev/null and b/bin/com/tofvesson/api/IMap.class differ diff --git a/bin/com/tofvesson/api/IRevealable.class b/bin/com/tofvesson/api/IRevealable.class new file mode 100644 index 0000000..411f09c Binary files /dev/null and b/bin/com/tofvesson/api/IRevealable.class differ diff --git a/bin/com/tofvesson/api/IServerService.class b/bin/com/tofvesson/api/IServerService.class new file mode 100644 index 0000000..34b98f2 Binary files /dev/null and b/bin/com/tofvesson/api/IServerService.class differ diff --git a/bin/com/tofvesson/api/Revealable.class b/bin/com/tofvesson/api/Revealable.class new file mode 100644 index 0000000..f7e5d54 Binary files /dev/null and b/bin/com/tofvesson/api/Revealable.class differ diff --git a/bin/com/tofvesson/api/Type.class b/bin/com/tofvesson/api/Type.class new file mode 100644 index 0000000..385c79c Binary files /dev/null and b/bin/com/tofvesson/api/Type.class differ diff --git a/bin/com/tofvesson/base/Map.class b/bin/com/tofvesson/base/Map.class new file mode 100644 index 0000000..37ad1ce Binary files /dev/null and b/bin/com/tofvesson/base/Map.class differ diff --git a/bin/com/tofvesson/base/Position.class b/bin/com/tofvesson/base/Position.class new file mode 100644 index 0000000..7e8ef94 Binary files /dev/null and b/bin/com/tofvesson/base/Position.class differ diff --git a/bin/com/tofvesson/base/Server$1.class b/bin/com/tofvesson/base/Server$1.class new file mode 100644 index 0000000..48b6e2a Binary files /dev/null and b/bin/com/tofvesson/base/Server$1.class differ diff --git a/bin/com/tofvesson/base/Server.class b/bin/com/tofvesson/base/Server.class new file mode 100644 index 0000000..72781e9 Binary files /dev/null and b/bin/com/tofvesson/base/Server.class differ diff --git a/src/com/tofvesson/api/Callback.java b/src/com/tofvesson/api/Callback.java new file mode 100644 index 0000000..05c8056 --- /dev/null +++ b/src/com/tofvesson/api/Callback.java @@ -0,0 +1,24 @@ +package com.tofvesson.api; + +public class Callback implements ICallback{ + Runnable r; + int id; + boolean trig=false; + public Callback(Runnable r){this.r=(r!=null)?r:new Runnable(){@Override public void run(){}};} + public Callback(){this(null);} + @Override + public void setCallback(int id){ + this.id=id; + trig=true; + r.run(); + } + @Override + public int getCallback() { + return id; + } + @Override + public boolean hasCallback() { + return trig; + } + +} diff --git a/src/com/tofvesson/api/Coordinate.java b/src/com/tofvesson/api/Coordinate.java new file mode 100644 index 0000000..9322f08 --- /dev/null +++ b/src/com/tofvesson/api/Coordinate.java @@ -0,0 +1,19 @@ +package com.tofvesson.api; + +public class Coordinate implements ICoordinate{ + private int x; + private int y; + + public Coordinate(int x, int y){setX(x); setY(y);} + public Coordinate(){this(0, 0);} + + @Override + public int getX() {return x;} + @Override + public int getY() {return y;} + @Override + public void setX(int x) {this.x=x;} + @Override + public void setY(int y) {this.y=y;} + +} diff --git a/src/com/tofvesson/api/ICallback.java b/src/com/tofvesson/api/ICallback.java new file mode 100644 index 0000000..6f68187 --- /dev/null +++ b/src/com/tofvesson/api/ICallback.java @@ -0,0 +1,7 @@ +package com.tofvesson.api; + +public interface ICallback { + public abstract void setCallback(int id); + public abstract int getCallback(); + public abstract boolean hasCallback(); +} diff --git a/src/com/tofvesson/api/ICoordinate.java b/src/com/tofvesson/api/ICoordinate.java new file mode 100644 index 0000000..8dc44a1 --- /dev/null +++ b/src/com/tofvesson/api/ICoordinate.java @@ -0,0 +1,16 @@ +package com.tofvesson.api; + +public interface ICoordinate { + public abstract int getX(); + public abstract int getY(); + public abstract void setX(int x); + public abstract void setY(int y); + public default void setCoordinate(ICoordinate c){ + setX(c.getX()); + setY(c.getY()); + } + public default void setCoordinate(int x, int y){ + setX(x); + setY(y); + } +} diff --git a/src/com/tofvesson/api/IGridPosition.java b/src/com/tofvesson/api/IGridPosition.java new file mode 100644 index 0000000..be07be6 --- /dev/null +++ b/src/com/tofvesson/api/IGridPosition.java @@ -0,0 +1,50 @@ +package com.tofvesson.api; + +import java.util.ArrayList; +import java.util.List; + +public interface IGridPosition { + public abstract Type getType(); + public default IGridPosition[] getAdjacentOfType(Type type){ + List i = new ArrayList<>(); + int[] posMin=getPosMin(); + int[] posMax=getPosMax(); + for(int x=posMin[0]; x i = new ArrayList<>(); + int[] posMin=getPosMin(); + int[] posMax=getPosMax(); + for(int x=posMin[0]; x getClientList(); + public abstract boolean isClientAuthenticated(int id); + abstract void handleNewClient(Socket s); + abstract void updateTasklist(); + abstract void onNewDataListener(); + abstract void handleNewData(); + abstract void challengeAuth(Socket s); + public abstract ICallback start(Runnable onFinish); + public abstract void stop(); + public abstract IMap getMap(); + public abstract void loadSubMap(Socket s, ICoordinate start, ICoordinate end); +} diff --git a/src/com/tofvesson/api/Revealable.java b/src/com/tofvesson/api/Revealable.java new file mode 100644 index 0000000..b04f170 --- /dev/null +++ b/src/com/tofvesson/api/Revealable.java @@ -0,0 +1,45 @@ +package com.tofvesson.api; + +public class Revealable implements IRevealable{ + + IGridPosition[] expandList; + IGridPosition[] NExpandList; + + public Revealable(){ + expandList=new IGridPosition[0]; + NExpandList=new IGridPosition[0]; + } + + @Override + public IGridPosition[] getExpandList() { + return expandList; + } + + @Override + public IGridPosition[] getNExpandList() { + return NExpandList; + } + + @Override + public void addToExpandList(IGridPosition[] i) { + IGridPosition[] tmp = expandList; + expandList = new IGridPosition[expandList.length+i.length]; + int i1=0; + for(IGridPosition i2 : tmp) + expandList[i1++]=i2; + for(IGridPosition i2 : i) + expandList[i1++]=i2; + } + + @Override + public void addToNExpandList(IGridPosition[] i) { + IGridPosition[] tmp = NExpandList; + NExpandList = new IGridPosition[NExpandList.length+i.length]; + int i1=0; + for(IGridPosition i2 : tmp) + NExpandList[i1++]=i2; + for(IGridPosition i2 : i) + NExpandList[i1++]=i2; + } + +} diff --git a/src/com/tofvesson/api/Type.java b/src/com/tofvesson/api/Type.java new file mode 100644 index 0000000..2f2b796 --- /dev/null +++ b/src/com/tofvesson/api/Type.java @@ -0,0 +1,5 @@ +package com.tofvesson.api; + +public enum Type { + Mine, MineFlagged, Flagged, Unknown, Open +} diff --git a/src/com/tofvesson/base/Map.java b/src/com/tofvesson/base/Map.java new file mode 100644 index 0000000..a6e4b7f --- /dev/null +++ b/src/com/tofvesson/base/Map.java @@ -0,0 +1,57 @@ +package com.tofvesson.base; + +import com.tofvesson.api.ICoordinate; +import com.tofvesson.api.IGridPosition; +import com.tofvesson.api.IMap; + +public class Map implements IMap{ + + ICoordinate size; + double genRatio; + IGridPosition[][] map; + + public Map(ICoordinate size){} + + @Override + public void generate() { + + } + + @Override + public IGridPosition[] getMap() { + return null; + } + + @Override + public ICoordinate getSize() { + return null; + } + + @Override + public IGridPosition getPosition(ICoordinate coord) { + return null; + } + + @Override + public IGridPosition getPosition(int x, int y) { + return null; + } + + @Override + public IGridPosition[][] getSubMap(ICoordinate coord1, ICoordinate coord2) { + return null; + } + + @Override + public IGridPosition[][] getSubMap(int x1, int y1, int x2, int y2) { + + return null; + } + + @Override + public boolean reveal(int x, int y) { + + return false; + } + +} diff --git a/src/com/tofvesson/base/Position.java b/src/com/tofvesson/base/Position.java new file mode 100644 index 0000000..391e2fb --- /dev/null +++ b/src/com/tofvesson/base/Position.java @@ -0,0 +1,69 @@ +package com.tofvesson.base; + +import com.tofvesson.api.Coordinate; +import com.tofvesson.api.ICoordinate; +import com.tofvesson.api.IGridPosition; +import com.tofvesson.api.IMap; +import com.tofvesson.api.IRevealable; +import com.tofvesson.api.Revealable; +import com.tofvesson.api.Type; + +public class Position implements IGridPosition { + + Type type=Type.Unknown; + ICoordinate pos=new Coordinate(); + final IMap map; + int adjacentMines; + + public Position(ICoordinate pos, IMap map){this.pos=pos; this.map=map;} + public Position(int x, int y, IMap map){this.pos=new Coordinate(x, y); this.map=map;} + + @Override + public Type getType() {return this.type;} + + @Override + public void overrideType(Type type) {this.type=type;} + + @Override + public Type flag() { + if(type==Type.Flagged) + type=Type.Unknown; + else if(type==Type.MineFlagged) + type=Type.Mine; + else if(type==Type.Unknown) + type=Type.Flagged; + else if(type==Type.Mine) + type=Type.MineFlagged; + return type; + } + + @Override + public IRevealable reveal(ICoordinate[] ignore) { + if(type==Type.Mine||type==Type.MineFlagged) + return null; + Revealable r = new Revealable(); + r.addToExpandList(getAdjacentOfValue(0)); + for(int i=1; i<9; ++i) + r.addToNExpandList(getAdjacentOfValue(i)); + return r; + } + + @Override + public IGridPosition setPos(int x, int y) { + pos = new Coordinate(x, y); + return this; + } + @Override + public ICoordinate getPos() {return pos;} + @Override + public IMap getMap() {return map;} + @Override + public int getValue() { + return adjacentMines; + } + @Override + public void calculateAdjacentMines() { + adjacentMines=getAdjacentOfType(Type.Mine).length+getAdjacentOfType(Type.MineFlagged).length; + } + +} diff --git a/src/com/tofvesson/base/Server.java b/src/com/tofvesson/base/Server.java new file mode 100644 index 0000000..6f34bf8 --- /dev/null +++ b/src/com/tofvesson/base/Server.java @@ -0,0 +1,133 @@ +package com.tofvesson.base; + +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.io.PrintWriter; +import java.net.Socket; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import com.tofvesson.api.Callback; +import com.tofvesson.api.ICallback; +import com.tofvesson.api.ICoordinate; +import com.tofvesson.api.IMap; +import com.tofvesson.api.IServerService; + +public class Server implements IServerService{ + + public boolean economicMode=false; + private int eco=0; + Thread clientListener; + Map clients; + List tasklist; + Map auth; + Callback onFinished; + boolean active=false; + final int port; + final Runnable r = new Runnable(){ + @Override + public void run() { + try{ + while(active){ + for(Socket s : clients.values()) + if(new BufferedReader(new InputStreamReader(s.getInputStream())).ready()) ; + } + }catch(Exception e){ + active=false; + onFinished.setCallback(ID_CRASH); + } + } + }; + + public Server(int port){this.port=port; active=true;} + public Server(){this(DEFAULT_PORT);} + + @Override + public void run() { + clientListener = new Thread(r); + clients = new HashMap<>(); + tasklist = new ArrayList<>(); + auth = new HashMap<>(); + } + + @Override + public String[] getTasklist() { + return (String[]) tasklist.toArray(); + } + + @Override + public Map getClientList() { + return clients; + } + + @Override + public boolean isClientAuthenticated(int id) { + return auth.get((Integer)id); + } + + @Override + public void handleNewClient(Socket s) { + updateClientList(s, false); + try{ + new PrintWriter(s.getOutputStream()).println(SRV_AUTH_CHAL); + }catch(Exception e){e.printStackTrace();} + } + + @Override + public void updateTasklist() { + + } + + @Override + public void onNewDataListener() { + + } + + @Override + public void handleNewData() { + + } + + @Override + public void challengeAuth(Socket s) { + + } + @Override + public ICallback start(Runnable onFinish) { + return onFinished = new Callback(onFinish); + } + @Override + public void stop() { + if(clientListener.isAlive()) active=false; + try{ + for(Socket s : clients.values()) + if(!s.isClosed()) + new PrintWriter(s.getOutputStream()).println(SRV_GLOBAL_STOP); + }catch(Exception e){e.printStackTrace();} + } + @Override + public IMap getMap() { + // TODO Auto-generated method stub + return null; + } + @Override + public void loadSubMap(Socket s, ICoordinate start, ICoordinate end) { + // TODO Auto-generated method stub + + } + + private void updateClientList(Socket newClient, boolean overrideEco){ + if(!economicMode || (economicMode && eco==4) || overrideEco){ + Map cli = new HashMap<>(); + int i=0; + for(Socket s : clients.values()) + if(!s.isClosed()) + cli.put(i++, s); + clients=cli; + } + clients.put(clients.size(), newClient); + if(economicMode) eco=(eco+1)%5; + } + +}