void Placeable::load(const Aurora::GFFStruct &placeable) { Common::UString temp = placeable.getString("TemplateResRef"); Aurora::GFFFile *utp = 0; if (!temp.empty()) { try { utp = new Aurora::GFFFile(temp, Aurora::kFileTypeUTP, MKTAG('U', 'T', 'P', ' ')); } catch (...) { } } Situated::load(placeable, utp ? &utp->getTopLevel() : 0); delete utp; }
void Waypoint::load(const Aurora::GFFStruct &waypoint) { Common::UString temp = waypoint.getString("TemplateResRef"); Aurora::GFFFile *utw = 0; if (!temp.empty()) { try { utw = new Aurora::GFFFile(temp, Aurora::kFileTypeUTW, MKTAG('U', 'T', 'W', ' ')); } catch (...) { delete utw; } } load(waypoint, utw ? &utw->getTopLevel() : 0); delete utw; }
void Door::load(const Aurora::GFFStruct &door) { Common::UString temp = door.getString("TemplateResRef"); Aurora::GFFFile *utd = 0; if (!temp.empty()) { try { utd = new Aurora::GFFFile(temp, Aurora::kFileTypeUTD, MKTAG('U', 'T', 'D', ' ')); } catch (...) { } } Situated::load(door, utd ? &utd->getTopLevel() : 0); delete utd; setModelState(); }
void GUI::load(const Common::UString &resref, float width, float height) { _name = resref; Aurora::GFFFile *gff = 0; try { gff = new Aurora::GFFFile(resref, Aurora::kFileTypeGUI, MKID_BE('GUI ')); loadWidget(gff->getTopLevel(), 0, width, height); } catch (Common::Exception &e) { delete gff; e.add("Can't load GUI \"%s\"", resref.c_str()); throw; } delete gff; }
void Door::load(const Aurora::GFFStruct &door) { Common::UString temp = door.getString("TemplateResRef"); Aurora::GFFFile *utd = 0; if (!temp.empty()) { try { utd = new Aurora::GFFFile(temp, Aurora::kFileTypeUTD, MKTAG('U', 'T', 'D', ' ')); } catch (...) { delete utd; } } Situated::load(door, utd ? &utd->getTopLevel() : 0); if (!utd) warning("Door \"%s\" has no blueprint", _tag.c_str()); delete utd; }
void Placeable::load(const Aurora::GFFStruct &placeable) { Common::UString temp = placeable.getString("TemplateResRef"); Aurora::GFFFile *utp = 0; if (!temp.empty()) { try { utp = new Aurora::GFFFile(temp, Aurora::kFileTypeUTP, MKID_BE('UTP ')); } catch (...) { delete utp; } } Situated::load(placeable, utp ? &utp->getTopLevel() : 0); if (!utp) warning("Placeable \"%s\" has no blueprint", _tag.c_str()); delete utp; }
void Creature::load(const Aurora::GFFStruct &creature) { Common::UString temp = creature.getString("TemplateResRef"); Aurora::GFFFile *utc = 0; if (!temp.empty()) { try { utc = new Aurora::GFFFile(temp, Aurora::kFileTypeUTC, MKTAG('U', 'T', 'C', ' ')); } catch (...) { delete utc; } } load(creature, utc ? &utc->getTopLevel() : 0); if (!utc) warning("Creature \"%s\" has no blueprint", _tag.c_str()); delete utc; }