A pretty basic implementation of the famous game BlackJack, written in JAVA using native Swing components, SQLite as the internal database, MigLayout as the layout manager and Flatlaf as a third-party look-and-feel provider.
You can either clone this repository and setup a workspace in your IDE or simply download the latest jar file in our releases folder.
To create a new player and start playing, just type an username and a checkbox will appear as soon as you start setting your password. Then tick the checkbox to create it and click Login.
If the checkbox does not come out, it means the username you picked already exists in the database, so pick another one.
If you are a JAVA GUI application & Docker master, feel free to try to help me fix the problem below which is preventing us from having a pretty cool and functioning Docker image of the game.
Once you have Docker CE installed an running, from your Linux terminal or Windows cmd, type:
$> docker pull jrkrauss/blackjack:latest$> docker run -it -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY jrkrauss/blackjack:latestP.S: This is the problem I mentioned before. The container execution exits with the error below:
No protocol specified
Exception in thread "main" java.awt.AWTError: Can't connect to X11 window server using ':0' as the value of the DISPLAY variable.
at java.desktop/sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
at java.desktop/sun.awt.X11GraphicsEnvironment$1.run(X11GraphicsEnvironment.java:99)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:312)
at java.desktop/sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:58)
at java.desktop/sun.awt.PlatformGraphicsInfo.createGE(PlatformGraphicsInfo.java:36)
at java.desktop/java.awt.GraphicsEnvironment$LocalGE.createGE(GraphicsEnvironment.java:93)
at java.desktop/java.awt.GraphicsEnvironment$LocalGE.<clinit>(GraphicsEnvironment.java:84)
at java.desktop/java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:106)
at java.desktop/sun.awt.X11.XToolkit.<clinit>(XToolkit.java:232)
at java.desktop/sun.awt.PlatformGraphicsInfo.createToolkit(PlatformGraphicsInfo.java:40)
at java.desktop/java.awt.Toolkit.getDefaultToolkit(Toolkit.java:592)
at java.desktop/java.awt.Toolkit.getEventQueue(Toolkit.java:1483)
at java.desktop/java.awt.EventQueue.invokeLater(EventQueue.java:1312)
at java.desktop/javax.swing.SwingUtilities.invokeLater(SwingUtilities.java:1421)
at com.eca.assignment.main.Main.main(Main.java:11)
