diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 21:30:38 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 21:30:38 +0100 |
commit | a04cb74fee079e3ee43ae5fae32fc2674409822c (patch) | |
tree | 403e681a768ee68b54569e93d98e741878cd7975 /frontend/cmd/query.cpp | |
parent | 9283e1eb66d6ff96b02f317e28cb6ff060953cdf (diff) |
implement movement
Diffstat (limited to 'frontend/cmd/query.cpp')
-rw-r--r-- | frontend/cmd/query.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/frontend/cmd/query.cpp b/frontend/cmd/query.cpp index 48cbb55..367d6cd 100644 --- a/frontend/cmd/query.cpp +++ b/frontend/cmd/query.cpp @@ -1,6 +1,35 @@ +#include "backend/Location.h" + #include "../Player.h" +#include "../print.h" + +using namespace std; + +static const unordered_map<Direction, string> direction_map = { + { Direction::NORTH, "Noord" }, + { Direction::EAST, "Oost" }, + { Direction::SOUTH, "Zuid" }, + { Direction::WEST, "West" }, +}; FollowupAction Player::cmd_query(Argv argv) { + lprtf("Je staat bij de locatie %s.\n", this->location.get_name()); + lprtf("%s\n", this->location.get_description()); + + // TODO: visible objects + + lprtf("Uitgangen: "); + bool first = true; + for (Direction direction : DIRECTIONS) { + if (this->location.get_exit(direction) == nullptr) continue; + if (!first) lprtf(", "); + lprtf("%s", direction_map.at(direction).c_str()); + first = false; + } + lprtf("\n"); + + // TODO: enemies + return FollowupAction::NONE; } |