diff options
| author | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-23 01:51:24 -0600 |
|---|---|---|
| committer | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-23 01:51:24 -0600 |
| commit | 7b23ef09829ac2c8afc842d96b3b15fdc2c91719 (patch) | |
| tree | bd0962fee3d11412db573f9f087444c126b2943d /music/pokeredmusicdisasm/Console.cpp | |
| parent | ignore binaries (diff) | |
| parent | updated changes in repo (diff) | |
| download | pokeyellow-7b23ef09829ac2c8afc842d96b3b15fdc2c91719.tar.gz pokeyellow-7b23ef09829ac2c8afc842d96b3b15fdc2c91719.tar.xz pokeyellow-7b23ef09829ac2c8afc842d96b3b15fdc2c91719.zip | |
Merge
hg-commit-id: eecb568bd9b6
Diffstat (limited to 'music/pokeredmusicdisasm/Console.cpp')
| -rw-r--r-- | music/pokeredmusicdisasm/Console.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/music/pokeredmusicdisasm/Console.cpp b/music/pokeredmusicdisasm/Console.cpp new file mode 100644 index 00000000..85623210 --- /dev/null +++ b/music/pokeredmusicdisasm/Console.cpp @@ -0,0 +1,54 @@ +#include "console.h"
+
+using namespace std;
+
+// Basic
+void Console::Get(char* value)
+{
+ cin >> value;
+}
+void Console::Get(string& value)
+{
+ cin >> value;
+}
+void Console::Print(const char* value)
+{
+ cout << value;
+}
+void Console::Error(const char* value)
+{
+ cerr << value;
+}
+
+// Upper-Basic
+void Console::PrintLn(const char* value)
+{
+ Print(value);
+ cout << endl;
+}
+void Console::ErrorLn(const char* value)
+{
+ Error(value);
+ cerr << endl;
+}
+
+// Higher
+void Console::Ask(const char* question, char* answer)
+{
+ Print(question);
+ Get(answer);
+}
+void Console::Ask(const char* question, string& answer)
+{
+ Print(question);
+ Get(answer);
+}
+
+// Better Error Handling
+int Console::atoi_ex(const char* input, bool supress)
+{
+ int convInp = atoi(input);
+ if((supress == false) && (convInp == 0))
+ PrintLn("Warning: the converted integer input is 0, this may not be what you intended");
+ return convInp;
+}
|
