First steps
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package pp.mdga.client;
|
||||
|
||||
public class ActionSynchronizer {
|
||||
|
||||
}
|
||||
|
||||
@@ -8,4 +8,16 @@ public class Animation {
|
||||
Animation(MdgaApp app_) {
|
||||
app = app_;
|
||||
}
|
||||
|
||||
void play() {
|
||||
|
||||
}
|
||||
|
||||
void update(float tpf) {
|
||||
|
||||
}
|
||||
|
||||
boolean isFinished() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
package pp.mdga.client.Animation;
|
||||
|
||||
public class AnimationHandler {
|
||||
import pp.mdga.client.MdgaApp;
|
||||
|
||||
public class AnimationHandler {
|
||||
private MdgaApp app;
|
||||
|
||||
public AnimationHandler(MdgaApp app_) {
|
||||
app = app_;
|
||||
}
|
||||
|
||||
public void playAnimation() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
package pp.mdga.client.Board;
|
||||
|
||||
public class BoardView {
|
||||
import com.jme3.math.Vector3f;
|
||||
|
||||
public class BoardView {
|
||||
private static final float GRID_SIZE = 10.0f;
|
||||
private static final float GRID_LEVEL = 0.0f;
|
||||
|
||||
private static Vector3f gridToWorld(int x, int y) {
|
||||
assert(x >= 0);
|
||||
assert(y >= 0);
|
||||
|
||||
return new Vector3f(GRID_SIZE * x, GRID_LEVEL, GRID_SIZE * y);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
package pp.mdga.client;
|
||||
|
||||
import com.jme3.app.SimpleApplication;
|
||||
import com.jme3.renderer.RenderManager;
|
||||
import pp.mdga.client.Animation.AnimationHandler;
|
||||
|
||||
public class MdgaApp extends SimpleApplication {
|
||||
private AnimationHandler animationHandler;
|
||||
|
||||
public static void main(String[] args) {
|
||||
MdgaApp app = new MdgaApp();
|
||||
app.start();
|
||||
@@ -10,6 +14,16 @@ public static void main(String[] args) {
|
||||
|
||||
@Override
|
||||
public void simpleInitApp() {
|
||||
animationHandler = new AnimationHandler(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void simpleUpdate(float tpf) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void simpleRender(RenderManager rm) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user