diff options
Diffstat (limited to 'frontend/cmd/go.cpp')
-rw-r--r-- | frontend/cmd/go.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/cmd/go.cpp b/frontend/cmd/go.cpp index 2aaec08..cbe8e7c 100644 --- a/frontend/cmd/go.cpp +++ b/frontend/cmd/go.cpp @@ -1,6 +1,31 @@ +#include "backend/Location.h" + #include "../Player.h" +#include "../print.h" + +using namespace std; + +static const unordered_map<string, Direction> direction_map = { + { "noord", Direction::NORTH }, + { "oost", Direction::EAST }, + { "zuid", Direction::SOUTH }, + { "west", Direction::WEST }, +}; FollowupAction Player::cmd_go(Argv argv) { + if (argv.size() == 0 || !direction_map.contains(argv[0])) { + lprtf("Fout, gebruik: Ga <noord|zuid|oost|west>\n"); + return FollowupAction::NONE; + } + + Direction direction = direction_map.at(argv[0]); + Location * next_location = this->location.get_exit(direction); + if (next_location == nullptr) { + lprtf("Er is geen uitgang in deze richting!\n"); + return FollowupAction::NONE; + } + + this->location = *next_location; return FollowupAction::UPDATE; } |