You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently the editor(view/ctrl etc) and the game(view/ctrl) is hard merged together. Because there are some things they are used together. Thats good for DRY (https://de.wikipedia.org/wiki/Don%E2%80%99t_repeat_yourself ) but bad if the user wants only playing or only starting the editor.
The GameMultiplayerAlien.java is a example only for starting a Game (without the Editor), it working but there is exception:
WARNUNG: class [controller.editor.EditorGUIController] could not be instantiated (java.lang.InstantiationException: controller.editor.EditorGUIController) Jun 24, 2015 8:13:20 PM de.lessvoid.nifty.screen.Screen <init> WARNUNG: Missing ScreenController for screen [editor] using DefaultScreenController() instead but this might not be what you want.
If we split this, there investigate why there is a package model.editor ? normally models/domains a for persistence. But inside this package there a classes like AtlasTool, Pencil or ToolManager. These classes are not saving/loading. So we need a refactoring here.
The text was updated successfully, but these errors were encountered:
currently the editor(view/ctrl etc) and the game(view/ctrl) is hard merged together. Because there are some things they are used together. Thats good for DRY (https://de.wikipedia.org/wiki/Don%E2%80%99t_repeat_yourself ) but bad if the user wants only playing or only starting the editor.
The GameMultiplayerAlien.java is a example only for starting a Game (without the Editor), it working but there is exception:
WARNUNG: class [controller.editor.EditorGUIController] could not be instantiated (java.lang.InstantiationException: controller.editor.EditorGUIController) Jun 24, 2015 8:13:20 PM de.lessvoid.nifty.screen.Screen <init> WARNUNG: Missing ScreenController for screen [editor] using DefaultScreenController() instead but this might not be what you want.
If we split this, there investigate why there is a package model.editor ? normally models/domains a for persistence. But inside this package there a classes like AtlasTool, Pencil or ToolManager. These classes are not saving/loading. So we need a refactoring here.
The text was updated successfully, but these errors were encountered: