forked from AY1920S1-CS2113T-F14-2/main
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package farmio; | ||
|
||
import frontend.Simulation; | ||
import frontend.Ui; | ||
import frontend.UiManager; | ||
import exceptions.FarmioException; | ||
import exceptions.FarmioFatalException; | ||
|
||
public class Logic { | ||
|
||
public static void execute(Farmio.Stage stage, Farmio farmio) throws FarmioFatalException { | ||
try { | ||
String userInput = ""; | ||
if (Farmio.Stage.reqInput.contains(stage)) { | ||
userInput = farmio.getUi().getInput(); | ||
} | ||
Parser.parse(userInput, stage).execute(farmio); | ||
} catch (FarmioException | FarmioFatalException e) { | ||
farmio.getSimulation().simulate(); | ||
farmio.getUi().showWarning(e.getMessage()); | ||
} | ||
} | ||
} |