[b9c847] | 1 | /*
|
---|
| 2 | * SetOutputFormatsAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 8, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[bf3817] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[b9c847] | 13 | #include "Helpers/MemDebug.hpp"
|
---|
| 14 |
|
---|
| 15 | #include "Actions/WorldAction/SetOutputFormatsAction.hpp"
|
---|
[0430e3] | 16 | #include "Actions/ActionRegistry.hpp"
|
---|
[b9c847] | 17 | #include "Parser/ChangeTracker.hpp"
|
---|
| 18 | #include "Parser/FormatParserStorage.hpp"
|
---|
[952f38] | 19 | #include "Helpers/Log.hpp"
|
---|
| 20 | #include "Helpers/Verbose.hpp"
|
---|
[b9c847] | 21 | #include "World.hpp"
|
---|
| 22 |
|
---|
| 23 | #include <iostream>
|
---|
| 24 | #include <string>
|
---|
| 25 |
|
---|
| 26 | using namespace std;
|
---|
| 27 |
|
---|
| 28 | #include "UIElements/UIFactory.hpp"
|
---|
| 29 | #include "UIElements/Dialog.hpp"
|
---|
[861874] | 30 | #include "Actions/ValueStorage.hpp"
|
---|
[b9c847] | 31 |
|
---|
| 32 | const char WorldSetOutputFormatsAction::NAME[] = "set-output";
|
---|
| 33 |
|
---|
| 34 | WorldSetOutputFormatsAction::WorldSetOutputFormatsAction() :
|
---|
| 35 | Action(NAME)
|
---|
| 36 | {}
|
---|
| 37 |
|
---|
| 38 | WorldSetOutputFormatsAction::~WorldSetOutputFormatsAction()
|
---|
| 39 | {}
|
---|
| 40 |
|
---|
[a8f6ae] | 41 | void WorldSetOutputFormats(vector<std::string> &FormatList) {
|
---|
| 42 | ValueStorage::getInstance().setCurrentValue(WorldSetOutputFormatsAction::NAME, FormatList);
|
---|
| 43 | ActionRegistry::getInstance().getActionByName(WorldSetOutputFormatsAction::NAME)->call(Action::NonInteractive);
|
---|
| 44 | };
|
---|
| 45 |
|
---|
[047878] | 46 | Dialog* WorldSetOutputFormatsAction::fillDialog(Dialog *dialog) {
|
---|
| 47 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
[ff22c5] | 48 |
|
---|
| 49 | dialog->queryStrings(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
| 50 |
|
---|
| 51 | return dialog;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | Action::state_ptr WorldSetOutputFormatsAction::performCall() {
|
---|
[b9c847] | 55 | vector<std::string> FormatList;
|
---|
| 56 |
|
---|
[ff22c5] | 57 | ValueStorage::getInstance().queryCurrentValue(NAME, FormatList);
|
---|
| 58 |
|
---|
| 59 | for (vector<std::string>::iterator iter = FormatList.begin(); iter != FormatList.end(); ++iter) {
|
---|
| 60 | if (*iter == "mpqc") {
|
---|
| 61 | FormatParserStorage::getInstance().addMpqc();
|
---|
| 62 | DoLog(0) && (Log() << Verbose(0) << "Adding mpqc type to output." << endl);
|
---|
| 63 | } else if (*iter == "pcp") {
|
---|
| 64 | FormatParserStorage::getInstance().addPcp();
|
---|
| 65 | DoLog(0) && (Log() << Verbose(0) << "Adding pcp type to output." << endl);
|
---|
| 66 | } else if (*iter == "tremolo") {
|
---|
| 67 | FormatParserStorage::getInstance().addTremolo();
|
---|
| 68 | DoLog(0) && (Log() << Verbose(0) << "Adding tremolo type to output." << endl);
|
---|
| 69 | } else if (*iter == "xyz") {
|
---|
| 70 | FormatParserStorage::getInstance().addXyz();
|
---|
| 71 | DoLog(0) && (Log() << Verbose(0) << "Adding xyz type to output." << endl);
|
---|
| 72 | } else {
|
---|
[dde125] | 73 | DoeLog(1) && (eLog() << Verbose(1) << "Unknown format:" << *iter << endl);
|
---|
[b9c847] | 74 | }
|
---|
| 75 | }
|
---|
[ff22c5] | 76 | ChangeTracker::getInstance().saveStatus();
|
---|
| 77 | return Action::success;
|
---|
[b9c847] | 78 | }
|
---|
| 79 |
|
---|
| 80 | Action::state_ptr WorldSetOutputFormatsAction::performUndo(Action::state_ptr _state) {
|
---|
| 81 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
| 82 |
|
---|
| 83 | return Action::failure;
|
---|
| 84 | // string newName = state->mol->getName();
|
---|
| 85 | // state->mol->setName(state->lastName);
|
---|
| 86 | //
|
---|
| 87 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | Action::state_ptr WorldSetOutputFormatsAction::performRedo(Action::state_ptr _state){
|
---|
| 91 | return Action::failure;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | bool WorldSetOutputFormatsAction::canUndo() {
|
---|
| 95 | return false;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | bool WorldSetOutputFormatsAction::shouldUndo() {
|
---|
| 99 | return false;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | const string WorldSetOutputFormatsAction::getName() {
|
---|
| 103 | return NAME;
|
---|
| 104 | }
|
---|