Skip to content

Commit 2b3c08a

Browse files
committed
Fixed
1 parent 8b68466 commit 2b3c08a

File tree

1 file changed

+30
-8
lines changed

1 file changed

+30
-8
lines changed

Secret Santa Sorter/Main.cpp

+30-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <algorithm>
44
#include <vector>
55
#include <random>
6+
#include <fstream>
67

78
int main()
89
{
@@ -28,7 +29,7 @@ int main()
2829

2930
int searchLine = 0;
3031

31-
//auto rng = std::minstd_rand0{};
32+
std::string saveList;
3233

3334
// ------------------------------------------------------------------------------- DELIMITOR ------------------------------------------------------------------------------------------------//
3435

@@ -38,9 +39,15 @@ int main()
3839
Tools::Log("Enter the Seed you wish to use!", Tools::Colour::Red);
3940

4041
std::getline(std::cin, seedString);
42+
43+
for (int i = 0; i < seedString.size(); i++)
44+
{
45+
seedString.at(i) = towupper(seedString.at(i));
46+
}
47+
4148
std::seed_seq seed(seedString.begin(), seedString.end());
4249

43-
std::minstd_rand0 generator(seed);
50+
std::default_random_engine rng(seed);
4451

4552
Tools::Log("Now, name everyone who's participating as a secret santa! Write 'end' to finish the list.", Tools::Colour::Red);
4653

@@ -57,14 +64,29 @@ int main()
5764

5865
if (santa == "END")
5966
{
60-
std::shuffle(std::begin(giftReceiver), std::end(giftReceiver), generator());
67+
std::shuffle(std::begin(giftReceiver), std::end(giftReceiver), rng);
68+
69+
for (int i = 0; i < secretSanta.size(); i++)
70+
{
71+
saveList += secretSanta.at(i) + "\n";
72+
}
73+
74+
auto save = "Seed: " + seedString + "\n\nSantas: \n" + saveList;
75+
76+
std::ofstream saveFile("../Seed/SantaListSeed.txt");
77+
78+
saveFile << save;
79+
80+
saveFile.close();
6181

6282
isListEnded = true;
6383
}
6484

65-
secretSanta.push_back(santa);
66-
giftReceiver.push_back(santa);
67-
85+
else
86+
{
87+
secretSanta.push_back(santa);
88+
giftReceiver.push_back(santa);
89+
}
6890

6991
}
7092

@@ -86,7 +108,7 @@ int main()
86108
//Reshuffle if its still the same name.
87109
if (name == giftReceiver.at(searchLine))
88110
{
89-
std::shuffle(std::begin(giftReceiver), std::end(giftReceiver), generator());
111+
std::shuffle(std::begin(giftReceiver), std::end(giftReceiver), rng);
90112
}
91113

92114
else
@@ -99,7 +121,7 @@ int main()
99121
receiverName.at(i) = tolower(receiverName.at(i));
100122
}
101123

102-
std::string message = "You gotta gift: " + receiverName + "!";
124+
std::string message = "You gotta gift " + receiverName + "!";
103125

104126
Tools::Log(message, Tools::Colour::Red);
105127
isSearchEnded = true;

0 commit comments

Comments
 (0)