[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 "Menu/TextMenu/TxMenu.hpp"
|
---|
| 27 | #include "Menu/TextMenu/MenuItem.hpp"
|
---|
[5b9bba] | 28 |
|
---|
[ef81b0] | 29 |
|
---|
[8f3f40] | 30 | /** Constructor for class TxMenu.
|
---|
| 31 | *
|
---|
[ef81b0] | 32 | * produce a text menu with a given title.
|
---|
| 33 | * The text will later be displayed using the stream passed to the constructor.
|
---|
[8f3f40] | 34 | * \param &_outputter output stream to use for displaying the text
|
---|
| 35 | * \param _title title of this menu
|
---|
| 36 | * \param _spacer key to separate trigger key from descriptive text shown
|
---|
| 37 | * \param _length maximum length of the descriptive text
|
---|
[ef81b0] | 38 | */
|
---|
[b59da6] | 39 | TxMenu::TxMenu(std::ostream& _outputter, const std::string _title, char _spacer,int _length) :
|
---|
[24a5e0] | 40 | defaultItem(0),
|
---|
| 41 | outputter(_outputter),
|
---|
| 42 | title(_title),
|
---|
| 43 | spacer(_spacer),
|
---|
| 44 | length(_length),
|
---|
| 45 | quit(false)
|
---|
[5b9bba] | 46 | {
|
---|
| 47 | }
|
---|
[65b6e0] | 48 |
|
---|
[8f3f40] | 49 | /** Destructor for class TxMenu.
|
---|
| 50 | *
|
---|
| 51 | */
|
---|
[b59da6] | 52 | TxMenu::~TxMenu()
|
---|
[65b6e0] | 53 | {
|
---|
[b59da6] | 54 | for(std::list<MenuItem*>::iterator it=items.begin(); it != items.end(); it++)
|
---|
[f767d4] | 55 | delete (*it);
|
---|
[65b6e0] | 56 | }
|
---|
| 57 |
|
---|
[8f3f40] | 58 | /** Adds an MenuItem to the internal list.
|
---|
| 59 | * \param *item item to add
|
---|
| 60 | */
|
---|
[b59da6] | 61 | void TxMenu::addItem(MenuItem* item) {
|
---|
[65b6e0] | 62 | items.push_back(item);
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[8f3f40] | 65 | /** Removes an MenuItem to the internal list.
|
---|
| 66 | * \param *item item to remove
|
---|
| 67 | */
|
---|
[b59da6] | 68 | void TxMenu::removeItem(MenuItem* item) {
|
---|
[65b6e0] | 69 | items.remove(item);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
[8f3f40] | 72 | /** Function to quit this TxMenu.
|
---|
| 73 | */
|
---|
[b59da6] | 74 | void TxMenu::doQuit(){
|
---|
[65b6e0] | 75 | quit = true;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
[8f3f40] | 78 | /** Return the current state of quitting.
|
---|
| 79 | * \return quit boolean
|
---|
| 80 | */
|
---|
[b59da6] | 81 | bool TxMenu::hasQuit(){
|
---|
[65b6e0] | 82 | return quit;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
[8f3f40] | 85 | /** Display in a formatted manner a given entry of this menu.
|
---|
| 86 | * \param *entry MenuItem to show
|
---|
| 87 | */
|
---|
[b59da6] | 88 | void TxMenu::showEntry(MenuItem* entry){
|
---|
[f9352d] | 89 | if(entry->isActive()==false){
|
---|
| 90 | outputter << "(";
|
---|
| 91 | }
|
---|
| 92 | outputter << entry->formatEntry();
|
---|
| 93 | if(entry->isActive()==false){
|
---|
| 94 | outputter << ")";
|
---|
| 95 | }
|
---|
| 96 | outputter << "\n";
|
---|
[65b6e0] | 97 | }
|
---|
| 98 |
|
---|
[8f3f40] | 99 | /** Display this menu.
|
---|
| 100 | *
|
---|
| 101 | */
|
---|
[b59da6] | 102 | void TxMenu::display() {
|
---|
[65b6e0] | 103 | char choice;
|
---|
[8f113e] | 104 | bool somethingChosen = false;
|
---|
[7c6f73] | 105 | quit = false;
|
---|
[65b6e0] | 106 | do {
|
---|
[5b9bba] | 107 | int pre = floor((length - title.length()) /2.0);
|
---|
| 108 | int post = ceil((length - title.length()) /2.0);
|
---|
| 109 | for(int i=0;i<pre;i++)
|
---|
| 110 | outputter << spacer;
|
---|
| 111 | outputter << title;
|
---|
| 112 | for(int i=0;i<post;i++)
|
---|
| 113 | outputter << spacer;
|
---|
| 114 | outputter << '\n';
|
---|
[b59da6] | 115 | for_each(items.begin(), items.end(), boost::bind(&TxMenu::showEntry,this,_1));
|
---|
[65b6e0] | 116 | outputter.flush();
|
---|
| 117 |
|
---|
[b59da6] | 118 | std::cin >> choice;
|
---|
[65b6e0] | 119 |
|
---|
[b59da6] | 120 | std::list<MenuItem*>::iterator iter;
|
---|
[8f113e] | 121 | for(iter = items.begin(); iter!=items.end();iter++){
|
---|
[f9352d] | 122 | if((*iter)->isActive()){
|
---|
| 123 | somethingChosen |= (*iter)->checkTrigger(choice);
|
---|
| 124 | }
|
---|
[8f113e] | 125 | }
|
---|
| 126 | // see if something was chosen and call default Item if not
|
---|
| 127 | if(!somethingChosen) {
|
---|
| 128 | if(defaultItem){
|
---|
| 129 | defaultItem->doTrigger();
|
---|
| 130 | }
|
---|
| 131 | else{
|
---|
[b59da6] | 132 | outputter << "Invalid Choice!" << std::endl;
|
---|
[8f113e] | 133 | }
|
---|
| 134 | }
|
---|
[65b6e0] | 135 | }while (!hasQuit());
|
---|
| 136 | }
|
---|
[8f113e] | 137 |
|
---|
[8f3f40] | 138 | /** Return the internally stored title of the menu.
|
---|
| 139 | * \return title string
|
---|
| 140 | */
|
---|
[b59da6] | 141 | std::string TxMenu::getTitle(){
|
---|
[d56640] | 142 | return title;
|
---|
| 143 | }
|
---|
| 144 |
|
---|
[8f3f40] | 145 | /** Return the internally stored outputter of the menu.
|
---|
| 146 | * \return output stream reference
|
---|
| 147 | */
|
---|
[b59da6] | 148 | std::ostream& TxMenu::getOutputter()
|
---|
| 149 | {
|
---|
| 150 | return outputter;
|
---|
| 151 | }
|
---|
| 152 |
|
---|
[8f3f40] | 153 | /** Add a default item to the menu.
|
---|
| 154 | * \param *_defaultItem MenuItem to act as default item.
|
---|
| 155 | */
|
---|
[b59da6] | 156 | void TxMenu::addDefault(MenuItem* _defaultItem) {
|
---|
[8f113e] | 157 | defaultItem = _defaultItem;
|
---|
| 158 | }
|
---|
[d56640] | 159 |
|
---|