forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
talker_item.h
56 lines (47 loc) · 1.5 KB
/
talker_item.h
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
#pragma once
#ifndef CATA_SRC_TALKER_ITEM_H
#define CATA_SRC_TALKER_ITEM_H
#include <functional>
#include <iosfwd>
#include <list>
#include <vector>
#include "coordinates.h"
#include "npc.h"
#include "talker.h"
#include "type_id.h"
class item;
struct tripoint;
/*
* Talker wrapper class for item.
*/
class talker_item: public talker
{
public:
explicit talker_item( item_location *new_me ): me_it( new_me ) {
}
~talker_item() override = default;
// underlying element accessor functions
item_location *get_item() override {
return me_it;
}
item_location *get_item() const override {
return me_it;
}
// identity and location
std::string disp_name() const override;
int posx() const override;
int posy() const override;
int posz() const override;
tripoint pos() const override;
tripoint_abs_ms global_pos() const override;
tripoint_abs_omt global_omt_location() const override;
std::string get_value( const std::string &var_name ) const override;
void set_value( const std::string &var_name, const std::string &value ) override;
void remove_value( const std::string & ) override;
std::vector<std::string> get_topics( bool radio_contact ) override;
bool will_talk_to_u( const Character &you, bool force ) override;
protected:
talker_item() = default;
item_location *me_it;
};
#endif // CATA_SRC_TALKER_ITEM_H