-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ololx/develop
Add split server into internal and dedicated services for running the game multiplayer
- Loading branch information
Showing
28 changed files
with
467 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.plain.old.retro.shooter; | ||
|
||
import org.plain.old.retro.shooter.multi.Server; | ||
|
||
/** | ||
* @project plain-old-retro-shooter | ||
* @created 14.08.2020 14:28 | ||
* <p> | ||
* @author Alexander A. Kropotin | ||
*/ | ||
public class DedicatedServer { | ||
|
||
public static void main(String args[]) { | ||
|
||
if (args.length > 0) { | ||
Server server = new Server(Integer.valueOf(args[0])); | ||
server.start(); | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
src/org/plain/old/retro/shooter/calculus/linear/Matrix.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ld/retro/shooter/calculus/SimpleMath.java → ...o/shooter/engine/calculus/SimpleMath.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/org/plain/old/retro/shooter/engine/calculus/linear/Matrix.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.plain.old.retro.shooter.engine.calculus.linear; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @project plain-old-retro-shooter | ||
* @created 23.07.2020 09:51 | ||
* <p> | ||
* @author Alexander A. Kropotin | ||
*/ | ||
public interface Matrix extends Serializable { | ||
} |
2 changes: 1 addition & 1 deletion
2
...tro/shooter/calculus/linear/Matrix2d.java → ...oter/engine/calculus/linear/Matrix2d.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ter/calculus/linear/RotationMatrix2d.java → ...ine/calculus/linear/RotationMatrix2d.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.