From 9283e1eb66d6ff96b02f317e28cb6ff060953cdf Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Tue, 29 Oct 2024 20:01:27 +0100 Subject: WIP load XML --- backend/Location.cpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 backend/Location.cpp (limited to 'backend/Location.cpp') diff --git a/backend/Location.cpp b/backend/Location.cpp new file mode 100644 index 0000000..8a79af5 --- /dev/null +++ b/backend/Location.cpp @@ -0,0 +1,38 @@ +#include + +#include "Location.h" +#include "util.h" + +Location::Location(const char * name, const char * description) { + this->set_name(name); + this->set_description(description); +} + +Location::~Location() { + safe_free(this->name); + safe_free(this->description); +} + +void Location::set_name(const char * name) { + safe_free(this->name); + this->name = strdup(name); +} +const char * Location::get_name() { + return this->name; +} + +void Location::set_description(const char * description) { + safe_free(this->description); + this->description = strdup(description); +} +const char * Location::get_description() { + return this->description; +} + +void Location::set_exit(Direction dir, Location * location) { + this->edges[dir] = location; +} +Location * Location::get_exit(Direction dir) { + return this->edges[dir]; +} + -- cgit v1.2.3