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