X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Floader%2FTypeDescription.cpp;h=27906fab758b486c247edcc0d86be6b6d03f2591;hb=978ccdf2644bc445c864dbe581ead365b238cff8;hp=07be7b29f165dd091e36d78e292851377546c858;hpb=ac3755adc509404528ef7de58695bf8e3bfb7dcd;p=l2e.git diff --git a/src/loader/TypeDescription.cpp b/src/loader/TypeDescription.cpp index 07be7b2..27906fa 100644 --- a/src/loader/TypeDescription.cpp +++ b/src/loader/TypeDescription.cpp @@ -7,9 +7,13 @@ #include "TypeDescription.h" +#include #include +#include +#include #include +using std::endl; using std::map; using std::string; using std::vector; @@ -37,6 +41,20 @@ const FieldDescription &TypeDescription::GetField(const std::string &n) const { } } +void TypeDescription::Construct(void *data) const { + if (constructor) { + (*constructor)(data); + } else { + std::memset(data, 0, Size()); + } +} + +void TypeDescription::Load(void *data) const { + if (loader) { + (*loader)(data); + } +} + void TypeDescription::AddSupertype(int id, std::ptrdiff_t offset) { supertypes[id] = offset; @@ -78,4 +96,52 @@ const TypeDescription &TypeDescription::Get(int id) { return typeDescriptions[id]; } + +void TypeDescription::WriteSourceWiki(std::ostream &out) { + vector types; + for (vector::const_iterator i(typeDescriptions.begin()), end(typeDescriptions.end()); i != end; ++i) { + if (i->name != "Animation") { + types.push_back(i->name); + } + } + std::sort(types.begin(), types.end()); + + out << "h2. Data types" << endl << endl; + + for (vector::const_iterator i(types.begin()), end(types.end()); i != end; ++i) { + out << "* [[LoaderSource#" << *i << "|" << *i << "]]" << endl; + } + out << endl << endl; + + for (vector::const_iterator i(types.begin()), end(types.end()); i != end; ++i) { + const TypeDescription &td(Get(GetTypeId(*i))); + out << "h3. " << td.TypeName() << endl << endl; + + if (td.Description()) { + out << td.Description() << endl << endl; + } + + if (td.FieldsBegin() == td.FieldsEnd()) { + out << "No properties." << endl << endl; + } else { + out << "| *Property* | *Type* | *Description* |" << endl; + for (FieldIterator field(td.FieldsBegin()); field != td.FieldsEnd(); ++field) { + const FieldDescription &fd(field->second); + out << "| " << field->first << " | "; + if (fd.IsAggregate()) { + out << "Array<" << Get(fd.TypeId()).TypeName() << ">"; + } else { + out << Get(fd.TypeId()).TypeName(); + } + out << " | "; + if (fd.Description()) { + out << fd.Description(); + } + out << " |" << endl; + } + out << endl; + } + } +} + }