Merge development

This commit is contained in:
Felix
2024-11-19 18:40:08 +01:00
141 changed files with 1497 additions and 113 deletions

View File

@@ -1,4 +0,0 @@
package pp.mdga.client.Animation;
public enum MdgaAnimation {
}

View File

@@ -1,5 +0,0 @@
package pp.mdga.client.Board;
class PileControl {
}

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
import com.jme3.system.NanoTimer;
import pp.mdga.client.MdgaApp;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
import com.jme3.audio.AudioData;
import com.jme3.audio.AudioNode;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
import com.jme3.audio.AudioData;
import com.jme3.audio.AudioNode;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
/**
* Enum representing the various sound effects used in the game.

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
/**
* Enum representing various music assets used in the game.

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
/**
* Enum representing various sound assets used in the game.

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Acoustic;
package pp.mdga.client.acoustic;
/**
* A record that encapsulates a sound asset along with its playback settings:

View File

@@ -1,6 +1,7 @@
package pp.mdga.client.Animation;
package pp.mdga.client.animation;
abstract class Animation {
abstract void play();
abstract void stop();

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Animation;
package pp.mdga.client.animation;
import pp.mdga.client.MdgaApp;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Animation;
package pp.mdga.client.animation;
class EmptyAnimation extends Animation {
@Override

View File

@@ -0,0 +1,4 @@
package pp.mdga.client.animation;
public enum MdgaAnimation {
}

View File

@@ -1,3 +1,3 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
record AssetOnMap(BoardAsset asset, int x, int y, float rot) {}

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
enum BoardAsset {
bigTent,

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
import com.jme3.light.AmbientLight;
import com.jme3.light.DirectionalLight;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
import java.io.BufferedReader;
import java.io.IOException;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
import com.jme3.renderer.RenderManager;
import com.jme3.renderer.ViewPort;

View File

@@ -1,4 +1,4 @@
package pp.mdga.client.Board;
package pp.mdga.client.board;
import com.jme3.renderer.RenderManager;
import com.jme3.renderer.ViewPort;

View File

@@ -0,0 +1,5 @@
package pp.mdga.client.board;
class PileControl {
}

View File

@@ -0,0 +1,5 @@
package pp.mdga.client.dialog;
public class Dialog {
}

View File

@@ -0,0 +1,5 @@
package pp.mdga.client.dialog;
public class MenuDialog {
}

View File

@@ -0,0 +1,5 @@
package pp.mdga.client.dialog;
public class NetworkDialog {
}

View File

@@ -0,0 +1,5 @@
package pp.mdga.client.gui;
public class GuiView {
}