GEMP-SWCCG - server/client for playing Star Wars CCG using a web browser. The program takes care of the rules so you don't have to.
Dockerfileis the container configuration for gemp.- The environment variables that configure gemp are set to some default values in the Dockerfile.
- The container is based on Ubuntu Focal for compatibility with development environments.
- The container uses OpenJDK 11. Newer versions of OpenJDK, such as OpenJDK 18, have compatibility issues with gemp.
- Both
test-log4j.xmlandprod-log4j.xmlare copied in to the container so it can be used in either a test or production context. - Both test and prod log4j files configure logs to go to
/logs. - gemp replays are written to
/opt/gemp-swccg/replay. The container filesystem is ephemeral and will not persist the contents across runs.
db.Dockerfileis the container configuration for MariaDB when used as a backend database in the development/test context.- The Dockerfile copies
./database_script.sqland./initial_user_setup.sqlin to the container to populate the database in a development/test context. - Do NOT use this container to operate a production workload.
- The database name must be
gemp-swccgto maintain compatibility withdatabase_script.sql.
- The Dockerfile copies
docker-compose.ymlcan be used, instead of the utility scripts below, to create a development/test environment.- Docker compose will build the container images.
- Before bringing up the test environment using
docker-compose, compile gemp.
mvn clean install
docker-compose updocker_build.shwill compile gemp and create the relevant container image(s).docker_run_db.shwill run the backend database in a development, or test, context.docker_run_app.shwill run the gemp server in a development, or test, context.docker_purge.shwill delete old stopped containers and images.
- After starting the server, point your browser of choice to: http://0.0.0.0:8080/gemp-swccg/
Vagrant is a tool for automating the creation of virtual machines. This allows us to mimic the server environment more closely and have a single set of commands to run the program, regardless of what OS is used for development. Your dev machine can be used to code and compile in whatever IDE you like. The code is automatically shared with the VM, which is used to run it. The virtual machine is also capable of compiling the source using maven.
Install vagrant (https://www.vagrantup.com/downloads.html) and virtualbox (https://www.virtualbox.org/wiki/Downloads) for your OS.
From the command line run:
vagrant plugin install vagrant-vbguestThis plugin keeps the host and guest OS in sync and allows directories to be seamlessly shared.
The following command will spin up the virtual machine, install all dependencies needed for running and compiling GEMP, and create the database if it does not already exist. From the gemp-swccg repository root directory, run the following command:
vagrant upLog into the VM by using the following command from the repository root:
vagrant sshThe VM can use pre-compiled .jar and .zip files if they are located in the gemp-swccg-async/target/ directory. However, you can also compile on the VM directly.
After running vagrant ssh, run the following command ON THE VM:
mvn clean install
From the SSH login direcory on the VM (/vagrant) run:
./run-gemp.shYou can now access GEMP by visiting http://192.168.60.94:8080/gemp-swccg/ in your browser.
The bootstrap script automatically creates 2 test admin accounts, test1 and test2, with the password "test". It also creates the Librarian user with the password "test" and loads several sample decks. When the server first starts, it is in non-operational standby mode which does not allow games to be started. To enable operational mode, when logged in visit http://192.168.60.94:8080/gemp-swccg/admin.html in your browser and click the "Startup" link.
vagrant halt: Hard shutdown of the VMvagrant suspend: Soft shutdown of the VM (this is faster)vagrant destroy: Remove VM from your system
- The formats are defined in:
gemp-swccg-server/src/main/resources/swccgFormats.jsongemp-swccg-async/src/main/web/js/gemp-016/cardFilter.jsgemp-swccg-async/src/main/web/leagueAdmin.html
- The
cardFilder.jsandleagueAdmin.htmlfiles are just admin pages, so the lists there are used for interacting with the content inswccgFormats.json. swccgFormats.jsoncontains a list of formats in the order they will appear within the gemp system.- The first entry within the list will be the default format used by gemp.
- The The display name ("name" field) is used within the database. Once a single game has been played for a format, the name can not be changed without manually updating the database.
- The format of the json records is not unmarshaled is a static typed way, so you can optionally add "comment" fields.
- Formats, once used, should never be deleted from
swccgFormats.json. - Disable a format by setting the
"hall":falsefield:
{
"name":"Dream Cards",
"code":"dream_cards",
"set":[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"hall":false
},- Tenets are the guidelines behind the format.
- The tenet guides any person to be able to update the format with consistency.
- Tenets are sometimes displayed to suplement the list of format settings available in Gemp and provide additional
{
"comment": "use utinni_maker.py to update the Utinni format. Do not update manually.",
"name":"Utinni! (Jawas Only)",
"code":"utinni",
"setComment": "All sets are always valid",
"set":[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"bannedComment": "generate the list of banned cards with utinni_maker.py",
"bannedIconsComment": "get reference list of icons from gemp-swccg-common/src/main/java/com/gempukku/swccgo/common/Icon.java",
"bannedIcons":[
"DARK_JEDI_MASTER",
"FIRST_ORDER",
"JEDI_MASTER",
"SITH",
"PERMANENT_WEAPON",
"SIDIOUS",
"SKYWALKER"
],
"tenetsLink": "https://www.starwarsccg.org/utinni/"
}- The
defaultGameTimerMinutesfield can be used to customize the time per game on a format.
{
"name":"Open (100 cards)",
"code":"open_100_card",
"set":[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"deckSize":100,
"defaultGameTimerMinutes":90,
"tenetsLink": "https://www.starwarsccg.org/100card/"
},- Get the list of icons from
gemp-swccg-common/src/main/java/com/gempukku/swccgo/common/Icon.java - Use the
bannedIconsitem:
"bannedIcons":[
"DARK_JEDI_MASTER",
"FIRST_ORDER",
"JEDI_MASTER",
"SITH",
"PERMANENT_WEAPON",
"SIDIOUS",
"SKYWALKER"
],