/* * Copyright 2016 - 2018 gtalent2@gmail.com * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #include "consts.hpp" #include "newworldwizard.hpp" #include "worldeditor.hpp" #include "worldstudioplugin.hpp" namespace nostalgia { namespace world { using namespace studio; QVector WorldEditorPlugin::newWizards(const Context *ctx) { return { { tr("Zone"), [ctx]() -> QVector { return {new NewWorldWizard(ctx)}; }, [ctx](QWizard *w) { qDebug() << "creating Region"; auto path = PATH_ZONES + w->field(NewWorldWizard::FIELD_WORLD_PATH).toString(); Region rgn; auto err = ctx->project->mkdir(PATH_ZONES); ctx->project->saveRomFs(); qDebug() << "err:" << err; err |= ctx->project->writeObj(path, &rgn); return err; } } }; } QWidget *WorldEditorPlugin::makeEditor(QString path, const Context *ctx) { if (path.startsWith(PATH_ZONES)) { return new WorldEditor(path, ctx); } else { return nullptr; } } } }