blob: 3134210980559933ac6f8695c7f9ecde3dc61e5e (
plain)
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
|
#include <algorithm>
#include "backend/ConsumableObject.h"
#include "backend/Exception.h"
#include "backend/print.h"
#include "../GameController.h"
#include "../util.h"
using namespace std;
void GameController::cmd_use(string & target_name) {
Player & player = this->dungeon->get_player();
Location & location = player.get_location();
auto it = find_if_range(player.inventory.range(), by_name_case_insensitive(target_name));
if (!it)
throw Exception("object \"%s\" niet gevonden", target_name.c_str());
auto consumable = unique_ptr<ConsumableObject>(dynamic_cast<ConsumableObject *>(*it));
if (consumable == nullptr)
throw Exception("%s is niet consumeerbaar", (*it)->get_name().c_str());
lprtf("Je drinkt %s.\n", consumable->get_displayname().c_str());
player.inventory.remove(consumable.get());
consumable->consume(player);
}
|