[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[65b6e0] | 8 | /*
|
---|
[b59da6] | 9 | * TxMenu.cpp
|
---|
[65b6e0] | 10 | *
|
---|
| 11 | * Created on: Dec 10, 2009
|
---|
| 12 | * Author: crueger
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[112b09] | 20 | #include "Helpers/MemDebug.hpp"
|
---|
| 21 |
|
---|
[65b6e0] | 22 | #include <boost/bind.hpp>
|
---|
[b59da6] | 23 | #include <algorithm>
|
---|
[65b6e0] | 24 | #include <iostream>
|
---|
[5b9bba] | 25 | #include <cmath>
|
---|
[b59da6] | 26 | #include "Actions/Action.hpp"
|
---|
| 27 | #include "Actions/ActionTraits.hpp"
|
---|
| 28 | #include "Menu/TextMenu/TxMenu.hpp"
|
---|
| 29 | #include "Menu/TextMenu/MenuItem.hpp"
|
---|
[d56640] | 30 | #include "Helpers/Assert.hpp"
|
---|
[5b9bba] | 31 |
|
---|
[ef81b0] | 32 |
|
---|
| 33 | /**
|
---|
| 34 | * produce a text menu with a given title.
|
---|
| 35 | * The text will later be displayed using the stream passed to the constructor.
|
---|
| 36 | */
|
---|
[b59da6] | 37 | TxMenu::TxMenu(std::ostream& _outputter, const std::string _title, char _spacer,int _length) :
|
---|
[24a5e0] | 38 | defaultItem(0),
|
---|
| 39 | outputter(_outputter),
|
---|
| 40 | title(_title),
|
---|
| 41 | spacer(_spacer),
|
---|
| 42 | length(_length),
|
---|
| 43 | quit(false)
|
---|
[5b9bba] | 44 | {
|
---|
| 45 | }
|
---|
[65b6e0] | 46 |
|
---|
[b59da6] | 47 | TxMenu::~TxMenu()
|
---|
[65b6e0] | 48 | {
|
---|
[b59da6] | 49 | for(std::list<MenuItem*>::iterator it=items.begin(); it != items.end(); it++)
|
---|
[f767d4] | 50 | delete (*it);
|
---|
[65b6e0] | 51 | }
|
---|
| 52 |
|
---|
[b59da6] | 53 | void TxMenu::addItem(MenuItem* item) {
|
---|
[65b6e0] | 54 | items.push_back(item);
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[b59da6] | 57 | void TxMenu::removeItem(MenuItem* item) {
|
---|
[65b6e0] | 58 | items.remove(item);
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[b59da6] | 61 | void TxMenu::doQuit(){
|
---|
[65b6e0] | 62 | quit = true;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[b59da6] | 65 | bool TxMenu::hasQuit(){
|
---|
[65b6e0] | 66 | return quit;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[b59da6] | 69 | void TxMenu::showEntry(MenuItem* entry){
|
---|
[f9352d] | 70 | if(entry->isActive()==false){
|
---|
| 71 | outputter << "(";
|
---|
| 72 | }
|
---|
| 73 | outputter << entry->formatEntry();
|
---|
| 74 | if(entry->isActive()==false){
|
---|
| 75 | outputter << ")";
|
---|
| 76 | }
|
---|
| 77 | outputter << "\n";
|
---|
[65b6e0] | 78 | }
|
---|
| 79 |
|
---|
[b59da6] | 80 | void TxMenu::display() {
|
---|
[65b6e0] | 81 | char choice;
|
---|
[8f113e] | 82 | bool somethingChosen = false;
|
---|
[7c6f73] | 83 | quit = false;
|
---|
[65b6e0] | 84 | do {
|
---|
[5b9bba] | 85 | int pre = floor((length - title.length()) /2.0);
|
---|
| 86 | int post = ceil((length - title.length()) /2.0);
|
---|
| 87 | for(int i=0;i<pre;i++)
|
---|
| 88 | outputter << spacer;
|
---|
| 89 | outputter << title;
|
---|
| 90 | for(int i=0;i<post;i++)
|
---|
| 91 | outputter << spacer;
|
---|
| 92 | outputter << '\n';
|
---|
[b59da6] | 93 | for_each(items.begin(), items.end(), boost::bind(&TxMenu::showEntry,this,_1));
|
---|
[65b6e0] | 94 | outputter.flush();
|
---|
| 95 |
|
---|
[b59da6] | 96 | std::cin >> choice;
|
---|
[65b6e0] | 97 |
|
---|
[b59da6] | 98 | std::list<MenuItem*>::iterator iter;
|
---|
[8f113e] | 99 | for(iter = items.begin(); iter!=items.end();iter++){
|
---|
[f9352d] | 100 | if((*iter)->isActive()){
|
---|
| 101 | somethingChosen |= (*iter)->checkTrigger(choice);
|
---|
| 102 | }
|
---|
[8f113e] | 103 | }
|
---|
| 104 | // see if something was chosen and call default Item if not
|
---|
| 105 | if(!somethingChosen) {
|
---|
| 106 | if(defaultItem){
|
---|
| 107 | defaultItem->doTrigger();
|
---|
| 108 | }
|
---|
| 109 | else{
|
---|
[b59da6] | 110 | outputter << "Invalid Choice!" << std::endl;
|
---|
[8f113e] | 111 | }
|
---|
| 112 | }
|
---|
[65b6e0] | 113 | }while (!hasQuit());
|
---|
| 114 | }
|
---|
[8f113e] | 115 |
|
---|
[b59da6] | 116 | std::string TxMenu::getTitle(){
|
---|
[d56640] | 117 | return title;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[b59da6] | 120 | std::ostream& TxMenu::getOutputter()
|
---|
| 121 | {
|
---|
| 122 | return outputter;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 |
|
---|
| 126 | void TxMenu::addDefault(MenuItem* _defaultItem) {
|
---|
[8f113e] | 127 | defaultItem = _defaultItem;
|
---|
| 128 | }
|
---|
[d56640] | 129 |
|
---|
| 130 | /****************************** Contained Actions ****************/
|
---|
| 131 |
|
---|
[b59da6] | 132 | TxMenu::LeaveAction::LeaveAction(TxMenu* const _menu, const ActionTraits & LeaveActionTrait) :
|
---|
| 133 | Action(LeaveActionTrait, true),
|
---|
[97b825] | 134 | menu(_menu)
|
---|
[d56640] | 135 | {}
|
---|
| 136 |
|
---|
[b59da6] | 137 | TxMenu::LeaveAction::~LeaveAction(){}
|
---|
[d56640] | 138 |
|
---|
[b59da6] | 139 | bool TxMenu::LeaveAction::canUndo(){
|
---|
[d56640] | 140 | return false;
|
---|
| 141 | }
|
---|
| 142 |
|
---|
[b59da6] | 143 | bool TxMenu::LeaveAction::shouldUndo(){
|
---|
[d56640] | 144 | return false;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[b59da6] | 147 | void TxMenu::LeaveAction::getParametersfromValueStorage()
|
---|
[0b2ce9] | 148 | {}
|
---|
| 149 |
|
---|
[b59da6] | 150 | Dialog* TxMenu::LeaveAction::fillDialog(Dialog *dialog){
|
---|
[047878] | 151 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
| 152 | return dialog;
|
---|
[c46d63] | 153 | }
|
---|
| 154 |
|
---|
| 155 |
|
---|
[b59da6] | 156 | Action::state_ptr TxMenu::LeaveAction::performCall(){
|
---|
[d56640] | 157 | menu->doQuit();
|
---|
| 158 | return Action::success;
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 |
|
---|
[b59da6] | 162 | Action::state_ptr TxMenu::LeaveAction::performUndo(Action::state_ptr){
|
---|
[d56640] | 163 | ASSERT(0,"Cannot undo leaving a menu");
|
---|
| 164 | return Action::success;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[b59da6] | 167 | Action::state_ptr TxMenu::LeaveAction::performRedo(Action::state_ptr){
|
---|
[d56640] | 168 | ASSERT(0,"Cannot redo leaving a menu");
|
---|
| 169 | return Action::success;
|
---|
| 170 | }
|
---|