summaryrefslogtreecommitdiffstats
path: root/UserOptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'UserOptions.cpp')
-rw-r--r--UserOptions.cpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/UserOptions.cpp b/UserOptions.cpp
index 0dcc494..c1e4ba5 100644
--- a/UserOptions.cpp
+++ b/UserOptions.cpp
@@ -204,7 +204,8 @@ void SavEdit::debug()
*/
// CURRENT TASK:
- // - Finding out all 255 items
+ // [x] Finding out all 255 items
+ // [ ] How many item slots are available?
int startingval = 0xC0;
int inc = 4;
@@ -222,3 +223,25 @@ void SavEdit::debug()
std::cout << std::hex << s+3 << std::endl;
}
+
+void SavEdit::displayItems()
+{
+ /*
+ * Displays items and quantities held within
+ * pocket.
+ */
+
+ // TODO: Create vector items list
+ // TODO: Find how many slots are in the pocket
+ // TODO: Item quantity is displayed as hex, but represents deci.
+ // How do I solve this issue? This would also solve the cash
+ // issue.
+
+ // FORMAT:
+ // [ITEM #0] [NAME] x[VAL] | [ITEM #1] [NAME] x[VAL]
+ //
+ // TODO: Maybe a selection menu, list of potential items?
+
+
+ std::cout << "TODO: Make displayItems();" << std::endl;
+}