-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcraftingClass.cpp
More file actions
64 lines (59 loc) · 1.28 KB
/
craftingClass.cpp
File metadata and controls
64 lines (59 loc) · 1.28 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
#include "craftingClass.h"
#include <iostream>
CraftingClass stringToCraftingClass(std::string s)
{
if(s=="Alchemist")
{
return Alchemist;
}
else if(s=="Armorer")
{
return Armorer;
}
else if(s=="Blacksmith")
{
return Blacksmith;
}
else if(s=="Carpenter")
{
return Carpenter;
}
else if(s=="Culinarian")
{
return Culinarian;
}
else if(s=="Goldsmith")
{
return Goldsmith;
}
else if(s=="Leatherworker")
{
return Leatherworker;
}
else if(s=="Weaver")
{
return Weaver;
}
else if(s=="All")
{
return All;
}
std::cout << "Warning: Unknown crafting profession " << s << std::endl;
return All;
}
std::string craftingClassToString(CraftingClass craftingClass)
{
switch(craftingClass)
{
case All: return "All";
case Alchemist: return "Alchemist";
case Armorer: return "Armorer";
case Blacksmith: return "Blacksmith";
case Carpenter: return "Carpenter";
case Culinarian: return "Culinarian";
case Goldsmith: return "Goldsmith";
case Leatherworker: return "Leatherworker";
case Weaver: return "Weaver";
}
return "[unknown crafting class]";
}