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
|
#include "creature.h"
#include "feature.h"
#include <iostream>
#include <sstream>
#include "rules.h"
#include "utils.h"
#include "item.h"
#include "armor.h"
#include "weapon.h"
using namespace std;
template<typename T> vector<string> mapItems(const vector<shared_ptr<T>>& items) {
vector<string> out;
for(auto i : items) {
out.push_back(i->getName());
}
return out;
}
int main(int argc, char *argv[]) {
creature::Creature c(utils::loadJson(argv[argc-1]));
cout << c.getCreatureName() << " " << c.getGivenName() << ", a cr " << c.getCR() << " " << c.getAlignment() << " " << c.getSize() << " " << c.getType() << ", has " << c.getHP() << " hp, ac " << creature::getAC(c) << " (" << utils::join(mapItems(creature::getItems<item::Armor>(c)), ", ") << "), speaks " << c.getLanguages() << ", has " << utils::join(c.getSenses(), ", ") << ", speed " << c.getSpeed() << ", and wields " << utils::join(mapItems(creature::getItems<item::Weapon>(c)), ", ") << ".\n Stats:\n";
for(auto ability : abilities) {
cout << ability << ": " << c.getScore(ability) << " (" << c.getBonus(ability) << ")\n";
}
cout << "\nSkills:\n";
for(auto skill : c.getSkills()) {
cout << skill.first << " (+" << skill.second << ")\n";
}
cout << "\nSaves:\n";
for(auto save : c.getSaves()) {
cout << save.first << " (+" << save.second << ")\n";
}
cout << "\nFeatures:\n";
for(auto f: c.getFeatures()) {
cout << f->getName() << " (" << f->getType() << "):\n";
cout << f->getText() << "\n\n";
}
cout << "\nWeapons:\n";
for(auto w : creature::getItems<item::Weapon>(c)) {
cout << w->getName() << " (" << w->getCost() << " cp, i.e., " << utils::getCostString(w->getCost()) << ", " << w->getWeight() << "lbs): ";
cout << item::genActionText(*w, c);
}
cout << "\nArmor:\n";
for(auto a : creature::getItems<item::Armor>(c)) {
cout << a->getName() << " (" << a->getCost() << " cp, i.e., " << utils::getCostString(a->getCost()) << ", " << a->getWeight() << "lbs): ";
cout << "AC bonus: " << a->getACBonus() << "; type: " << a->getArmorType() << "; strReq: " << a->getStrRequirement() << "; stealthDis: " << a->stealthDisadvantage() << "\n";
}
cout << "We strike him with mace, dealing 5 fire damage!\n";
c.applyDamage(5, "fire", vector<string>());
cout << "Now he has " << c.getHP() << " out of " << c.getHPMax() << " hp.\n";
cout << "Increasing str by 4...\n";
c.setScore("str", c.getScore("str") + 4);
cout << "Saving to out.json...\n";
utils::saveJson(c.toJson(), "out.json");
}
|