1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*
* Copyright (C) 2010 Regents of the University of Michigan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Input.h"
#include "Error.h"
#include "Constant.h"
#include <stdio.h>
#include <string.h>
int InputPromptWidth = 25;
static bool safe_gets(char * buffer, int n)
{
buffer[0] = 0;
bool success = (fgets(buffer, n, stdin) != NULL);
for (char * ptr = buffer; *ptr != 0; ptr++)
if (*ptr == '\n')
*ptr = 0;
return success;
}
void Input(const char * prompt, int & n, int _default)
{
char buffer[BUFSIZE];
int success;
do
{
printf("%*s [%8d]: ", InputPromptWidth, prompt, _default);
safe_gets(buffer, BUFSIZE);
success = sscanf(buffer, "%d", &n);
if (success == EOF)
n = _default;
}
while (success == 0);
}
void Input(const char * prompt, char & ch, char _default)
{
char buffer[BUFSIZE];
int success;
do
{
printf("%*s [%8c]: ", InputPromptWidth, prompt, _default);
safe_gets(buffer, BUFSIZE);
success = sscanf(buffer, "%c", &ch);
if (success == EOF)
ch = _default;
}
while (success == 0);
}
void Input(const char * prompt, double & d, double _default)
{
char buffer[BUFSIZE];
int success;
do
{
printf("%*s [%8.2f]: ", InputPromptWidth, prompt, _default);
safe_gets(buffer, BUFSIZE);
success = sscanf(buffer, "%lf", &d);
if (success == EOF)
d = _default;
}
while (success == 0);
}
void Input(const char * prompt, bool & b, bool _default)
{
char buffer[BUFSIZE];
int success;
char c;
do
{
printf("%*s [%8s]: ", InputPromptWidth, prompt, _default ? "Y/n" : "y/N");
safe_gets(buffer, BUFSIZE);
success = sscanf(buffer, "%c", &c);
if (success == EOF)
b = _default;
else
switch (c)
{
case 'y' :
case 'Y' :
b = true;
break;
case 'n' :
case 'N' :
b = false;
break;
default :
success = 0;
}
}
while (success == 0);
}
void Input(const char * prompt, char * s, const char * _default)
{
char buffer[BUFSIZE];
int success;
do
{
printf("%*s [%8s]: ", InputPromptWidth, prompt, _default);
safe_gets(buffer, BUFSIZE);
success = sscanf(buffer, " %[^\n]", s);
if (success == EOF)
strcpy(s, _default);
}
while (success == 0);
}
void InputBounds(const char * prompt, int & n, int min, int max,
int _default)
{
Input(prompt, n, _default);
while ((n < min) || (n > max))
{
printf("\n*** Input value must be between %d and %d ***\n", min, max);
Input(prompt, n, _default);
}
}
void InputBounds(const char * prompt, double & d, double min, double max,
double _default)
{
Input(prompt, d, _default);
while ((d < min) || (d > max))
{
printf("\n*** Input value must be between %.2f and %.2f ***\n", min, max);
Input(prompt, d, _default);
}
}
|