-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
226 lines (207 loc) · 5.47 KB
/
main.cpp
File metadata and controls
226 lines (207 loc) · 5.47 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include <iostream>
#include <string>
#include <fstream>
#include <typeinfo>
#include "Assignment.h"
//#include "AssignStatus.h"
#include "Date.h"
#include "StringTokenizer.h"
#include "Ordered_List.h"
//#include "list.h"
using namespace std;
//all of this was me just trying to correctly parse an example of a line of data and make assignments from it
int main()
{
Ordered_List<Assignment> AsignedAssignments;//to hold incomplete assignments
Ordered_List<Assignment> CompletedAssignments;//to hold complete or late assignments
string filename;
string textline;
string due,description,assigned,status;//to use to pass into the constructor
String_Tokenizer LineParser(textline,",");
int index=0;//to use for parsing the lines of the textfile
ifstream fin;
ofstream fout;
cout<<"Please enter text file name to populate lists from without the .txt extension: ";
cin>>filename;
fin.open(filename+".txt");//need to add error handling around this
while(!fin.eof())
{
textline = fin.get();
while(LineParser.has_more_tokens())//parses the textline, should make separate function
{
switch(index)
{
case 0:
std::istringstream(LineParser.next_token())>>due;
break;
case 1:
std::istringstream(LineParser.next_token())>>description;
break;
case 2:
std::istringstream(LineParser.next_token())>>assigned;
break;
case 3:
std::istringstream(LineParser.next_token())>>status;
}
++index;
}
if(status == "Assigned")
AsignedAssignments.insert(Assignment(due,description,assigned,status));
else
CompletedAssignments.insert(Assignment(due,description,assigned,status));
index = 0;
}
/*string Due;
string assigned;
string description;
string textline;
cout<<"Please enter the data in the following manner: DueDate,Description,AssignDate with dates formatted as MM/DD/YYYY"<<endl;
allofit = "12/03/1995,whodat,04/20/1995";//typing all this in myself got annoying
String_Tokenizer parser(allofit,",");
int index = 0;
while(parser.has_more_tokens())
{
switch(index)
{
case 0:
std::istringstream(parser.next_token())>>Due;
break;
case 1:
std::istringstream(parser.next_token())>>description;
break;
case 2:
std::istringstream(parser.next_token())>>assigned;
break;
}
++index;
}
Assignment prject1(Due,description,assigned);
cout<<"Please enter the data in the following manner: DueDate,Description,AssignDate with dates formatted as MM/DD/YYYY"<<endl;
allofit = "01,16,1994,blablabla,01/16/1993";
index = 0;
while(parser.has_more_tokens())
{
switch(index)
{
case 0:
std::istringstream(parser.next_token())>>Due;
break;
case 1:
std::istringstream(parser.next_token())>>description;
break;
case 2:
std::istringstream(parser.next_token())>>assigned;
break;
}
++index;
}
Assignment project2(Due,description,assigned);
cout<<prject1.GetAssignDate()<<endl;
cout<<project2.GetdueDate()<<endl;
cout<<prject1.getDescription()<<endl;
cout<<project2.getStatus()<<endl;*/
bool still_in_menu = true;
//ofstream fout("assignments.txt");
while (still_in_menu)
{
cout << "Would you like to:" << endl;
cout << "1. Display the assignments" << endl;
cout << "2. Add an assignment" << endl;
cout << "3. Edit an assignment's due date" << endl;
cout << "4. Edit the description of an assignment" << endl;
cout << "5. Complete an assignment" << endl;
cout << "6. See the number of late assignments" << endl;
cout << "7. Save the assignments to a text file" << endl;
cout << "8. Exit" << endl << endl;
cout << "Type a number (1-8) for the corresponding menu choice"
<< endl << endl;
int menu_choice;
cin >> menu_choice;
cout << endl;
while (menu_choice < 1 || menu_choice > 8 || !menu_choice)
{
cout << "Please enter a valid number (1-8)" << endl << endl;
cin >> menu_choice;
cout << endl;
}
//int menu_choice_int = menu_choice - '0';
/*while (menu_choice_int < 1 && menu_choice_int > 8)
{
cout << "Please enter a valid number (1-8)" << endl << endl;
cin >> menu_choice;
cout << endl;
}
int menu_choice_int2 = menu_choice - '0';
*/
switch (menu_choice)
{
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
case 6:
break;
case 7:
break;
case 8:
still_in_menu = false;
}
}
system("pause");
return 0;
}
/*string Due;
string assigned;
string description;
string allofit;
cout<<"Please enter the data in the following manner: DueDate,Description,AssignDate with dates formatted as MM/DD/YYYY"<<endl;
allofit = "12/03/1995,whodat,04/20/1995";//typing all this in myself got annoying
String_Tokenizer parser(allofit,",");
int index = 0;
while(parser.has_more_tokens())
{
switch(index)
{
case 0:
std::istringstream(parser.next_token())>>Due;
break;
case 1:
std::istringstream(parser.next_token())>>description;
break;
case 2:
std::istringstream(parser.next_token())>>assigned;
break;
}
++index;
}
Assignment prject1(Due,description,assigned);
cout<<"Please enter the data in the following manner: DueDate,Description,AssignDate with dates formatted as MM/DD/YYYY"<<endl;
allofit = "01,16,1994,blablabla,01/16/1993";
index = 0;
while(parser.has_more_tokens())
{
switch(index)
{
case 0:
std::istringstream(parser.next_token())>>Due;
break;
case 1:
std::istringstream(parser.next_token())>>description;
break;
case 2:
std::istringstream(parser.next_token())>>assigned;
break;
}
++index;
}
Assignment project2(Due,description,assigned);
cout<<prject1.GetAssignDate()<<endl;
cout<<project2.GetdueDate()<<endl;
cout<<prject1.getDescription()<<endl;
cout<<project2.getStatus()<<endl;*/